@charset "UTF-8";
/* ============================================================
   Marly Oliveira — Site Premium | style.css
   Paleta: Sage Green · Warm Linen · Gold · Dark Forest
   ============================================================ */

/* === TOKENS === */
:root {
  --sage-50:  #F4F8F4;
  --sage-100: #E5EFDF;
  --sage-200: #D7E6D3;
  --sage-300: #B8D4B0;
  --sage-400: #90BA8A;
  --sage-500: #709B74;
  --sage-600: #597760;
  --sage-700: #3F5744;
  --sage-800: #2C3E2F;
  --sage-900: #1A2A1C;

  --gold-300: #F0D4A8;
  --gold-400: #EFBA86;
  --gold-500: #D6A870;
  --gold-600: #C5935A;
  --gold-700: #A87640;

  --linen:    #FAF6F1;
  --warm-off: #F2EDE6;
  --cream:    #FDF9F4;

  --text-900: #121318;
  --text-700: #303030;
  --text-500: #5B6257;
  --text-400: #8A9287;
  --text-200: #C8D1C5;

  --white:    #FFFFFF;
  --black:    #0A0C0B;

  --wpp:      #25D366;
  --ig-grad:  linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(44,62,47,.08);
  --shadow-lg: 0 20px 60px rgba(44,62,47,.12);
  --shadow-xl: 0 30px 90px rgba(44,62,47,.16);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --container: 1200px;
  --section-py: 100px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-700);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
p { line-height: 1.7; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sage-50); }
::-webkit-scrollbar-thumb { background: var(--sage-400); border-radius: 99px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text-900);
}
em { font-style: italic; color: var(--sage-600); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
  position: relative;
}

/* === SECTION LABELS === */
.section-pretitle {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--text-900);
}
.section-desc {
  color: var(--text-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: .95rem;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: .95rem; }

.btn-primary {
  background: var(--sage-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(89,119,96,.35);
}
.btn-primary:hover {
  background: var(--sage-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(89,119,96,.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214,168,112,.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(214,168,112,.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--sage-500);
  color: var(--sage-600);
}
.btn-outline:hover {
  background: var(--sage-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--text-900);
  color: var(--text-900);
}
.btn-outline-dark:hover {
  background: var(--text-900);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-600);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--sage-800); gap: 14px; }

/* === ANIMATION BASE === */
[data-animate] {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  animation: revealFallback 0s 2s forwards;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-down"]  { transform: translateY(-40px); }
[data-animate="fade-left"]  { transform: translateX(-50px); }
[data-animate="fade-right"] { transform: translateX(50px); }
[data-animate="scale-in"]   { transform: scale(.88); }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}
/* Fallback: se JS nao rodar, elementos aparecem apos 2s */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
/* Acessibilidade: sem animacao para quem prefere */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; animation: none; }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  transition: background .45s ease, backdrop-filter .45s ease, box-shadow .45s ease;
}

/* Transparent state — sobre o hero escuro: textos brancos */
.navbar:not(.scrolled) .nav-brand  { color: rgba(255,255,255,.92); }
.navbar:not(.scrolled) .nav-link   { color: rgba(255,255,255,.78); }
.navbar:not(.scrolled) .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.navbar:not(.scrolled) .hamburger span { background: rgba(255,255,255,.9); }

/* Scrolled state — fundo claro: textos escuros */
.navbar.scrolled {
  background: rgba(253,249,244,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.navbar.scrolled .nav-brand { color: var(--sage-800); }
.navbar.scrolled .nav-link  { color: var(--text-700); }
.navbar.scrolled .nav-link:hover {
  color: var(--sage-600);
  background: var(--sage-100);
}
.navbar.scrolled .hamburger span { background: var(--sage-700); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .4s ease;
}
.brand-leaf { font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 500;
  transition: all .25s ease;
}
.nav-link.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.navbar.scrolled .nav-link.active {
  background: var(--sage-100);
  color: var(--sage-600);
}
.nav-cta {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease-out);
}
.nav-cta:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-1px);
}
.navbar.scrolled .nav-cta {
  background: var(--sage-600);
  border-color: var(--sage-600);
  color: var(--white);
  backdrop-filter: none;
}
.navbar.scrolled .nav-cta:hover { background: var(--sage-700); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(to right, rgba(26, 42, 28, 0.95) 0%, rgba(26, 42, 28, 0.88) 35%, rgba(26, 42, 28, 0.4) 65%, rgba(26, 42, 28, 0.88) 100%), url('../link/img/webp/marly-pc.webp') no-repeat 75% 15% / cover;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(112,155,116,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(239,186,134,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text {
  color: var(--white);
  max-width: 650px;
  width: 100%;
}
.hero-pretitle {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-pretitle::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold-400);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 300;
}
.hero-subtitle {
  font-size: .93rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .5px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: min(440px, 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(253,249,244,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-600);
  line-height: 1;
}
.badge-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-700);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  animation: spinSlow linear infinite;
}
.hero-decor-1 {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation-duration: 30s;
}
.hero-decor-2 {
  width: 680px;
  height: 680px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-style: dashed;
  animation-duration: 50s;
  animation-direction: reverse;
}
.hero-decor-leaf {
  position: absolute;
  font-size: 3rem;
  top: -20px;
  right: -20px;
  opacity: .4;
  animation: floatLeaf 4s ease-in-out infinite;
}
@keyframes spinSlow { to { rotate: 360deg; } }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-14px) rotate(5deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.scroll-dot::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================================
   SOBRE
   ============================================================= */
.sobre { background: var(--cream); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-image-wrap { position: relative; }
.sobre-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .8s var(--ease-out);
}
.sobre-img-frame:hover .sobre-img { transform: scale(1.03); }
.sobre-stats {
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  text-align: center;
  min-width: 140px;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-600);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
  margin-top: 4px;
}
.sobre-content { padding-right: 10px; }
.sobre-text {
  color: var(--text-500);
  margin-bottom: 20px;
  font-size: .93rem;
  line-height: 1.85;
}
.sobre-text strong { color: var(--sage-700); font-weight: 600; }
.sobre-credenciais {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 36px;
}
.credencial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--text-700);
  line-height: 1.5;
}
.credencial-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================================
   SERVIÇOS
   ============================================================= */
.servicos { background: var(--linen); }
.servicos-bg-decor {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23709B74' fill-opacity='0.03'%3E%3Cpath d='M40 40c0-22.09 17.91-40 40-40v40H40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* Photo-based service cards */
.service-card--photo {
  padding: 0;
  overflow: hidden;
}
.service-card--photo.service-card--featured { background: var(--sage-800); }
.service-photo-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.service-card--photo:hover .service-photo { transform: scale(1.06); }
.service-card-body { padding: 28px 28px 28px; }
.service-card--photo.service-card--featured .service-card-body .service-title { color: var(--white); }
.service-card--photo.service-card--featured .service-card-body .service-desc { color: rgba(255,255,255,.72); }
.service-card--photo.service-card--featured .service-card-body .service-tags span { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.service-card--photo::before { display: none; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(112,155,116,.12);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--sage-400);
  transform: scaleY(0);
  transition: transform .4s var(--ease-out);
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }
.service-card--featured {
  background: linear-gradient(135deg, var(--sage-800) 0%, var(--sage-700) 100%);
  color: var(--white);
  border-color: transparent;
}
.service-card--featured .service-title,
.service-card--featured .service-desc { color: var(--white); }
.service-card--featured .service-tags span { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.service-card--featured .service-icon-wrap .service-icon { background: rgba(255,255,255,.15); }
.service-card--featured .service-icon-wrap .service-icon svg { stroke: var(--gold-300); }
.service-card--featured::before { background: var(--gold-400); }
.service-icon-wrap { margin-bottom: 24px; }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.service-icon svg { stroke: var(--sage-600); }
.service-card:hover .service-icon { background: var(--sage-500); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: 12px;
}
.service-desc {
  font-size: .87rem;
  color: var(--text-500);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.services-cta > p { color: var(--text-500); font-size: .9rem; }

/* =============================================================
   E-BOOK
   ============================================================= */
.ebook {
  background: linear-gradient(160deg, var(--sage-900) 0%, var(--sage-800) 60%, var(--sage-700) 100%);
  position: relative;
  overflow: hidden;
}
.ebook-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(239,186,134,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(112,155,116,.15) 0%, transparent 60%);
  pointer-events: none;
}
.ebook-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* E-book Image Visual */
.ebook-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }
.ebook-img-wrap {
  position: relative;
  width: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-xl),
    0 0 80px rgba(239,186,134,.2),
    0 0 0 1px rgba(255,255,255,.1);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  flex-shrink: 0;
}
.ebook-img-wrap:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow:
    0 40px 100px rgba(0,0,0,.4),
    0 0 100px rgba(239,186,134,.25),
    0 0 0 1px rgba(255,255,255,.15);
}
.ebook-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.ebook-price-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: rgba(253,249,244,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.9);
}
.price-was { font-size: .72rem; color: var(--text-400); margin-bottom: 4px; }
.price-now { font-size: 1.05rem; color: var(--text-900); line-height: 1.3; }
.price-now strong { font-size: 1.8rem; color: var(--sage-600); font-family: 'Cormorant Garamond', serif; }
.price-or { font-size: .65rem; color: var(--text-400); margin-top: 4px; }

/* E-book Content */
.ebook-content { color: var(--white); }
.ebook-content .section-pretitle { color: var(--gold-300); }
.ebook-content .section-title { color: var(--white); margin-bottom: 16px; }
.ebook-content .section-title em { color: var(--gold-300); }
.ebook-intro {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.ebook-chapters { margin-bottom: 32px; }
.chapters-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 16px;
}
.chapter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .87rem;
  color: rgba(255,255,255,.75);
}
.chapter:last-child { border-bottom: none; }
.chapter-num {
  font-weight: 700;
  font-size: .7rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  min-width: 48px;
}
.ebook-bonus {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}
.bonus-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.bonus-item:last-child { margin-bottom: 0; }
.bonus-tag {
  background: var(--sage-500);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 2px;
}
.ebook-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(112,155,116,.15);
  border: 1px solid rgba(112,155,116,.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  line-height: 1.5;
}
.ebook-guarantee svg { stroke: var(--sage-300); flex-shrink: 0; margin-top: 2px; }
.ebook-guarantee strong { color: var(--white); }
.ebook-payment {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  letter-spacing: .5px;
}

/* =============================================================
   BENEFÍCIOS
   ============================================================= */
.beneficios { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--sage-100);
  text-align: center;
  transition: all .4s var(--ease-out);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.benefit-card h4 {
  font-size: 1.1rem;
  color: var(--text-900);
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.benefit-card p { font-size: .83rem; color: var(--text-500); line-height: 1.75; }

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
.depoimentos { background: var(--sage-50); }
.depoimentos-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23709B74' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
  z-index: 2;
}
.testimonials-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}
.testimonials-carousel-track:hover {
  animation-play-state: paused;
}
.testimonial-image-card {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(112,155,116,.15);
  background: var(--white);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  padding: 8px;
}
.testimonial-image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 4 - 24px * 4));
  }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: calc(var(--nav-h) + 40px); }
.faq-desc { color: var(--text-500); font-size: .9rem; line-height: 1.8; margin: 20px 0 32px; }
.faq-item {
  border-bottom: 1px solid var(--sage-100);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-900);
  transition: color .25s ease;
}
.faq-question:hover { color: var(--sage-600); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--sage-500);
  font-weight: 300;
  line-height: 1;
  transition: transform .3s var(--ease-out), color .3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--sage-600); }
.faq-answer {
  padding: 0 0 22px;
  font-size: .87rem;
  color: var(--text-500);
  line-height: 1.8;
  animation: expandAnswer .3s var(--ease-out);
}
.faq-answer[hidden] { display: none; }
@keyframes expandAnswer {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   CTA FINAL
   ============================================================= */
.cta-final {
  background: linear-gradient(160deg, var(--sage-900) 0%, var(--sage-800) 50%, #1c3521 100%);
  padding: calc(var(--section-py) * 1.2) 0;
  overflow: hidden;
  position: relative;
}
.cta-final::before {
  content: '\1F33F';
  position: absolute;
  font-size: 18rem;
  opacity: .04;
  top: -40px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
}
.cta-final-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-pretitle.light { color: var(--gold-300); }
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.12;
}
.cta-title em { color: var(--gold-300); }
.cta-desc { color: rgba(255,255,255,.65); font-size: .93rem; margin-bottom: 44px; line-height: 1.8; }
.cta-buttons { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--sage-900);
  padding: 72px 0 32px;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline { font-size: .82rem; line-height: 1.75; max-width: 220px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .3s ease;
}
.footer-social-link:hover { background: var(--sage-600); border-color: var(--sage-600); color: var(--white); }
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.footer-links-col a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
  transition: color .25s ease;
}
.footer-links-col a:hover { color: var(--sage-300); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { stroke: var(--sage-400); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* =============================================================
   WHATSAPP FLOAT
   ============================================================= */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wpp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
  animation: wppPulse 2.4s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.55), 0 0 0 12px rgba(37,211,102,.1);
  animation: none;
}
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 8px 30px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.0); }
}
.wpp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-900);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateY(-50%) translateX(6px);
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-900);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .ebook-grid { grid-template-columns: 0.7fr 1fr; gap: 50px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26,42,28,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open { display: flex; }
  /* Inside the mobile menu: links always branco (fundo escuro) */
  .nav-links .nav-link { padding: 14px 18px; border-radius: var(--radius-md); color: rgba(255,255,255,.85) !important; }
  .nav-links .nav-link:hover { background: rgba(255,255,255,.12) !important; color: var(--white) !important; }
  .nav-links .nav-cta {
    text-align: center;
    padding: 14px;
    background: var(--sage-500) !important;
    border-color: var(--sage-500) !important;
    color: var(--white) !important;
    backdrop-filter: none;
    margin-top: 8px;
  }
  .hamburger { display: flex; }
  .hero {
    background: linear-gradient(rgba(26, 42, 28, 0.85), rgba(26, 42, 28, 0.9)), url('../link/img/webp/marly-pc.webp') no-repeat 75% 15% / cover;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px 80px;
    justify-content: center;
  }
  .hero-title { text-align: center; }
  .hero-pretitle { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-stats { position: static; flex-direction: row; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
  .ebook-grid { grid-template-columns: 1fr; }
  .ebook-visual { margin-bottom: 40px; justify-content: center; }
  .ebook-img-wrap { width: 260px; }
  .ebook-content { text-align: left; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 56px; }
  .sobre-grid { gap: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card-body { padding: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-img { height: 340px; }
  .ebook-img-wrap { width: 220px; }
  .ebook-price-card { right: 0; bottom: -30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-decor-1, .hero-decor-2 { display: none; }
  .services-cta { flex-direction: column; align-items: stretch; }
  .services-cta .btn { text-align: center; justify-content: center; }
}
