*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive: #717F5E;
  --olive-dark: #5E6A51;
  --olive-light: #717F5E;
  --olive-pale: rgba(113,127,94,0.12);
  --rose: #BB9083;
  --rose-light: #BB9083;
  --rose-pale: rgba(187,144,131,0.14);
  --rose-deep: #9f766c;
  --beige: #C9BAA5;
  --beige-light: #E3D6C6;
  --beige-pale: rgba(227,214,198,0.38);
  --cream: #FEFEFB;
  --white: #FEFEFB;
  --text-dark: #2f2b28;
  --text-mid: #5f5a54;
  --text-soft: rgba(95,90,84,0.66);
  --shadow-soft: 0 4px 24px rgba(201,186,165,0.18), 0 1px 4px rgba(187,144,131,0.06);
  --shadow-card: 0 8px 40px rgba(201,186,165,0.20), 0 2px 8px rgba(187,144,131,0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px;
  height: 72px;
  background: rgba(254,254,251,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,186,165,0.34);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(201,186,165,0.22); }
.nav-logo {
  display: flex; align-items: center; gap: 5px;
  text-decoration: none;
  min-width: 132px;
  height: 72px;
  transform: translateY(1px);
}
.nav-logo-icon {
  width: 38px; height: 40px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(187,144,131,0.14));
  transform: translateY(1px);
}
.nav-logo-name {
  width: 88px; height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-3px);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose); color: var(--white);
  border: none; border-radius: 50px; padding: 10px 24px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--beige); transform: translateY(-1px); }
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: var(--text-soft);
  cursor: pointer; background: none; border: 1px solid var(--beige-light);
  border-radius: 50px; padding: 6px 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--rose); color: var(--rose); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  gap: 64px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(187,144,131,0.18) 0%, rgba(187,144,131,0.05) 50%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,186,165,0.22) 0%, rgba(201,186,165,0.06) 50%, transparent 75%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #717f5eb8; color: var(--white);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fefefb; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose);
}

/* === DESTAQUE V6 — bloco quebrado verde sálvia === */
.hero-highlight {
  display: inline-block;
  background: var(--olive-dark);          /* #5E6A51 */
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  padding: 6px 22px 10px;
  border-radius: 12px;
  line-height: 1.05;
  transform: rotate(-1.2deg);
  box-shadow:
    0 14px 36px -16px rgba(94,106,81,0.55),
    0 2px 6px rgba(47,43,40,0.08);
  margin: 6px 0;
  max-width: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-highlight {
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  }
  .hero-highlight:hover {
    transform: rotate(0deg) scale(1.02);
  }
}

.hero-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--rose); color: var(--white);
  border: none; border-radius: 50px; padding: 14px 32px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 10px;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(187,144,131,0.26);
}
.btn-primary:hover { background: var(--beige); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,186,165,0.30); }
.btn-secondary {
  background: transparent; color: var(--text-dark);
  border: 1.5px solid var(--beige-light); border-radius: 50px; padding: 13px 28px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose); background: var(--rose-pale); }

.hero-stats {
  display: flex; gap: 0; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid var(--beige-light);
}
.stat-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 28px; position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 1px; background: var(--beige-light);
}
.stat-number {
  font-family: var(--font-body); font-weight: 300;
  font-size: 24px; color: var(--olive); letter-spacing: -0.01em;
}
.stat-label { font-size: 12px; color: var(--text-soft); font-weight: 400; line-height: 1.4; }

/* HERO VISUAL */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-orb {
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(135deg, rgba(187,144,131,0.22) 0%, rgba(254,254,251,0.92) 45%, rgba(201,186,165,0.26) 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 100px rgba(187,144,131,0.20), 0 4px 24px rgba(201,186,165,0.16);
}
.hero-orb::before {
  content: '';
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(187,144,131,0.34);
  animation: spin-slow 18s linear infinite;
  pointer-events: none;
}
.hero-orb::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,186,165,0.45);
  pointer-events: none;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-wrap {
  width: 340px; height: 340px;
  background: rgba(254,254,251,0.62);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 48px rgba(113,127,94,0.13), 0 2px 12px rgba(187,144,131,0.10);
  position: relative; z-index: 2;
  border: 1.5px solid rgba(254,254,251,0.78);
}
.hero-logo-wrap img {
  width: 410px; height: 410px; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(187,144,131,0.16));
}

.floating-card {
  position: absolute;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.floating-card > div:last-child > div:first-child {
  font-size: 16px !important;
  line-height: 1.3;
}
.floating-card > div:last-child > div:last-child {
  font-size: 14px !important;
  line-height: 1.35;
}
.floating-card:nth-child(2) { animation-delay: 1s; }
.floating-card:nth-child(3) { animation-delay: 2s; }
.floating-card:nth-child(4) { animation-delay: 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.fc1 { top: 40px; left: -15px; }
.fc2 { bottom: 80px; left: -115px; }
.fc3 { top: 60px; right: -35px; }
.fc4 { bottom: 60px; right: -75px; }

/* SECTION BASICS */
section { padding: 100px 80px; scroll-margin-top: 96px; }
#inicio { scroll-margin-top: 0; }
#sobre { scroll-margin-top: 35px; }
#funcionalidades { scroll-margin-top: 0; }
#planos { scroll-margin-top: -20px; }
#next-finance { scroll-margin-top: 175px; }
#whatsapp { scroll-margin-top: 0px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rose); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--rose);
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.2; color: var(--text-dark);
  margin-bottom: 16px;
}
h2.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: 16px; color: var(--text-mid); max-width: 560px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-sub { margin: 0 auto; }

/* ABOUT */
.about {
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(227,214,198,0.30) 100%);
  position: relative;
}
.about::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(187,144,131,0.12) 0%, transparent 34%),
    radial-gradient(circle at 62% 10%, rgba(201,186,165,0.16) 0%, transparent 38%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 64px;
  position: relative; z-index: 1;
}
.about-visual {
  position: relative;
}
.about-main-card {
  background: linear-gradient(135deg, rgba(227,214,198,0.66) 0%, rgba(254,254,251,0.96) 56%, rgba(187,144,131,0.16) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(187,144,131,0.24);
  box-shadow: var(--shadow-card);
}
.about-main-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(187,144,131,0.24) 0%, transparent 70%);
}
.about-main-card > div:first-child { color: var(--rose-deep) !important; }
.about-main-card p { color: var(--text-dark) !important; }
.about-accent {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--rose); color: var(--white);
  border-radius: var(--radius-md); padding: 20px 24px;
  box-shadow: var(--shadow-card);
}
.about-accent-num { font-family: var(--font-display); font-size: 28px; }
.about-accent-text { font-size: 11px; opacity: 0.85; margin-top: 2px; }

.sofe-card {
  background: rgba(254,254,251,0.86);
  border-radius: var(--radius-lg); padding: 32px;
  margin-top: 20px;
  border: 1px solid rgba(187,144,131,0.28);
  box-shadow: 0 10px 34px rgba(187,144,131,0.10);
}
.sofe-card h4 {
  font-family: var(--font-display); font-size: 24px; color: var(--rose-deep);
  margin-bottom: 8px;
}
.sofe-card p { font-size: 15px; color: var(--text-dark); line-height: 1.75; }

.about-copy h3 {
  font-family: var(--font-display); font-size: 28px; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.3;
}
.about-copy p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

.value-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.value-pill {
  background: rgba(113,127,94,0.10); color: var(--olive-dark);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; font-weight: 500;
}

/* FEATURES */
.features { background: rgba(227,214,198,0.24); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,186,165,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--rose));
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h4 {
  font-family: var(--font-body); font-size: 17px; font-weight: 600;
  line-height: 1.35; margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* HOW IT WORKS */
.how {
  background: var(--white);
  padding-bottom: 154px;
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
  --progress: 0;
}
.steps::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px; border-radius: 2px;
  background: rgba(201,186,165,.42);
  z-index: 0;
}
.steps::after {
  content: '';
  position: absolute; top: 36px; left: 12%;
  width: calc((100% - 24%) * var(--progress));
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--beige), var(--rose), var(--olive-dark));
  z-index: 0;
  transition: width .9s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 12px rgba(187,144,131,.28);
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative;
  transition: transform .25s ease;
  cursor: default;
  z-index: 1;
}
.steps.animating .step-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.steps.animating .step-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.step-item::before {
  content: '';
  position: absolute; top: -12px; left: 50%;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 0;
}
.step-item.active,
.step-item:hover,
.steps.animating .step-item.is-visible.active,
.steps.animating .step-item.is-visible:hover { transform: translateY(-4px); }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; color: var(--white);
  margin-bottom: 24px; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(113,127,94,0.22);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.step-item.active .step-num,
.step-item:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(113,127,94,0.34);
}
@keyframes stepPop {
  0%   { transform: scale(1); }
  55%  { transform: scale(1.2); }
  100% { transform: scale(1.08); }
}
.step-item.popped .step-num { animation: stepPop .55s cubic-bezier(.4,0,.2,1); }
.step-item h4 {
  font-weight: 600; font-size: 15px; margin-bottom: 10px; color: var(--text-dark);
  transition: opacity .55s ease, color .25s ease;
}
.step-item p {
  font-size: 13px; color: var(--text-mid); line-height: 1.7;
  transition: opacity .55s ease;
}
.steps.has-focus .step-item:not(.active) h4,
.steps.has-focus .step-item:not(.active) p { opacity: .55; }
.step-item.active h4,
.step-item:hover h4 { color: var(--olive); }

/* WHATSAPP */
.whatsapp-section { background: var(--cream); }
.whatsapp-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 60px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,186,165,0.30);
}
.wa-visual {
  background: rgba(227,214,198,0.30); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.wa-header {
  background: var(--rose); border-radius: var(--radius-sm);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.wa-header-icon { font-size: 20px; }
.wa-header-text { color: var(--white); font-weight: 600; font-size: 14px; }
.wa-bubble {
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.5; max-width: 85%;
}
.wa-bubble.bot {
  background: var(--white); color: var(--text-dark);
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 1px 4px rgba(94,106,81,0.10);
  align-self: flex-start;
}
.wa-bubble.user {
  background: rgba(227,214,198,0.72); color: var(--text-dark);
  border-radius: 12px 12px 2px 12px;
  align-self: flex-end;
}
.wa-typing {
  display: flex; gap: 4px; align-items: center; padding: 8px 12px;
}
.wa-typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-soft);
  animation: typing 1.2s infinite;
}
.wa-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* HOW microcopy */
.how-microcopy {
  max-width: 720px; margin: 36px auto 0;
  text-align: center; font-size: 13px; color: var(--text-soft);
  line-height: 1.7;
}

/* NEXT FINANCE */
.next-finance { background: rgba(227,214,198,0.30); padding: 100px 80px; }
.nf-card {
  max-width: 880px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,186,165,0.34);
  text-align: center;
}
.nf-card .section-label { justify-content: center; margin-bottom: 16px; }
.nf-card .section-title { font-size: 36px; margin-bottom: 24px; }
.nf-text {
  font-size: 16px; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 16px;
}
.nf-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  background: var(--rose); color: var(--white);
  border: none; border-radius: 50px; padding: 14px 32px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nf-cta:hover { background: var(--beige); transform: translateY(-1px); }

/* SofIA brand chat tweaks (override WhatsApp green) */
.wa-visual { background: rgba(227,214,198,0.30); }
.wa-header { background: var(--rose); }
.wa-bubble.user { background: var(--rose-pale); color: var(--text-dark); }
.wa-header-icon-img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(254,254,251,0.45);
}
.wa-typing-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
@media (max-width: 768px) {
  .next-finance { padding: 64px 24px; }
  .nf-card { padding: 36px 24px; }
  .nf-card .section-title { font-size: 28px; }
}

/* PRICING */
.pricing { background: rgba(227,214,198,0.26); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px; align-items: start;
  padding: 16px; margin-left: -16px; margin-right: -16px;
}
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,186,165,0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.price-card:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(187,144,131,0.16), 0 2px 8px rgba(201,186,165,0.18); }
.price-card.featured {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: var(--rose);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.06); box-shadow: 0 16px 48px rgba(187,144,131,0.28); }
.price-badge {
  display: inline-block; background: var(--rose);
  color: var(--white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 20px;
}
.price-name { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.price-card.featured .price-name { color: var(--white); }
.price-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(254,254,251,0.75); }
.price-amount {
  font-family: var(--font-display); font-size: 40px;
  color: var(--text-dark); margin-bottom: 4px;
}
.price-card.featured .price-amount { color: var(--white); }
.price-period { font-size: 13px; color: var(--text-soft); margin-bottom: 28px; }
.price-card.featured .price-period { color: rgba(254,254,251,0.70); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { font-size: 14px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; }
.price-card.featured .price-features li { color: rgba(254,254,251,0.88); }
.price-features li::before {
  content: '✓'; color: var(--rose); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.price-card.featured .price-features li::before { color: var(--beige-light); }
.price-cta {
  width: 100%; padding: 13px; border-radius: 50px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); border: none;
  transition: all 0.2s;
}
.price-cta.outline {
  background: transparent; border: 1.5px solid var(--beige-light); color: var(--text-dark);
}
.price-cta.outline:hover { border-color: var(--rose); color: var(--rose); background: var(--rose-pale); }
.price-cta.solid {
  background: var(--white); color: var(--rose-deep);
}
.price-cta.solid:hover { background: var(--beige-pale); }

/* TESTIMONIALS */
.testimonials { background: rgba(227,214,198,0.24); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.testimonial-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(201,186,165,0.36);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stars {
  color: #D9A441;
  font-size: 17px; margin-bottom: 16px; letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(95,90,84,0.10);
}
.testimonial-text {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-soft); }

/* FAQ */
.faq {
  background: rgba(227,214,198,0.24);
  padding-top: 72px;
  padding-bottom: 180px;
  min-height: calc(100vh - 72px);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 52px; align-items: start;
}
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(201,186,165,0.32);
  overflow: hidden;
}
.faq-question {
  padding: 22px 24px; font-weight: 600; font-size: 15px;
  color: var(--text-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  background: none; border: none; width: 100%;
  font-family: var(--font-body);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose) !important; }
.faq-question.open { color: var(--rose) !important; }
.faq-chevron {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rose-pale); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  font-size: 14px; color: var(--text-mid); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 20px; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  text-align: center; padding: 100px 80px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(187,144,131,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.cta-section h2 em {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--olive-dark);        /* #5E6A51 */
  color: var(--cream);
  padding: 6px 22px 10px;
  border-radius: 12px;
  line-height: 1.05;
  margin: 6px 4px;
  box-shadow:
    0 14px 36px -16px rgba(47, 43, 40, 0.45),
    0 2px 6px rgba(47, 43, 40, 0.15);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.cta-section h2 em:hover {
  transform: rotate(0deg) scale(1.02);
}

/* dá um respiro a mais no h2 pra o bloco não cortar */
.cta-section h2 {
  line-height: 1.35;
}

/* mobile: bloco menor */
@media (max-width: 768px) {
  .cta-section h2 em {
    padding: 4px 16px 8px;
    border-radius: 10px;
    margin: 4px 2px;
  }
}

.cta-section p { font-size: 17px; color: rgba(254,254,251,0.78); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--rose-deep);
  border: none; border-radius: 50px; padding: 14px 36px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(47,51,42,0.15);
  display: flex; align-items: center; gap: 10px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(47,51,42,0.20); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(254,254,251,0.46); border-radius: 50px; padding: 13px 28px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(254,254,251,0.12); }

/* FOOTER */
footer {
  background:
    linear-gradient(135deg, rgba(254,254,251,0.98) 0%, rgba(227,214,198,0.72) 52%, rgba(187,144,131,0.22) 100%);
  color: var(--text-mid);
  padding: 64px 80px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-lockup {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 0;
  background: transparent;
  border: none;
  text-decoration: none;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(47,43,40,0.18));
}
.footer-logo-icon {
  height: 48px; width: auto;
  object-fit: contain;
}
.footer-logo-name {
  height: 44px; width: auto;
  object-fit: contain;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  color: var(--text-dark); font-size: 14px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.footer-col a,
.footer-col span {
  display: block; color: rgba(95,90,84,0.78);
  font-size: 14px; text-decoration: none;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose); }
.footer-col span { cursor: default; opacity: .72; }
.footer-bottom {
  border-top: 1px solid rgba(187,144,131,0.18);
  padding-top: 32px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--rose); text-decoration: none; }

/* Responsive */
@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero { padding: 100px 40px 60px; gap: 40px; }
  section { padding: 80px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before, .steps::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-logo { min-width: 0; gap: 5px; }
  .nav-logo-icon { width: 36px; height: 38px; }
  .nav-logo-name { width: 84px; max-height: 34px; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }
  .lang-toggle { padding: 6px 11px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-orb { width: 320px; height: 320px; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .hero-logo-wrap img { width: 205px; height: 205px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .floating-card { display: none; }
  section { padding: 60px 24px; }
  .about-grid, .whatsapp-card { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .cta-section { padding: 60px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: scale(1.02); }
  .hero-highlight {
    padding: 4px 16px 8px;
    border-radius: 10px;
  }
}
