/* =========================================================
   Acolhe Demo — Landing Page Design System
   Paleta: terracota · verde-salva · off-white · warm dark
   Tipografia: Playfair Display + DM Sans
   ========================================================= */

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* Cores */
  --c-terracota:     #C1604A;
  --c-terracota-dk:  #A04D3B;
  --c-terracota-lt:  #F2E4DF;
  --c-sage:          #5B7563;
  --c-sage-lt:       #8FAF9B;
  --c-off-white:     #F5F0E8;
  --c-beige:         #E8DFD0;
  --c-beige-dk:      #D6C9B6;
  --c-dark:          #2A1F1A;
  --c-dark-soft:     #3D2E27;
  --c-text:          #3D2E27;
  --c-text-muted:    #7A6A62;
  --c-border:        rgba(42,31,26,.12);

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Escala fluida */
  --text-xs:   clamp(0.72rem,  1.5vw,  0.8rem);
  --text-sm:   clamp(0.875rem, 2vw,    1rem);
  --text-base: clamp(1rem,     2.5vw,  1.125rem);
  --text-lg:   clamp(1.1rem,   3vw,    1.35rem);
  --text-xl:   clamp(1.35rem,  3.5vw,  1.75rem);
  --text-2xl:  clamp(1.75rem,  4.5vw,  2.5rem);
  --text-3xl:  clamp(2.25rem,  6vw,    3.5rem);
  --text-hero: clamp(2.8rem,   7.5vw,  5.5rem);
  --text-stat: clamp(3.5rem,   8vw,    6rem);

  /* Espaçamento */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w:      1200px;
  --nav-h:      72px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(42,31,26,.07);
  --shadow:     0 4px 20px rgba(42,31,26,.10);
  --shadow-md:  0 8px 32px rgba(42,31,26,.13);
  --shadow-lg:  0 16px 48px rgba(42,31,26,.16);

  /* Transição */
  --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ─── Base ───────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background: var(--c-off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -.01em;
}

h1 { font-size: var(--text-hero); font-weight: 900; }
h2 { font-size: var(--text-3xl);  font-weight: 700; }
h3 { font-size: var(--text-xl);   font-weight: 700; }
h4 { font-size: var(--text-lg);   font-weight: 600; }

p  {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.72;
  color: var(--c-text-muted);
}

em { font-style: italic; color: var(--c-terracota); }
strong { font-weight: 600; color: var(--c-text); }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── Utilitários de reveal ─────────────────────────────── */
/* Só esconde elementos quando JS confirmar execução (html.js-ready) */
/* Sem JS: conteúdo fica visível normalmente (progressive enhancement) */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
html.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
html.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js-ready .reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
html.js-ready .reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
html.js-ready .reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
html.js-ready .reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; }
html.js-ready .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ─── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-sage);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--c-sage);
  border-radius: 2px;
}
.eyebrow-light { color: var(--c-sage-lt); }
.eyebrow-light::before { background: var(--c-sage-lt); }

/* ─── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: all var(--t);
  border: 2px solid transparent;
  margin: 5px;
}
.btn-primary {
  background: var(--c-terracota);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-terracota-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,96,74,.3);
}
.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: var(--c-off-white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--c-terracota);
}
.btn-white:hover {
  background: var(--c-off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.25);
}
.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-base); }

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--c-off-white);
  transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border), var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-dark);
  flex-shrink: 0;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo small {
  align-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--c-terracota); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-link-pro {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t);
}
.nav-link-pro:hover { color: var(--c-sage); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: all var(--t);
}

/* Drawer mobile */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-off-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-dark);
  transition: color var(--t);
}
.nav-drawer a:hover { color: var(--c-terracota); }
.drawer-close {
  position: absolute;
  top: calc(var(--nav-h) / 2 - 12px);
  right: clamp(1.25rem, 5vw, 2.5rem);
  font-size: 1.5rem;
  color: var(--c-text-muted);
  transition: color var(--t);
}
.drawer-close:hover { color: var(--c-terracota); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  background: var(--c-off-white);
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
  padding-inline: 25px;
}

/* Coluna texto */
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: var(--sp-5); }
.hero-title {
  margin-bottom: var(--sp-6);
  max-width: 14ch;
}
.hero-title em {
  display: block;
  font-size: 88%;
}
.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-text-muted);
  max-width: 42ch;
  margin-bottom: var(--sp-10);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
  padding: var(--sp-5) var(--sp-6);
  background: rgba(42,31,26,.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--c-terracota);
}
.hero-stat {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero-stat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-terracota);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* Coluna visual */
.hero-visual {
  position: relative;
  min-height: 0;
  min-width: 0;
}

/* Foto da psicóloga */
.hero-photo {
  position: absolute;
  inset-block: 0;
  left: 48%;
  transform: translateX(-50%);
  width: min(40vw, 560px);
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  border-radius: 180px 180px 28px 28px;
  filter: drop-shadow(0 12px 40px rgba(42,31,26,.15));
  z-index: 2;
}

/* Floating confirmation card */
.hero-float-card {
  position: absolute;
  bottom: 80px;
  left: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-width: 240px;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-terracota), var(--c-terracota-dk));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.card-info { flex: 1; min-width: 0; }
.card-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-status {
  font-size: var(--text-xs);
  color: var(--c-sage);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-sage);
}
.card-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-terracota-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Second floating element — avatar stack */
.hero-float-count {
  position: absolute;
  top: 60px;
  right: 10px;
  background: var(--c-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-5);
  animation: float 8s ease-in-out infinite .5s;
  z-index: 3;
}
.float-count-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-terracota);
  line-height: 1;
}
.float-count-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  font-weight: 400;
  margin-top: 2px;
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}
.section-header {
  margin-bottom: clamp(var(--sp-12), 5vw, var(--sp-20));
}
.section-header.centered { text-align: center; }
.section-title { margin-bottom: var(--sp-4); }
.section-sub {
  font-size: var(--text-lg);
  max-width: 52ch;
  font-weight: 300;
}
.section-header.centered .section-sub {
  margin-inline: auto;
}

/* ─── PROBLEMA (dark) ────────────────────────────────────── */
#problema {
  background: var(--c-dark);
}
#problema .section-title { color: var(--c-off-white); }
#problema .section-sub   { color: rgba(245,240,232,.55); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  align-items: stretch;
}
.problem-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 48px rgba(0,0,0,.14);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.problem-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-terracota);
  border-radius: 0 2px 2px 0;
}
.problem-card:hover {
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(255,255,255,.05);
  border-color: rgba(193,96,74,.34);
  transform: translateY(-3px);
}
.problem-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.3vw, 5.25rem);
  font-weight: 900;
  color: var(--c-terracota);
  line-height: .92;
  min-height: 5.1rem;
  margin-bottom: var(--sp-4);
  letter-spacing: -.02em;
}
.problem-number-phrase {
  width: 100%;
  font-size: clamp(2.6rem, 4.2vw, 3.85rem);
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}
.problem-number-phrase span {
  display: inline-block;
}
.problem-label {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-off-white);
  line-height: 1.42;
  min-height: 3.1rem;
  margin-bottom: var(--sp-3);
}
.problem-desc {
  font-size: var(--text-sm);
  color: rgba(245,240,232,.60);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.problem-source {
  margin-top: auto;
  font-size: var(--text-xs);
  color: rgba(245,240,232,.38);
  font-style: italic;
}

/* ─── PILARES (branco) ───────────────────────────────────── */
#pilares { background: #fff; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-6);
}
.pillar-card {
  background: var(--c-off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border-top: 3px solid var(--c-terracota);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,117,99,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--c-sage);
  box-shadow: inset 0 0 0 1px rgba(91,117,99,.08);
}
.pillar-icon svg {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 2px 2px rgba(91,117,99,.12));
}
.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}
.pillar-desc {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ─── COMO FUNCIONA (bege) ───────────────────────────────── */
#como-funciona { background: var(--c-beige); }

.steps-wrapper {
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: var(--sp-4);
}
.step {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-terracota);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 4px 16px rgba(193,96,74,.3);
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}
.step-desc {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 24ch;
  margin-inline: auto;
}

/* Conector entre steps */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px; /* align with center of step-num */
}
.connector-svg { width: 60px; height: 24px; overflow: visible; }
.connector-path {
  fill: none;
  stroke: var(--c-terracota);
  stroke-width: 2;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease .3s;
}
.connector-path.animated { stroke-dashoffset: 0; }

/* ─── IMPACTO (dark) ─────────────────────────────────────── */
#impacto { background: var(--c-dark); }
#impacto .section-title { color: var(--c-off-white); }
#impacto .section-sub   { color: rgba(245,240,232,.55); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-2);
}
.impact-item {
  padding: var(--sp-8);
  text-align: center;
  position: relative;
}
.impact-item + .impact-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.impact-number {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 900;
  color: var(--c-terracota);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: var(--sp-3);
}
.impact-label {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-off-white);
  margin-bottom: var(--sp-2);
}
.impact-desc {
  font-size: var(--text-sm);
  color: rgba(245,240,232,.45);
}

/* ─── CTA FINAL (terracota) ──────────────────────────────── */
#cta-final {
  background: var(--c-terracota);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
#cta-final::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(42,31,26,.07);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.cta-inner .section-title { color: #fff; }
.cta-inner .section-sub   {
  color: rgba(255,255,255,.75);
  margin-inline: auto;
  max-width: 46ch;
}

/* Waitlist form */
.waitlist-form {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 480px;
  margin-inline: auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-field {
  width: 100%;
  padding: .9rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  transition: border-color var(--t), background var(--t);
  outline: none;
  -webkit-appearance: none;
}
.form-field::placeholder { color: rgba(255,255,255,.55); }
.form-field:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
}
.form-field option { background: var(--c-terracota-dk); color: #fff; }
.form-submit {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: var(--c-dark);
  color: var(--c-off-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.form-submit:hover {
  background: var(--c-dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,31,26,.25);
}
.form-feedback {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.8);
  text-align: center;
  min-height: 1.4em;
}
.form-feedback.error { color: #ffd0c8; }
.form-success {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: var(--sp-10) 0;
}
.form-success small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-top: var(--sp-3);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--c-dark);
  padding-block: var(--sp-12) var(--sp-8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: var(--sp-8);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-off-white);
  margin-bottom: var(--sp-4);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(245,240,232,.4);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,240,232,.35);
  margin-bottom: var(--sp-5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--c-sage-lt);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--c-off-white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(245,240,232,.25);
}
.footer-social {
  display: flex;
  gap: var(--sp-4);
}
.footer-social a {
  font-size: var(--text-sm);
  color: rgba(245,240,232,.35);
  transition: color var(--t);
}
.footer-social a:hover { color: var(--c-sage-lt); }

/* ─── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title { max-width: none; margin-inline: auto; }
  .hero-sub   { margin-inline: auto; }
  .hero-stats { justify-content: center; }
  .hero-ctas  { justify-content: center; }
  .hero-visual { height: 400px; margin-top: var(--sp-8); }
  .hero-photo  {
    width: auto;
    height: 400px;
    left: 50%;
    top: auto;
    bottom: 0;
    object-fit: contain;
    border-radius: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .step-connector { transform: rotate(90deg); }
  .impact-item + .impact-item::before { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  .hero-visual { display: none; }
  .hero-grid { padding-block: var(--sp-12) var(--sp-16); }
  .hero-ctas { flex-direction: column; align-items: center; }

  .problem-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .impact-grid  { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-float-card, .hero-float-count { display: none; }
}
