/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #FAFAF8;
  color: #252018;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* ── Paleta Verde Oliva ─────────────────────── */
  --mint: #6B7A3E;          /* Verde Oliva principal  */
  --mint-light: #A8B878;    /* Oliva claro            */
  --mint-pale: #EDF0E0;     /* Oliva muito pale       */
  --gold: #C4A35A;          /* Dourado terroso        */
  --gold-light: #E2CFA0;    /* Dourado claro          */
  --gold-pale: #FAF6EA;     /* Dourado pale           */
  --rose: #B07A5A;          /* Terracota suave        */
  --rose-light: #D9B89A;    /* Terracota claro        */
  --cream: #F4F1E8;         /* Creme oliva            */
  --dark: #252018;
  --mid: #5C5840;
  --light-text: #948E78;
  --white: #FFFFFF;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 60px;
  --shadow-soft: 0 8px 40px rgba(37, 34, 20, 0.08);
  --shadow-med: 0 16px 64px rgba(37, 34, 20, 0.12);
  --shadow-strong: 0 24px 80px rgba(37, 34, 20, 0.18);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--mint-light); border-radius: 3px; }

/* ============================================================
   NOISE TEXTURE
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ============================================================
   ANIMATED BACKGROUND BLOBS
   ============================================================ */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: #6B7A3E; top: -200px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #C4A35A; bottom: 10%; left: -150px; animation-delay: -7s; }
.blob-3 { width: 400px; height: 400px; background: #8A9A50; top: 40%; right: 10%; animation-delay: -14s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
nav.solid {
  background: rgba(250, 250, 248, 0.92) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
  border-bottom-color: rgba(107, 122, 62, 0.16);
  box-shadow: 0 8px 28px rgba(37, 32, 24, 0.1);
}
.nav-hidden { transform: translateY(-110%); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--mint), var(--mint-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}
.nav-logo-text span { color: var(--mint); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.02em;
  opacity: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
  transition: color 0.2s, opacity 0.2s;
}
.nav-menu a:hover { color: var(--mint); }

nav.solid .nav-menu a,
nav.solid .nav-logo-text {
  text-shadow: none;
}
.nav-cta {
  background: var(--mint) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(91, 140, 122, 0.3);
}
.nav-cta:hover {
  background: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91, 140, 122, 0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem clamp(1.5rem, 6vw, 5rem) 4rem;
}
.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left: Text */

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mint-pale);
  color: var(--mint);
  border: 1px solid rgba(91, 140, 122, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pill-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--mint);
  position: relative;
}
.hero h1 .underline-word {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;
}
@keyframes lineReveal {
  to { transform: scaleX(1); }
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--mint);
  color: white;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(91, 140, 122, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(91, 140, 122, 0.45); }
.btn-main:hover::before { opacity: 1; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--light-text);
}
.avatars {
  display: flex;
}
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #8A9A50, #6B7A3E); }
.av-2 { background: linear-gradient(135deg, #C9A96E, #B08A4E); }
.av-3 { background: linear-gradient(135deg, #D4827A, #B86059); }

.stars { display: flex; align-items: center; margin-bottom: 0.2rem; }

/* Right: Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--mint-pale), var(--gold-pale));
  border-radius: 46% 54% 60% 40% / 46% 40% 60% 54%;
  animation: morphBlob 12s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 46% 54% 60% 40% / 46% 40% 60% 54%; }
  33% { border-radius: 60% 40% 46% 54% / 54% 60% 40% 46%; }
  66% { border-radius: 40% 60% 54% 46% / 60% 46% 54% 40%; }
}
.hero-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  animation: morphImg 12s ease-in-out infinite 2s;
}
@keyframes morphImg {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  33% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; }
  66% { border-radius: 50% 50% 60% 40% / 60% 40% 55% 45%; }
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-med);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.9);
  animation: floatUp 4s ease-in-out infinite;
}
.float-card-2 { animation-delay: -2s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card-1 { bottom: 12%; left: -10%; }
.float-card-2 { top: 10%; right: -8%; }

.fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon-mint { background: var(--mint-pale); }
.fc-icon-gold { background: var(--gold-pale); }
.fc-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.fc-text span { font-size: 0.75rem; color: var(--light-text); }

/* Hero Scroll Indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  z-index: 10;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--mint-light);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--mint);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { position: relative; z-index: 10; }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.875rem;
}
.label svg { width: 14px; height: 14px; fill: currentColor; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}
h2 em { font-style: italic; color: var(--mint); }
h2 .gold { color: var(--gold); }

.section-sub {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAIN POINTS SECTION
   ============================================================ */
.pain-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--white);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.pain-left .label { justify-content: flex-start; }
.pain-left h2 { text-align: left; }
.pain-left .section-sub { text-align: left; margin-left: 0; margin-top: 1.25rem; }

.pain-quote {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--mint-pale);
  border-left: 3px solid var(--mint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mint);
  line-height: 1.65;
}

.pain-cards { display: flex; flex-direction: column; gap: 0.875rem; }

.pain-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(37, 32, 24, 0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.pain-card:hover {
  background: white;
  transform: translateX(8px) scale(1.01);
  box-shadow: var(--shadow-soft);
  border-color: rgba(91, 140, 122, 0.15);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.pain-icon svg { transition: stroke 0.3s ease; }
.pain-card:hover .pain-icon { transform: scale(1.1) rotate(-5deg); }
.pain-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--dark); }
.pain-card p strong { color: var(--mint); font-weight: 600; }

/* CTA link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint);
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 2px solid rgba(91, 140, 122, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
  margin-top: 1.75rem;
}
.cta-link:hover { border-color: var(--mint); gap: 0.75rem; }
.cta-link svg { width: 18px; height: 18px; transition: transform 0.2s; }
.cta-link:hover svg { transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(160deg, #252918 0%, #3A4024 50%, #1E2214 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-area { position: relative; }
.about-img-border {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  animation: borderSpin 20s linear infinite;
}
@keyframes borderSpin {
  0% { border-radius: 30px 60px 30px 60px; }
  25% { border-radius: 60px 30px 60px 30px; }
  50% { border-radius: 30px 60px 30px 60px; }
  75% { border-radius: 60px 30px 60px 30px; }
  100% { border-radius: 30px 60px 30px 60px; }
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 48, 40, 0.4), transparent 60%);
}

.credential-bar {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-med);
  z-index: 5;
}
.crp-badge {
  background: var(--mint-pale);
  color: var(--mint);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-text .label { color: #A8B878; }
.about-text h2 { color: white; }
.about-text h2 em { color: #A8B878; }
.about-text p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  font-weight: 300;
}

.about-values {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: background 0.3s;
}
.value-item:hover { background: rgba(255,255,255,0.1); }
.value-item .vi-icon { 
  font-size: 1.5rem; 
  margin-bottom: 0.6rem; 
  width: 36px; 
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong { display: block; color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.value-item span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--white);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3.5rem;
  align-items: start;
}
/* connector line sits between the circles only, using SVG-based approach */
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  flex-shrink: 0;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.25;
  animation: stepPulse 3s ease-in-out infinite;
}
@keyframes stepPulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.1); opacity: 0.1; }
}
.step-1 .step-num { background: linear-gradient(135deg, #EDF0E0, #C8D0A0); color: var(--mint); }
.step-1 .step-num::before { border-color: var(--mint); }
.step-2 .step-num { background: linear-gradient(135deg, #FAF6EA, #E2CFA0); color: #8A6A28; }
.step-2 .step-num::before { border-color: var(--gold); }
.step-3 .step-num { background: linear-gradient(135deg, var(--mint), #4A5628); color: white; }
.step-3 .step-num::before { border-color: var(--mint); }

.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  width: 100%;
}
.step-item p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  width: 100%;
  max-width: 240px;
}

/* Steps connector overlay */
.steps-connector {
  position: absolute;
  top: 31px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 4px;
  z-index: 0;
  pointer-events: none;
}
.step-body {
  width: 100%;
  max-width: 260px;
  padding: 0 0.5rem;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}
.modal-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream);
}
.modal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.modal-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.modal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

.mc-online {
  background: linear-gradient(135deg, #252918, #3A4024);
  color: white;
}
.mc-presencial {
  background: linear-gradient(135deg, #F0EFE4, #E8E4D0);
  color: var(--dark);
}

.mc-pattern {
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  opacity: 0.08;
}
.mc-online .mc-pattern { background: white; }
.mc-presencial .mc-pattern { background: var(--mint); }

.mc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.mc-online .mc-icon { background: rgba(255,255,255,0.12); }
.mc-presencial .mc-icon { background: rgba(107, 122, 62, 0.1); }

.modal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.mc-online h3 { color: white; }
.mc-presencial h3 { color: var(--dark); }

.modal-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.mc-online p { color: rgba(255,255,255,0.7); }
.mc-presencial p { color: var(--mid); }

.mc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.mc-online .mc-badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.mc-presencial .mc-badge { background: var(--mint-pale); color: var(--mint); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.mc-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream);
}
.faq-list { max-width: 760px; margin: 3rem auto 0; }

details.faq {
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(37, 32, 24, 0.08);
  background: white;
  transition: box-shadow 0.3s ease;
}
details.faq[open] {
  box-shadow: var(--shadow-soft);
  border-color: rgba(91, 140, 122, 0.2);
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  user-select: none;
  transition: color 0.2s;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq[open] summary { color: var(--mint); }
.faq-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--mid);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}
details.faq[open] .faq-arrow {
  background: var(--mint-pale);
  color: var(--mint);
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  border-top: 1px solid rgba(37, 32, 24, 0.05);
  padding-top: 1rem;
  animation: faqIn 0.3s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Icon refinements */
.pain-icon svg,
.fc-icon svg,
.mc-icon svg,
.vi-icon svg {
  display: block;
  flex-shrink: 0;
}
.pain-card:hover .pain-icon svg {
  stroke: var(--mint);
}
.value-item:hover .vi-icon svg {
  stroke: white;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.modal-card:hover .mc-icon svg {
  transform: scale(1.08) rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Refined label icon */
.label svg { 
  width: 14px; 
  height: 14px; 
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.ethics-note {
  max-width: 760px;
  margin: 1.5rem auto 0;
  background: var(--mint-pale);
  border: 1px solid rgba(91, 140, 122, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--mint);
  line-height: 1.6;
}
.ethics-note .ethics-icon { flex-shrink: 0; display: flex; align-items: center; }
.ethics-note p { margin: 0; flex: 1; min-width: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #252918 0%, #3A4024 40%, #1E2214 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.08;
  filter: blur(60px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
  filter: blur(60px);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: var(--mint);
  padding: 1.1rem 2.25rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-cta-main:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #141209;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-wrap { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.375rem;
}
.footer-brand-crp {
  font-size: 0.75rem;
  color: var(--mint-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--mint-light); }
.footer-col ul li a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-crisis {
  background: rgba(91, 140, 122, 0.08);
  border: 1px solid rgba(91, 140, 122, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 380px;
  line-height: 1.65;
}
.footer-crisis strong { color: var(--mint-light); }
.footer-crisis a { color: var(--mint-light); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 400;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.wa-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
.wa-btn svg { width: 30px; height: 30px; fill: white; }

.back-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 5.9rem;
  z-index: 395;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(107, 122, 62, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform, opacity;
}
.back-top-btn:hover {
  filter: brightness(0.94);
  box-shadow: 0 12px 34px rgba(107, 122, 62, 0.46);
}
.back-top-btn svg {
  width: 22px;
  height: 22px;
}
.back-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.wa-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waRing 2.5s ease-out infinite;
}
@keyframes waRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: white;
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  transform: translateX(8px);
}
.wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-zoom { transform: translateY(20px) scale(0.97); }
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-zoom.in-view {
  transform: translate(0, 0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeInUp 0.8s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }
.hero-text > *:nth-child(5) { animation-delay: 0.7s; }
.hero-image-wrap { animation: fadeInUp 1s ease 0.3s both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   HAMBURGER & MOBILE MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(107, 122, 62, 0.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 122, 62, 0.12);
  z-index: 490;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.48s,
    box-shadow 0.4s ease;
  box-shadow: 0 20px 40px rgba(37, 32, 24, 0.12);
  will-change: transform, opacity;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s,
    box-shadow 0.4s ease;
}
.mm-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mid);
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid rgba(37, 32, 24, 0.06);
  transition: color 0.2s ease;
}
.mm-link:hover { color: var(--mint); }
.mm-cta {
  margin-top: 1rem;
  background: var(--mint);
  color: white;
  padding: 1rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(107, 122, 62, 0.3);
}
.mm-cta:hover { background: var(--dark); }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {

  /* NAV */
  .nav-menu { display: none; }
  nav { padding: 0 1.5rem; }
  .hamburger { display: flex; }

  /* HERO */
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-image-wrap { max-width: 320px; margin: 0 auto; order: -1; }
  .float-card-1, .float-card-2 { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .blob { filter: blur(52px); opacity: 0.14; }
  .hero-image-bg,
  .hero-image-frame,
  .about-img-border {
    animation-duration: 16s;
  }
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    transform: translateY(24px);
  }

  /* PAIN */
  .pain-section { padding: 4rem 0; }
  .pain-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pain-left h2 { text-align: center; }
  .pain-left .label { justify-content: center; }
  .pain-left .section-sub { text-align: center; margin-left: auto; }

  /* ABOUT */
  .about-section { padding: 4rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-area { max-width: 300px; margin: 0 auto; }
  .credential-bar { display: none; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .about-text h2 { text-align: center; }
  .about-text .label { justify-content: center; }

  /* STEPS */
  .how-section { padding: 4rem 0; }
  .steps-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-connector { display: none; }
  .step-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.25rem; }
  .step-num { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.3rem; }
  .step-body { padding: 0; }
  .step-body h3 { margin-bottom: 0.5rem; }

  /* MODALITIES */
  .modal-section { padding: 4rem 0; }
  .modal-cards { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-section { padding: 4rem 0; }

  /* CTA BANNER */
  .cta-banner { padding: 4rem 1.5rem; }

  /* FOOTER */
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .footer-brand p { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 540px)
   ============================================================ */
@media (max-width: 540px) {

  /* NAV */
  nav { height: 60px; }
  .nav-logo-text { font-size: 0.95rem; }
  .mobile-menu { top: 60px; }

  /* HERO */
  .hero { padding: 4.5rem 1.25rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .btn-main { justify-content: center; width: 100%; text-align: center; }
  .hero-image-wrap { max-width: 260px; }
  .pill-tag { font-size: 0.68rem; padding: 0.35rem 0.875rem; }

  /* PAIN */
  .pain-section { padding: 3rem 0; }
  .pain-card { padding: 1rem 1.25rem; gap: 0.875rem; }
  .pain-icon { width: 38px; height: 38px; }
  .pain-card h3 { font-size: 0.95rem; }
  .pain-card p { font-size: 0.85rem; }

  /* ABOUT */
  .about-section { padding: 3rem 0; }
  .about-values { grid-template-columns: 1fr; gap: 0.75rem; }
  .about-text p { font-size: 0.9rem; }

  /* STEPS */
  .how-section { padding: 3rem 0; }
  .step-item { gap: 1rem; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .step-body h3 { font-size: 1.1rem; }
  .step-body p { font-size: 0.875rem; }

  /* MODALITIES */
  .modal-section { padding: 3rem 0; }
  .modal-card { padding: 1.75rem; }
  .modal-card h3 { font-size: 1.25rem; }

  /* FAQ */
  .faq-section { padding: 3rem 0; }
  .faq summary { font-size: 0.9rem; padding: 1.1rem 1.25rem; }
  .faq-body { font-size: 0.875rem; padding: 0 1.25rem 1.25rem; }
  .ethics-note { flex-direction: column; gap: 0.5rem; font-size: 0.78rem; }
  .ethics-note .ethics-icon { align-self: flex-start; }

  /* CTA BANNER */
  .cta-banner { padding: 3.5rem 1.25rem; }
  .cta-banner h2 { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta-main { justify-content: center; width: 100%; }

  /* FOOTER */
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-crisis { max-width: 100%; }
  .footer-col ul { gap: 0.625rem; }

  /* WA BUTTON */
  .wa-btn { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .wa-btn svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
  .back-top-btn {
    width: 44px;
    height: 44px;
    right: 1.25rem;
    bottom: 5.2rem;
  }
  .back-top-btn svg {
    width: 20px;
    height: 20px;
  }
  .scroll-hint { display: none; }
  .step-num::before,
  .wa-ring {
    animation: none;
  }
  .blob { filter: blur(42px); opacity: 0.1; }

  /* SECTION TITLES */
  h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .section-sub { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .blob,
  .hero-image-bg,
  .hero-image-frame,
  .float-card,
  .scroll-dot,
  .step-num::before,
  .wa-ring,
  .about-img-border {
    animation: none !important;
  }

  .reveal,
  .reveal.in-view,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .hero-text > *,
  .hero-image-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
}
