/* ============================================================
   ERIK MUTARELLI MOLNARY — PSICOLOGIA
   style.css — Identidade visual: terrosos, marrom, verde suave
   ============================================================ */

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  /* ── Paleta principal ── */
  --c-bg:           #F6F1EA;   /* off-white quente */
  --c-bg-alt:       #EDE4D6;   /* areia suave */
  --c-bg-warm:      #E4D8C8;   /* bege natural */
  --c-bg-dark:      #2B2118;   /* marrom café profundo */
  --c-bg-dark-mid:  #3A2C20;   /* marrom intermediário */

  --c-brown:        #4A3728;   /* marrom quente sofisticado */
  --c-brown-deep:   #2B2118;   /* marrom profundo */
  --c-brown-mid:    #6B4F3A;   /* marrom médio */
  --c-brown-light:  #9A7B65;   /* marrom claro */

  --c-olive:        #4E5B47;   /* verde oliva escuro */
  --c-olive-mid:    #6E7A66;   /* verde musgo suave */
  --c-olive-light:  #8A9880;   /* verde musgo claro */

  --c-gold:         #B89B72;   /* dourado fosco */
  --c-gold-light:   #D4BC98;   /* dourado suave */
  --c-gold-warm:    #C8A87E;   /* dourado quente */

  --c-text:         #2E2A26;   /* grafite quente */
  --c-text-mid:     #5C4E44;   /* marrom médio texto */
  --c-text-soft:    #8C7E74;   /* marrom suave texto */
  --c-text-light:   #F0E8DC;   /* texto claro p/ fundos escuros */

  --c-border:       #D4C8BA;   /* borda neutra */
  --c-border-soft:  #E8DFD2;   /* borda suave */

  /* Tipografia */
  --f-serif:  'Cormorant Garamond', 'Georgia', serif;
  --f-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Escala tipo */
  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;
  --t-2xl:  2.25rem;
  --t-3xl:  3rem;
  --t-4xl:  3.75rem;
  --t-5xl:  4.75rem;

  /* 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:      1160px;
  --max-w-text: 680px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Sombras quentes */
  --shadow-sm: 0 1px 4px rgba(43,33,24,0.06), 0 1px 2px rgba(43,33,24,0.04);
  --shadow-md: 0 4px 18px rgba(43,33,24,0.09), 0 2px 6px rgba(43,33,24,0.05);
  --shadow-lg: 0 12px 44px rgba(43,33,24,0.11), 0 4px 18px rgba(43,33,24,0.07);
  --shadow-warm: 0 8px 32px rgba(74,55,40,0.15);

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   180ms;
  --t-base:   320ms;
  --t-slow:   500ms;
  --t-slower: 700ms;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── SECTION SHARED ────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.section-eyebrow--light { color: var(--c-gold-light); }

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.section-title em {
  font-style: italic;
  color: var(--c-brown);
}

.section-desc {
  max-width: 560px;
  color: var(--c-text-mid);
  margin-top: var(--sp-5);
  font-size: var(--t-md);
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-header .section-desc { margin-inline: auto; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition:
    background var(--t-base) var(--ease),
    color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn__icon { flex-shrink: 0; }

/* Primário — marrom sofisticado */
.btn--primary {
  background: var(--c-brown);
  color: var(--c-text-light);
  border: 1.5px solid transparent;
}
.btn--primary:hover {
  background: var(--c-brown-mid);
  box-shadow: 0 6px 22px rgba(74,55,40,0.28);
  transform: translateY(-1px);
}

/* Ghost — borda neutra */
.btn--ghost {
  background: transparent;
  color: var(--c-text-light);
  border: 1.5px solid rgba(240,232,220,0.35);
}
.btn--ghost:hover {
  border-color: var(--c-text-light);
  background: rgba(240,232,220,0.08);
}

/* Ghost claro sobre fundo escuro */
.btn--ghost-light {
  background: transparent;
  color: var(--c-text-light);
  border: 1.5px solid rgba(240,232,220,0.3);
}
.btn--ghost-light:hover {
  border-color: var(--c-gold-light);
  color: var(--c-gold-light);
  background: rgba(184,155,114,0.08);
}

/* Outline — verde oliva */
.btn--outline {
  background: transparent;
  color: var(--c-olive);
  border: 1.5px solid var(--c-olive);
}
.btn--outline:hover {
  background: var(--c-olive);
  color: var(--c-bg);
}

.btn--large { padding: 1.1rem 2.2rem; font-size: var(--t-base); }
.btn--full  { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-slower) var(--ease-out),
    transform var(--t-slower) var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity var(--t-slower) var(--ease-out),
    transform var(--t-slower) var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity var(--t-slower) var(--ease-out),
    transform var(--t-slower) var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-up--delay-1 { transition-delay: 120ms; }
.reveal-up--delay-2 { transition-delay: 240ms; }
.reveal-up--delay-3 { transition-delay: 360ms; }
.reveal-up--delay-4 { transition-delay: 480ms; }

/* ── HEADER ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition:
    background var(--t-slow) var(--ease),
    box-shadow var(--t-slow) var(--ease);
}
.header.scrolled {
  background: rgba(43,33,24,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(240,232,220,0.07);
}

.header__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--f-serif);
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--c-text-light);
  letter-spacing: 0.01em;
}
.logo__title {
  font-family: var(--f-sans);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 400;
  color: rgba(240,232,220,0.7);
  letter-spacing: 0.02em;
  transition: color var(--t-fast) var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--c-text-light); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 0.6rem 1.25rem;
  background: var(--c-gold);
  color: var(--c-brown-deep) !important;
  border-radius: var(--r-sm);
  font-weight: 500;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--c-gold-light);
  color: var(--c-brown-deep) !important;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 10;
}
.menu-btn__line {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-text-light);
  border-radius: 2px;
  transition:
    transform var(--t-base) var(--ease),
    opacity var(--t-base) var(--ease);
}
.header__menu-btn.open .menu-btn__line:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.header__menu-btn.open .menu-btn__line:nth-child(2) { opacity: 0; }
.header__menu-btn.open .menu-btn__line:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--sp-6) var(--sp-24);
  overflow: hidden;
  background-color: var(--c-bg-dark);
}

/* Fundo composto — imagem hero + overlay marrom orgânico */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(107,79,58,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 15% 80%, rgba(78,91,71,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(43,33,24,0.62) 0%, transparent 80%),
    linear-gradient(165deg, rgba(58,44,32,0.82) 0%, rgba(43,33,24,0.88) 50%, rgba(36,27,19,0.92) 100%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero__orb--1 {
  width: 55vw; height: 55vw;
  max-width: 680px; max-height: 680px;
  top: -18%; right: -12%;
  background: radial-gradient(circle, rgba(184,155,114,0.14) 0%, transparent 70%);
}
.hero__orb--2 {
  width: 45vw; height: 45vw;
  max-width: 560px; max-height: 560px;
  bottom: -12%; left: -8%;
  background: radial-gradient(circle, rgba(78,91,71,0.18) 0%, transparent 70%);
}

/* Grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Linha decorativa horizontal */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(43,33,24,0.6));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--f-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--c-gold);
  opacity: 0.5;
}

.hero__headline {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5.5vw, var(--t-5xl));
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #F0E8DC;
  margin-bottom: var(--sp-6);
}
.hero__headline em {
  font-style: italic;
  color: var(--c-gold-light);
}

.hero__sub {
  font-size: clamp(var(--t-base), 1.8vw, var(--t-lg));
  color: rgba(240,232,220,0.62);
  line-height: 1.75;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Zenklub link no hero */
.hero__zenklub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.hero__zenklub-label {
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  color: rgba(240,232,220,0.4);
  text-transform: lowercase;
}
.hero__zenklub-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--t-base) var(--ease), transform var(--t-fast) var(--ease);
  filter: brightness(0) invert(1);
}
.hero__zenklub-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.hero__zenklub-logo { height: 22px; width: auto; display: block; }

/* Zenklub no contato */
.contact__detail--zenklub a { color: var(--c-brown); transition: color var(--t-fast) var(--ease); }
.contact__detail--zenklub a:hover { color: var(--c-brown-mid); }
.contact__zenklub-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  filter: invert(40%) sepia(30%) saturate(500%) hue-rotate(350deg) brightness(85%);
}

/* Indicador scroll */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
}
.scroll-hint__line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-hint__text {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.35);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50%       { opacity: 1;    transform: scaleY(1); }
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding-block: var(--sp-32);
  background-color: var(--c-bg);
  position: relative;
}

/* Linha decorativa top */
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--c-bg-dark), transparent);
  opacity: 0.15;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about__frame {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 380px;
  margin-inline: auto;
}
.about__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #EDE4D6, #DCCDBD);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--r-lg);
}

.about__frame-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--c-gold);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.3;
}

/* Segundo elemento decorativo */
.about__frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 48px; height: 48px;
  border-top: 1.5px solid var(--c-brown-light);
  border-left: 1.5px solid var(--c-brown-light);
  border-radius: 4px 0 0 0;
  opacity: 0.4;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  color: var(--c-text-mid);
  font-size: var(--t-md);
  line-height: 1.8;
  margin-block: var(--sp-6);
}

.about__interests {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
/* Nome do profissional — headline da seção Sobre */
.about__name {
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-brown);
  margin-bottom: var(--sp-3);
}

/* Frase poética — subtítulo imediato */
.about__tagline {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-lg), 2vw, var(--t-2xl));
  font-weight: 300;
  line-height: 1.3;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-5);
}
.about__tagline em {
  font-style: italic;
  color: var(--c-brown-mid);
}

/* CRP badge — logo após headline + tagline */
.about__crp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: rgba(184,155,114,0.07);
}
.crp__label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding-right: var(--sp-3);
  border-right: 1px solid var(--c-border);
  line-height: 1;
}
.crp__number {
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--c-text-mid);
  letter-spacing: 0.06em;
}

.interest-tag {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--c-olive-mid);
  border: 1px solid rgba(110,122,102,0.3);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  background: rgba(110,122,102,0.07);
  transition:
    border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
}
.interest-tag:hover {
  border-color: var(--c-olive);
  background: rgba(78,91,71,0.12);
  color: var(--c-olive);
}

/* ── HELP (cards) ──────────────────────────────────────────── */
.help {
  padding-block: var(--sp-32);
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg-warm) 100%);
  position: relative;
}

.help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.help__card {
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

/* Acento superior sutil */
.help__card::before {
  content: '';
  position: absolute;
  top: 0; left: var(--sp-6); right: var(--sp-6);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.help__card:hover { border-color: rgba(184,155,114,0.4); box-shadow: var(--shadow-warm); transform: translateY(-5px); }
.help__card:hover::before { opacity: 1; }

.help__card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(184,155,114,0.14), rgba(184,155,114,0.07));
  border: 1px solid rgba(184,155,114,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.help__card:hover .help__card-icon {
  background: linear-gradient(135deg, rgba(74,55,40,0.12), rgba(74,55,40,0.06));
  color: var(--c-brown);
}

.help__card-title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
}
.help__card-text {
  font-size: var(--t-sm);
  color: var(--c-text-mid);
  line-height: 1.7;
  flex: 1;
}

/* ── DIFERENCIAIS ──────────────────────────────────────────── */
.diff {
  padding-block: var(--sp-32);
  background-color: var(--c-bg);
  position: relative;
  overflow: hidden;
}

/* Textura de fundo sutil */
.diff::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(78,91,71,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.diff__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
  position: relative;
  z-index: 1;
}

.diff__lead {
  font-size: var(--t-md);
  color: var(--c-text);
  line-height: 1.8;
  margin-top: var(--sp-6);
}
.diff__body {
  font-size: var(--t-sm);
  color: var(--c-text-mid);
  line-height: 1.85;
  margin-top: var(--sp-4);
}

.diff__list {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-8);
}
.diff__item {
  display: flex;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--c-border-soft);
}
.diff__item:first-child { padding-top: 0; }
.diff__item:last-child  { border-bottom: none; }

.diff__item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.diff__item-title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--c-brown);
  margin-bottom: var(--sp-2);
}
.diff__item-text {
  font-size: var(--t-sm);
  color: var(--c-text-mid);
  line-height: 1.7;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process {
  padding-block: var(--sp-32);
  background: linear-gradient(180deg, var(--c-bg-dark) 0%, #332519 100%);
  position: relative;
  overflow: hidden;
}

/* Orb de fundo */
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(184,155,114,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(78,91,71,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Títulos claros sobre fundo escuro */
.process .section-eyebrow { color: var(--c-gold); }
.process .section-title   { color: var(--c-text-light); }
.process .section-title em { color: var(--c-gold-light); }
.process .section-desc    { color: rgba(240,232,220,0.55); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(var(--sp-8) + 1px);
  right: calc(var(--sp-8) + 1px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,155,114,0.3), rgba(184,155,114,0.3), transparent);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}

.process__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(43,33,24,0.8);
  border: 1.5px solid rgba(184,155,114,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--c-gold);
  flex-shrink: 0;
  transition:
    border-color var(--t-base) var(--ease),
    background var(--t-base) var(--ease),
    color var(--t-base) var(--ease);
}
.process__step:hover .process__step-num {
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: var(--c-bg-dark);
}

.process__step-title {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--c-text-light);
  line-height: 1.3;
}
.process__step-text {
  font-size: var(--t-sm);
  color: rgba(240,232,220,0.5);
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  padding-block: var(--sp-32);
  background-color: var(--c-bg-alt);
}
.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border);
}
.faq__item { border-bottom: 1px solid var(--c-border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-text);
  text-align: left;
  transition: color var(--t-fast) var(--ease);
  background: none; border: none; cursor: pointer;
}
.faq__question:hover { color: var(--c-brown); }

.faq__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  flex-shrink: 0;
  position: relative;
  transition:
    border-color var(--t-base) var(--ease),
    background var(--t-base) var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-text-mid);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.faq__icon::before { width: 8px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1px; height: 8px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq__question[aria-expanded="true"] .faq__icon {
  border-color: var(--c-brown);
  background: var(--c-brown);
}
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: var(--c-bg); }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__answer {
  padding-bottom: var(--sp-6);
  color: var(--c-text-mid);
  font-size: var(--t-base);
  line-height: 1.8;
  overflow: hidden;
}
.faq__answer[hidden] { display: none; }
.faq__answer.animating { display: block; }

/* ── CTA FINAL ─────────────────────────────────────────────── */
.cta-final {
  position: relative;
  padding-block: var(--sp-32);
  overflow: hidden;
  background: linear-gradient(155deg, #3A2C20 0%, #2B2118 50%, #241B13 100%);
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-final__orb {
  position: absolute;
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(107,79,58,0.25) 0%,
    rgba(78,91,71,0.12) 40%,
    transparent 70%
  );
  filter: blur(80px);
}

.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.cta-final__title {
  font-family: var(--f-serif);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: 400;
  line-height: 1.2;
  color: #F0E8DC;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}
.cta-final__title em { font-style: italic; color: var(--c-gold-light); }

.cta-final__sub {
  color: rgba(240,232,220,0.55);
  font-size: var(--t-md);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}
.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Botão principal dourado sobre fundo escuro */
.cta-final .btn--primary {
  background: var(--c-gold);
  color: var(--c-bg-dark);
  border-color: transparent;
}
.cta-final .btn--primary:hover {
  background: var(--c-gold-light);
  box-shadow: 0 6px 24px rgba(184,155,114,0.35);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding-block: var(--sp-32);
  background-color: var(--c-bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-20);
  align-items: start;
}

.contact .section-title em { color: var(--c-brown); }

.contact__desc {
  color: var(--c-text-mid);
  font-size: var(--t-md);
  line-height: 1.8;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--c-text-mid);
  font-size: var(--t-sm);
}
.contact__detail svg { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.contact__detail a:hover { color: var(--c-brown); }

/* ── FORM ──────────────────────────────────────────────────── */
.contact__form-wrap {
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow:
    0 2px 8px rgba(43,33,24,0.05),
    0 8px 32px rgba(43,33,24,0.06);
}
.contact__form { display: flex; flex-direction: column; gap: var(--sp-5); }

.form__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form__label {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-mid);
}
.form__input {
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  color: var(--c-text);
  font-size: var(--t-base);
  line-height: 1.5;
  transition:
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--c-text-soft); }
.form__input:focus {
  background: var(--c-bg);
  border-color: var(--c-brown-light);
  box-shadow: 0 0 0 3px rgba(107,79,58,0.1);
}
.form__textarea { resize: vertical; min-height: 120px; }

.form__note {
  font-size: var(--t-xs);
  color: var(--c-text-soft);
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background-color: var(--c-bg-dark);
  background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(107,79,58,0.12) 0%, transparent 60%);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(240,232,220,0.08);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--sp-4);
}
.footer__logo .logo__name { color: var(--c-text-light); }
.footer__logo .logo__title { color: var(--c-gold); }

.footer__desc {
  font-size: var(--t-sm);
  color: rgba(240,232,220,0.45);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: var(--sp-6);
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: var(--c-gold-light);
  transition: color var(--t-fast) var(--ease);
}
.footer__wa:hover { color: var(--c-text-light); }

.footer__nav-title {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__nav-list a {
  font-size: var(--t-sm);
  color: rgba(240,232,220,0.45);
  transition: color var(--t-fast) var(--ease);
}
.footer__nav-list a:hover { color: var(--c-text-light); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: rgba(240,232,220,0.45);
  line-height: 1.6;
}
.footer__contact-list svg { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-list a { color: inherit; transition: color var(--t-fast) var(--ease); }
.footer__contact-list a:hover { color: var(--c-text-light); }

.footer__bottom {
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__copy  { font-size: var(--t-xs); color: rgba(240,232,220,0.28); }
.footer__credit { font-size: var(--t-xs); color: rgba(240,232,220,0.28); }
.footer__credit a { color: var(--c-gold); transition: color var(--t-fast) var(--ease); }
.footer__credit a:hover { color: var(--c-gold-light); }

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition:
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--c-bg-dark);
  color: var(--c-text-light);
  font-size: var(--t-xs);
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
  padding-block: var(--sp-32);
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(107,79,58,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(78,91,71,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials .section-eyebrow { color: var(--c-gold); }
.testimonials .section-title   { color: var(--c-text-light); }
.testimonials .section-title em { color: var(--c-gold-light); }
.testimonials .section-desc    { color: rgba(240,232,220,0.5); }

/* Carousel wrapper */
.carousel {
  position: relative;
  padding-bottom: var(--sp-12);

}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: grab;
  user-select: none;
   
}
.carousel__viewport:active { cursor: grabbing; }

.carousel__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;

}

/* Cards — 3 por vez no desktop */
.carousel__card {
  padding: 20px;
  flex: 0 0 calc((100% - 2 * var(--sp-5)) / 3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,232,220,0.1);
  border-radius: var(--r-lg);
  /* padding: var(--sp-8) var(--sp-7); */
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
}
.carousel__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,155,114,0.25);
}

/* Aspas decorativas */
.carousel__card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-6);
  font-family: var(--f-serif);
  font-size: 88px;
  line-height: 1;
  color: rgba(184,155,114,0.1);
  pointer-events: none;
  user-select: none;
}

/* Estrelas */
.testi__stars {
  color: var(--c-gold);
  font-size: 13px;
  letter-spacing: 3px;
  flex-shrink: 0;
}

/* Texto do depoimento */
.testi__text {
  font-style: normal;
  font-size: var(--t-sm);
  color: rgba(240,232,220,0.65);
  line-height: 1.8;
  flex: 1;
  /* Limita a 8 linhas, com fade na base para textos longos */
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi__text em {
  font-style: italic;
  color: rgba(240,232,220,0.8);
}
.testi__text p { margin: 0; }

/* Nome do autor */
.testi__author {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  font-style: normal;
  color: var(--c-gold-light);
  flex-shrink: 0;
  display: block;
  border-top: 1px solid rgba(240,232,220,0.08);
  padding-top: var(--sp-4);
}

/* Botões prev / next */
.carousel__btn {
  position: absolute;
  top: calc(50% - var(--sp-6));
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(43,33,24,0.85);
  border: 1.5px solid rgba(240,232,220,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,232,220,0.7);
  cursor: pointer;
  z-index: 2;
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
  backdrop-filter: blur(8px);
}
.carousel__btn:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-bg-dark);
  transform: translateY(-50%) scale(1.08);
}
.carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.carousel__btn--prev { left: -22px; }
.carousel__btn--next { right: -22px; }

/* Dots */
.carousel__dots {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(240,232,220,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t-base) var(--ease),
              width var(--t-base) var(--ease),
              border-radius var(--t-base) var(--ease);
}
.carousel__dot.active {
  background: var(--c-gold);
  width: 22px;
  border-radius: 3px;
}
.carousel__dot:hover:not(.active) {
  background: rgba(240,232,220,0.4);
}

/* Responsive carousel cards */
@media (max-width: 900px) {
  .carousel__card {
    flex: 0 0 calc((100% - var(--sp-5)) / 2);
  }
  .carousel__btn--prev { left: -16px; }
  .carousel__btn--next { right: -16px; }
}
@media (max-width: 560px) {
  .carousel__card {
    flex: 0 0 100%;
  }
  .carousel__btn--prev { left: 0; }
  .carousel__btn--next { right: 0; }
  .carousel__btn { top: auto; bottom: calc(var(--sp-12) + var(--sp-2)); transform: none; }
  .carousel__btn:hover { transform: scale(1.08); }
}

/* ── UTILITY ───────────────────────────────────────────────── */
.br-desktop { display: none; }
@media (min-width: 1024px) { .br-desktop { display: block; } }

/* ── FOCUS VISIBLE ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── RESPONSIVE — TABLET ───────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --t-5xl: 3.5rem; --t-4xl: 3rem; }

  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__steps::before { display: none; }
  .diff__inner,
  .about__inner,
  .contact__inner { gap: var(--sp-12); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE — MOBILE ───────────────────────────────────── */
@media (max-width: 768px) {
  :root { --t-5xl: 2.75rem; --t-4xl: 2.4rem; --t-3xl: 2rem; --t-2xl: 1.75rem; }

  .container { padding-inline: var(--sp-5); }

  /* Header mobile */
  .header__nav {
    position: fixed;
    inset: 0;
    /*
      NÃO usar backdrop-filter aqui: quando o header pai tem backdrop-filter,
      elementos position:fixed filhos ficam contidos dentro do bounding box
      do pai (72px) em vez de cobrir a tela toda.
      Usamos background sólido para garantir cobertura total.
    */
    background: rgba(43,33,24,0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-slow) var(--ease);
    /* z-index alto no root stacking context — o header NÃO tem backdrop-filter
       quando menu-open, então este elemento participa do root context */
    z-index: 980;
  }
  .header__nav.open {
    pointer-events: all;
    opacity: 1;
  }

  /*
    CRÍTICO: remover backdrop-filter quando o menu está aberto.
    backdrop-filter cria um novo containing block para position:fixed,
    prendendo o overlay nav dentro dos 72px do header.
    Com backdrop-filter: none, o nav position:fixed cobre o viewport inteiro.
  */
  .header.menu-open {
    z-index: 990;
    background: rgba(43,33,24,0.97) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--sp-8);
    text-align: center;
  }
  .nav__link {
    font-size: var(--t-xl);
    font-family: var(--f-serif);
    font-weight: 400;
    color: rgba(240,232,220,0.8);
  }
  .nav__link--cta {
    padding: 0.75rem 2rem;
    border-radius: var(--r-sm);
    font-size: var(--t-base) !important;
    font-family: var(--f-sans) !important;
  }
  /*
    z-index: 999 garante que o botão X fique acima do overlay nav (980)
    e acima de qualquer contexto de empilhamento criado pelo header pai.
  */
  .header__menu-btn { display: flex; position: relative; z-index: 999; }

  /* Sections */
  .about__inner,
  .diff__inner,
  .contact__inner { grid-template-columns: 1fr; gap: var(--sp-10); }

  .about__visual  { order: -1; }
  .about__frame   { max-width: 280px; }
  .about__frame-deco,
  .about__frame::before { display: none; }

  .help__grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  .process__steps { grid-template-columns: 1fr; gap: var(--sp-6); }
  .process__step  {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .process__step-num { flex-shrink: 0; }

  .hero { padding: 100px var(--sp-5) var(--sp-20); }
  .hero__headline { font-size: 2.4rem; }
  .hero__actions  { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .cta-final__actions .btn { justify-content: center; }

  .contact__form-wrap { padding: var(--sp-6); }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner  { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__brand  { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; gap: var(--sp-2); }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .help__card { padding: var(--sp-6) var(--sp-5); }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}
