/* ==========================================================================
   Dra. Camila Verardo — Consultoria em Amamentação & Medicina do Aleitamento
   Direção visual: "Aquarela Calorosa" (afetiva ilustrada)
   Assinatura: texturas de aquarela com bordas molhadas/dissolvidas +
               manuscrito pontual — estética pintada à mão e sangrias de tinta.
   No Mapa by Cajueiro.tech
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Paleta — pastéis quentes lavados sobre off-white */
  --primary: #F2A9A0;        /* pêssego-coral */
  --primary-deep: #E0857A;   /* coral mais saturado p/ acentos de toque */
  --secondary: #D6C7E8;      /* lilás-suave */
  --accent: #BBD7E8;         /* azul-aquarela */
  --cream: #FBEFC9;          /* amarelo-creme (textura) */
  --bg: #FFFBF6;             /* off-white */
  --bg-2: #FFF5EC;           /* off-white levemente mais quente */
  --text: #5A4456;           /* ameixa-acinzentada escura — AA */
  --text-soft: #7A6473;      /* texto secundário */
  --ink: #4A3647;            /* tinta para títulos */
  --white: #FFFFFF;

  /* Tipografia */
  --font-heading: "Cormorant", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-hand: "Shantell Sans", "Comic Sans MS", cursive;

  /* Escala fluida */
  --step--1: clamp(0.84rem, 0.78rem + 0.3vw, 0.95rem);
  --step-0: clamp(1rem, 0.94rem + 0.3vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.05rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.1rem);
  --step-4: clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);

  /* Espaçamento fluido */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.7vw, 1.1rem);
  --space-md: clamp(1.2rem, 1rem + 1vw, 1.8rem);
  --space-lg: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --space-xl: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);

  --maxw: 1140px;
  --radius: 28px;
  --radius-sm: 18px;

  /* sombras suaves, como tinta secando */
  --shadow-soft: 0 18px 50px -28px rgba(90, 68, 86, 0.35);
  --shadow-lift: 0 28px 70px -32px rgba(224, 133, 122, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  /* Lavados de aquarela como fundo vivo — manchas radiais que dissolvem */
  background-image:
    radial-gradient(60% 45% at 12% 8%, rgba(214, 199, 232, 0.30) 0%, transparent 60%),
    radial-gradient(50% 40% at 92% 18%, rgba(187, 215, 232, 0.30) 0%, transparent 60%),
    radial-gradient(55% 45% at 80% 92%, rgba(242, 169, 160, 0.22) 0%, transparent 62%),
    radial-gradient(45% 35% at 8% 88%, rgba(251, 239, 201, 0.45) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Tipografia base ---------- */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hand {
  font-family: var(--font-hand);
  color: var(--primary-deep);
  font-weight: 600;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 2.5rem);
}

/* ==========================================================================
   Aquarela — divisores e sangrias (SVG/CSS, sem imagem externa)
   ========================================================================== */
.bleed-divider {
  display: block;
  width: 100%;
  height: clamp(60px, 9vw, 120px);
  margin: 0;
  pointer-events: none;
}
.bleed-divider svg { width: 100%; height: 100%; display: block; }

/* Mancha respingada decorativa reutilizável */
.splatter {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(0.3px);
  z-index: 0;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--ease) .4s, box-shadow var(--ease) .4s, padding var(--ease) .4s;
  padding: clamp(0.7rem, 1.6vw, 1.1rem) 0;
}
.site-nav.scrolled {
  background: rgba(255, 251, 246, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 10px 40px -26px rgba(90, 68, 86, 0.5);
}
.nav-inner {
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-mark {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50% 46% 54% 50% / 50% 54% 46% 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--cream), transparent 55%),
    radial-gradient(circle at 70% 75%, var(--secondary), transparent 60%),
    var(--primary);
  display: grid; place-items: center;
  box-shadow: inset 0 -6px 14px -6px rgba(224,133,122,.6), var(--shadow-soft);
}
.nav-logo-mark svg { width: 24px; height: 24px; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  display: flex; flex-direction: column;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav-links a:not(.nav-cta) {
  font-size: 0.94rem; font-weight: 600; color: var(--text-soft);
  position: relative; padding: 4px 0;
  transition: color var(--ease) .3s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 6px;
  border-radius: 6px;
  background: radial-gradient(closest-side, var(--secondary), transparent);
  transition: right var(--ease) .35s; opacity: .9;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { right: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; min-height: 48px;
  border-radius: 40px 38px 42px 40px / 40px 42px 38px 40px;
  transition: transform var(--ease) .35s, box-shadow var(--ease) .35s, background var(--ease) .35s;
  position: relative; text-align: center;
}
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: var(--shadow-lift);
}
.btn--primary:hover { transform: translateY(-3px) rotate(-0.6deg); box-shadow: 0 34px 80px -30px rgba(224,133,122,.7); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 2px rgba(214,199,232,0.9), var(--shadow-soft);
}
.btn--ghost:hover { transform: translateY(-3px) rotate(0.6deg); background: var(--white); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.08rem; padding: 1.1rem 2rem; min-height: 58px; }
.nav-cta { color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-deep)); padding: 0.62rem 1.3rem; min-height: 44px; border-radius: 34px; box-shadow: var(--shadow-soft); font-weight: 800; }
.nav-cta:hover { transform: translateY(-2px); }

/* ---------- Hamburger ---------- */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: rgba(255,255,255,0.6); box-shadow: var(--shadow-soft); }
.nav-toggle span { display: block; width: 22px; height: 2.5px; border-radius: 4px; background: var(--ink); transition: transform var(--ease) .35s, opacity var(--ease) .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: var(--space-lg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary-deep);
  background: rgba(242,169,160,0.16);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1.5px rgba(242,169,160,0.45);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-deep); animation: breathe 3.4s var(--ease) infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.5); opacity: 1; } }

.hero h1 {
  font-size: var(--step-4);
  margin: var(--space-sm) 0 var(--space-sm);
  font-weight: 500;
}
.hero h1 .em { font-style: italic; color: var(--primary-deep); }
.hero-kicker { font-family: var(--font-hand); font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--primary-deep); display: block; transform: rotate(-2deg); margin-bottom: -0.3rem; }
.hero-sub {
  font-size: var(--step-1);
  color: var(--text-soft);
  max-width: 38ch;
  margin-bottom: var(--space-md);
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.hero-cred {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--text-soft);
}
.hero-cred .stars { color: var(--primary-deep); letter-spacing: 2px; }
.hero-cred strong { color: var(--ink); font-weight: 800; }

/* Hero visual — moldura aquarelada com sangria */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 48% 52% 55% 45% / 55% 48% 52% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(160deg, var(--secondary), var(--accent));
  aspect-ratio: 4 / 4.4;
  isolation: isolate;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(0.96) brightness(1.04) sepia(0.06); mix-blend-mode: multiply; }
/* overlay quente lavado sobre a foto */
.hero-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(251,239,201,0.35), transparent 60%),
    radial-gradient(70% 60% at 80% 90%, rgba(242,169,160,0.28), transparent 65%);
  mix-blend-mode: soft-light;
}
.hero-note {
  position: absolute; z-index: 3;
  bottom: 8%; left: -4%;
  background: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: 20px 22px 20px 8px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-hand);
  font-size: 1.05rem; color: var(--ink);
  max-width: 14rem; line-height: 1.3;
  transform: rotate(-3deg);
}
.hero-note span { color: var(--primary-deep); }
.hero-splat-1 { width: 180px; height: 180px; top: -6%; right: -8%; }
.hero-splat-2 { width: 130px; height: 130px; bottom: -4%; right: 18%; opacity: .42; }

/* ==========================================================================
   SECTION shell + headers
   ========================================================================== */
.section { position: relative; padding-block: var(--space-xl); }
.section--tint { background: linear-gradient(180deg, rgba(214,199,232,0.10), rgba(187,215,232,0.10)); }
.section--peach { background: linear-gradient(180deg, rgba(242,169,160,0.10), rgba(251,239,201,0.18)); }

.section-head { max-width: 60ch; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.25rem; color: var(--primary-deep);
  transform: rotate(-1.5deg);
  margin-bottom: 0.4rem;
}
.section-head h2 { font-size: var(--step-3); font-weight: 500; }
.section-head h2 .em { font-style: italic; color: var(--primary-deep); }
.section-head p { margin-top: var(--space-sm); color: var(--text-soft); font-size: var(--step-1); font-weight: 400; }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-photo { position: relative; }
.about-photo-frame {
  border-radius: 52% 48% 46% 54% / 48% 52% 48% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(150deg, var(--cream), var(--primary));
  aspect-ratio: 4 / 4.6;
  isolation: isolate;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(1.05) sepia(0.08); mix-blend-mode: multiply; }
.about-photo-frame::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 60% at 70% 80%, rgba(242,169,160,0.30), transparent 65%); mix-blend-mode: soft-light; }
.about-photo .splatter { width: 140px; height: 140px; bottom: -5%; left: -6%; opacity: .5; }
.about-stamp {
  position: absolute; top: -12px; right: -10px; z-index: 3;
  width: 96px; height: 96px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-hand); font-weight: 700; color: var(--ink);
  font-size: 0.8rem; line-height: 1.1;
  background:
    radial-gradient(circle at 40% 35%, var(--cream), transparent 60%),
    var(--accent);
  border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(8deg);
}
.about-stamp b { display: block; font-size: 1.5rem; font-family: var(--font-heading); }

.about-text h2 { font-size: var(--step-3); font-weight: 500; margin-bottom: var(--space-sm); }
.about-text h2 .em { font-style: italic; color: var(--primary-deep); }
.about-text p { margin-bottom: var(--space-sm); color: var(--text); }
.about-text p .hl { color: var(--ink); font-weight: 700; }
.about-sign { font-family: var(--font-hand); font-size: 1.5rem; color: var(--primary-deep); margin-top: var(--space-sm); }

.creds { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-md); }
.cred-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,0.75);
  padding: 0.55rem 0.95rem; border-radius: 30px;
  box-shadow: inset 0 0 0 1.5px rgba(187,215,232,0.7), var(--shadow-soft);
}
.cred-tag svg { width: 16px; height: 16px; color: var(--primary-deep); }

/* ==========================================================================
   SERVIÇOS / PILARES
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--space-md); }
.pillar {
  position: relative;
  background: rgba(255,255,255,0.66);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--ease) .4s, box-shadow var(--ease) .4s;
}
.pillar::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .9;
  background: radial-gradient(120% 90% at 0% 0%, var(--blob, rgba(214,199,232,0.25)) 0%, transparent 55%);
}
.pillar:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-lift); }
.pillar > * { position: relative; z-index: 1; }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 50% 48% 52% 50% / 52% 50% 50% 48%;
  display: grid; place-items: center; margin-bottom: var(--space-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.pillar-icon svg { width: 28px; height: 28px; color: var(--primary-deep); }
.pillar-quote {
  font-family: var(--font-hand);
  font-size: 1.02rem; color: var(--text-soft);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.pillar h3 { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.96rem; color: var(--text-soft); }

/* tons alternados nos blobs dos cards */
.pillar:nth-child(2) { --blob: rgba(187,215,232,0.28); }
.pillar:nth-child(3) { --blob: rgba(242,169,160,0.24); }
.pillar:nth-child(4) { --blob: rgba(251,239,201,0.40); }
.pillar:nth-child(5) { --blob: rgba(214,199,232,0.28); }
.pillar:nth-child(6) { --blob: rgba(187,215,232,0.26); }

/* ==========================================================================
   COMO FUNCIONA — timeline
   ========================================================================== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.timeline::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 34px; height: 4px; z-index: 0;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--secondary) 0 14px, transparent 14px 26px);
  opacity: .7;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 68px; height: 68px; margin: 0 auto var(--space-sm);
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 600; color: var(--white);
  border-radius: 50% 46% 54% 50% / 50% 54% 46% 50%;
  background: linear-gradient(150deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow-lift);
}
.step:nth-child(2) .step-num { background: linear-gradient(150deg, var(--secondary), #B89FD6); }
.step:nth-child(3) .step-num { background: linear-gradient(150deg, var(--accent), #8FBEDC); }
.step:nth-child(4) .step-num { background: linear-gradient(150deg, var(--cream), var(--primary)); color: var(--ink); }
.step h3 { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.3rem; }
.step p { font-size: 0.93rem; color: var(--text-soft); }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--space-md); }
.testi {
  position: relative;
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.testi::before {
  content: "\201C";
  position: absolute; top: -0.4rem; right: 1rem;
  font-family: var(--font-heading); font-size: 6rem; line-height: 1;
  color: var(--secondary); opacity: 0.5;
}
.testi-body { font-size: 1rem; color: var(--text); margin-bottom: var(--space-md); flex: 1; position: relative; z-index: 1; }
.testi-body .turn { color: var(--primary-deep); font-weight: 700; }
.testi-foot { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 50% 46% 54% 50% / 52% 50% 50% 48%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--white);
  background: linear-gradient(150deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow-soft);
}
.testi:nth-child(2) .testi-avatar { background: linear-gradient(150deg, var(--secondary), #B89FD6); }
.testi:nth-child(3) .testi-avatar { background: linear-gradient(150deg, var(--accent), #8FBEDC); }
.testi-meta strong { display: block; color: var(--ink); font-weight: 800; font-size: 0.96rem; }
.testi-meta span { font-size: 0.82rem; color: var(--text-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow var(--ease) .35s;
}
.faq-item.active { box-shadow: var(--shadow-lift); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1.1rem, 2.5vw, 1.6rem);
  font-family: var(--font-heading); font-size: var(--step-1); font-weight: 600; color: var(--ink);
  min-height: 56px;
}
.faq-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(242,169,160,0.18); color: var(--primary-deep); font-size: 1.4rem; font-weight: 400; transition: transform var(--ease) .4s, background var(--ease) .3s; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(135deg); background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--ease) .45s; }
.faq-answer-inner { padding: 0 clamp(1.1rem, 2.5vw, 1.6rem) clamp(1.1rem, 2.4vw, 1.5rem); color: var(--text-soft); font-size: 1rem; }

/* ==========================================================================
   AGENDAMENTO / CTA
   ========================================================================== */
.cta-recap { max-width: 60ch; margin: 0 auto var(--space-lg); text-align: center; }
.cta-recap h2 { font-size: var(--step-3); font-weight: 500; }
.cta-recap h2 .em { font-style: italic; color: var(--primary-deep); }
.cta-recap p { margin-top: var(--space-sm); color: var(--text-soft); font-size: var(--step-1); font-weight: 400; }

.invest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-md); margin-bottom: var(--space-lg); }
.invest-card {
  position: relative;
  background: rgba(255,255,255,0.78);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
  transition: transform var(--ease) .4s, box-shadow var(--ease) .4s;
}
.invest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.invest-card.featured { box-shadow: var(--shadow-lift), inset 0 0 0 2.5px rgba(242,169,160,0.7); }
.invest-tag { display: inline-block; font-family: var(--font-hand); font-size: 1.1rem; color: var(--primary-deep); margin-bottom: 0.4rem; }
.invest-card h3 { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.5rem; }
.invest-card p { font-size: 0.94rem; color: var(--text-soft); margin-bottom: var(--space-sm); }
.invest-price { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 600; color: var(--ink); }
.invest-price small { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-deep); margin-top: 0.2rem; }

.cta-final { text-align: center; }
.cta-loc { margin-top: var(--space-sm); font-size: 0.92rem; color: var(--text-soft); display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-loc svg { width: 18px; height: 18px; color: var(--primary-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; padding-block: var(--space-xl) var(--space-lg); color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.footer-brand .nav-logo { margin-bottom: var(--space-sm); }
.footer-brand p { color: var(--text-soft); max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col li { font-size: 0.94rem; color: var(--text-soft); }
.footer-col a:hover { color: var(--primary-deep); }
.footer-contact li { display: flex; align-items: center; gap: 0.55rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--primary-deep); flex-shrink: 0; }
.footer-bottom {
  border-top: 1.5px dashed rgba(214,199,232,0.8);
  padding-top: var(--space-md);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-sm);
  font-size: 0.85rem; color: var(--text-soft);
}
.footer-bottom a { color: var(--primary-deep); font-weight: 700; }

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */
.wa-fab {
  position: fixed; z-index: 90;
  right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem);
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50% 46% 54% 50% / 50% 54% 46% 50%;
  background: linear-gradient(150deg, #5fc77f, #3aa85f);
  box-shadow: 0 18px 44px -14px rgba(58, 168, 95, 0.7);
  transition: transform var(--ease) .35s;
}
.wa-fab:hover { transform: scale(1.08) rotate(-4deg); }
.wa-fab svg { width: 32px; height: 32px; color: #fff; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(95,199,127,0.55); animation: wa-pulse 2.6s var(--ease) infinite; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(95,199,127,0.5); } 70%,100% { box-shadow: 0 0 0 20px rgba(95,199,127,0); } }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: var(--space-lg); }
  .timeline::before { display: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-2);
    background-image:
      radial-gradient(60% 40% at 100% 0%, rgba(214,199,232,0.4), transparent 60%),
      radial-gradient(60% 40% at 0% 100%, rgba(242,169,160,0.3), transparent 60%);
    box-shadow: -20px 0 60px -20px rgba(90,68,86,0.4);
    transform: translateX(100%);
    transition: transform var(--ease) .45s;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.nav-cta) { font-size: 1.3rem; font-family: var(--font-heading); color: var(--ink); }
  .nav-cta { font-size: 1rem; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-note { left: 0; max-width: 11rem; font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
