/* =============================================================================
   Deisy Gerlach — Espelhadora da Alma · Terapia Integrativa Vibracional
   Direção: luminosa, feminina, premium. Aura vibracional 100% CSS (sem WebGL).
   Mobile-first. Respeita prefers-reduced-motion.
   ========================================================================== */

:root {
  /* base luminosa */
  --pearl:      #fbf6f4;   /* fundo principal (pérola quente) */
  --pearl-2:    #f4ece8;
  --cream:      #f6eee9;   /* superfícies */
  --ink:        #2a1d2b;   /* texto escuro (ameixa profunda) */
  --ink-soft:   #6c5a6e;   /* texto secundário */
  --line:       #ecdfe0;   /* divisórias */

  /* acentos vibracionais da marca */
  --rose:       #e0568f;   /* magenta da Deisy */
  --rose-deep:  #c23a78;
  --violet:     #8a52d8;   /* violeta */
  --gold:       #c9962f;   /* dourado */
  --gold-soft:  #e3bd6a;

  /* superfícies escuras (faixas imersivas) */
  --plum:       #1c0f24;   /* ameixa noturna */
  --plum-2:     #2a1533;

  --grad-aura: conic-gradient(from 200deg, #e0568f, #8a52d8, #c9962f, #e0568f);
  --grad-cta:  linear-gradient(135deg, #e3bd6a 0%, #c9962f 45%, #b87f24 100%);

  --radius:   22px;
  --radius-sm:14px;
  --shadow:   0 24px 60px -28px rgba(120, 40, 90, .35);
  --shadow-lg:0 40px 90px -30px rgba(80, 25, 70, .45);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.12; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

/* ----------------------------------------------------------------- aura field */
.aura-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .42;
  will-change: transform;
}
.orb--rose   { width: 46vw; height: 46vw; top: -8vw;  left: -10vw; background: radial-gradient(circle, var(--rose), transparent 70%); animation: drift1 22s ease-in-out infinite; }
.orb--violet { width: 40vw; height: 40vw; top: 35vh; right: -12vw; background: radial-gradient(circle, var(--violet), transparent 70%); animation: drift2 28s ease-in-out infinite; }
.orb--gold   { width: 34vw; height: 34vw; bottom: -10vw; left: 20vw;  background: radial-gradient(circle, var(--gold-soft), transparent 70%); opacity: .3; animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(6vw,5vh)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-5vw,-4vh)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(4vw,-5vh)} }

/* ----------------------------------------------------------------- typography helpers */
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 1rem;
}
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow::before { content: "✦"; margin-right: .55em; color: var(--gold); }

.section-title { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-sub { color: var(--ink-soft); margin-top: 1rem; font-size: 1.06rem; }

/* ----------------------------------------------------------------- buttons */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .3s, color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.04rem; }

.btn--gold { background: var(--grad-cta); color: #fff; box-shadow: 0 14px 30px -10px rgba(201,150,47,.6); }
.btn--gold:hover { box-shadow: 0 20px 40px -10px rgba(201,150,47,.75); }

.btn--ghost { background: rgba(255,255,255,.5); color: var(--ink); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-deep); }

.btn--dark { background: var(--ink); color: var(--pearl); }
.btn--dark:hover { background: var(--rose-deep); }

/* ----------------------------------------------------------------- nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: .65rem 0;
}
.nav--solid {
  background: rgba(251,246,244,.82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(120,40,90,.4);
}
.nav__inner { display: flex; align-items: center; gap: 1rem; max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand__mark { display: grid; place-items: center; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.brand__sub { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); }

.nav__links { display: none; gap: 1.6rem; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .2rem 0; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad-cta); transition: width .3s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; }

.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(251,246,244,.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
  animation: fadeIn .3s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); }
.mobile-menu .btn { margin-top: 1rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; padding: 8.5rem 0 3.5rem; }
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; display: grid; gap: 2.5rem; align-items: center; }
.hero__copy { text-align: center; }
.hero__title { font-size: clamp(2.4rem, 8vw, 3.6rem); letter-spacing: -.02em; }
.hero__title em { font-style: italic; color: transparent; background: linear-gradient(120deg, var(--rose), var(--violet)); -webkit-background-clip: text; background-clip: text;
  /* itálico + clip de texto recorta a última vogal; um respiro à direita resolve */
  padding-right: .12em; margin-right: -.12em; }
.hero__lede { margin: 1.5rem auto 0; max-width: 540px; color: var(--ink-soft); font-size: 1.1rem; }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2rem; margin-top: 2.6rem; }
.hero__trust li { display: flex; flex-direction: column; align-items: center; max-width: 150px; }
.hero__trust strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--rose-deep); }
.hero__trust span { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

/* portrait + halo */
.hero__portrait { position: relative; width: min(78vw, 380px); margin: 0 auto; aspect-ratio: 1; order: -1; }
.halo {
  position: absolute; inset: -12%; border-radius: 50%;
  background: var(--grad-aura); filter: blur(26px); opacity: .55;
  animation: spin 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .halo, .brand__mark, .orb { animation: none; } }
.portrait-frame {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  border: 6px solid rgba(255,255,255,.85); box-shadow: var(--shadow-lg);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-badge {
  position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  background: rgba(255,255,255,.92); color: var(--ink); backdrop-filter: blur(6px);
  font-size: .8rem; font-weight: 600; padding: .5rem 1rem; border-radius: 100px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.portrait-badge svg { color: var(--rose-deep); }

.hero__scroll { display: none; }

/* ----------------------------------------------------------------- marquee */
.marquee { overflow: hidden; padding: 1.1rem 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.4); }
.marquee__track { display: flex; align-items: center; gap: 2rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink); white-space: nowrap; }
.marquee .dot { color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ----------------------------------------------------------------- sobre */
.sobre { padding: 5.5rem 0; }
.sobre__grid { display: grid; gap: 2.6rem; align-items: center; }
.sobre__media { position: relative; }
.sobre__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.sobre__media-glow { position: absolute; inset: -8% -8% auto auto; width: 60%; height: 60%; background: var(--grad-aura); filter: blur(50px); opacity: .4; border-radius: 50%; z-index: 0; }
.sobre__copy p { color: var(--ink-soft); margin-top: 1.1rem; }
.sobre__copy p strong { color: var(--ink); }
.checks { margin: 1.6rem 0; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2rem; color: var(--ink); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--grad-cta);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 70% no-repeat;
}

/* ----------------------------------------------------------------- terapias */
.terapias { padding: 5.5rem 0; }
.cards { display: grid; gap: 1.4rem; }
.card {
  position: relative; background: rgba(255,255,255,.62); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.1rem 1.8rem; backdrop-filter: blur(8px);
  box-shadow: var(--shadow); overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-aura); opacity: 0; transition: opacity .4s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card__icon {
  display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(224,86,143,.14), rgba(138,82,216,.14)); color: var(--rose-deep);
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ----------------------------------------------------------------- faixa vibracional (escura) */
.vibe { position: relative; padding: 6rem 0; color: #fff; overflow: hidden; text-align: center; }
.vibe__bg { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(120% 90% at 50% 0%, #3a1c47 0%, var(--plum) 55%, #150a1c 100%); }
.vibe__bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-aura); opacity: .16; filter: blur(60px); }
.vibe__inner { max-width: 760px; }
.vibe__title { font-size: clamp(1.7rem, 4.5vw, 2.7rem); color: #fff; margin: 1.2rem 0; }
.vibe__text { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 2rem; }

/* pêndulo (radiestesia) */
.pendulum { display: inline-block; height: 64px; transform-origin: top center; animation: swing 3.4s ease-in-out infinite; }
.pendulum i { display: block; width: 1px; height: 46px; margin: 0 auto; background: linear-gradient(var(--gold-soft), rgba(227,189,106,.2)); }
.pendulum b { display: block; width: 12px; height: 18px; margin: 0 auto; border-radius: 0 0 50% 50%; background: var(--grad-cta); box-shadow: 0 0 16px rgba(227,189,106,.7); }
@keyframes swing { 0%,100%{transform:rotate(13deg)} 50%{transform:rotate(-13deg)} }
@media (prefers-reduced-motion: reduce) { .pendulum { animation: none; } }

/* ----------------------------------------------------------------- jornada */
.jornada { padding: 5.5rem 0; }
.steps { display: grid; gap: 1.4rem; counter-reset: s; }
.step {
  position: relative; background: rgba(255,255,255,.55); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 1.9rem 2rem; box-shadow: var(--shadow);
}
.step__num { font-family: var(--font-display); font-size: 2.6rem; color: transparent;
  background: linear-gradient(120deg, var(--rose), var(--violet)); -webkit-background-clip: text; background-clip: text; line-height: 1; }
.step h3 { font-size: 1.3rem; margin: .8rem 0 .5rem; }
.step p { color: var(--ink-soft); }

/* ----------------------------------------------------------------- depoimentos */
.vozes { padding: 5.5rem 0; }
.testi { max-width: 820px; margin: 0 auto; }
.testi__viewport { overflow: hidden; border-radius: var(--radius); }
.testi__track { display: flex; transition: transform .6s cubic-bezier(.5,0,.2,1); }
.testi__card {
  flex: 0 0 100%; padding: 2.8rem clamp(1.5rem, 5vw, 3.2rem); text-align: center;
  background: rgba(255,255,255,.6); border: 1px solid var(--line); backdrop-filter: blur(8px);
}
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: .4; color: var(--gold); display: block; height: 2rem; }
.testi blockquote { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-style: italic; color: var(--ink); margin: 1rem 0 1.4rem; line-height: 1.4; }
.testi cite { font-style: normal; font-weight: 600; color: var(--rose-deep); letter-spacing: .04em; }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.testi__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .25s, color .25s, transform .25s; }
.testi__btn:hover { background: var(--ink); color: var(--pearl); transform: translateY(-2px); }
.testi__dots { display: flex; gap: .5rem; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: background .25s, width .25s; }
.testi__dots button[aria-current="true"] { width: 26px; border-radius: 6px; background: var(--grad-cta); }

/* ----------------------------------------------------------------- faq */
.faq { padding: 5.5rem 0; }
.faq__grid { display: grid; gap: 2.4rem; }
.faq__intro p { color: var(--ink-soft); margin: 1rem 0 1.6rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.4rem 1.25rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.6rem; color: var(--rose-deep); transition: transform .3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { overflow: hidden; }
.faq__answer p { color: var(--ink-soft); padding: 0 0 1.3rem; }

/* ----------------------------------------------------------------- cta final */
.cta { position: relative; padding: 6.5rem 0; color: #fff; text-align: center; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(110% 100% at 50% 120%, #4a2156 0%, var(--plum-2) 50%, #160a1d 100%); }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-aura); opacity: .18; filter: blur(70px); animation: spin 40s linear infinite; }
@media (prefers-reduced-motion: reduce) { .cta__bg::after { animation: none; } }
.cta__inner { max-width: 700px; margin: 0 auto; }
.cta__title { font-size: clamp(2rem, 5.5vw, 3.1rem); color: #fff; margin: 1rem 0; }
.cta__text { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2.2rem; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--plum); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer__grid { display: grid; gap: 2.4rem; }
.footer__brand .brand__name { font-family: var(--font-display); font-size: 1.5rem; color: #fff; display: block; }
.footer__brand .brand__sub { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); display: block; margin-top: .3rem; }
.footer__note { margin-top: 1rem; font-size: .9rem; }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.footer__col a { display: block; padding: .35rem 0; color: rgba(255,255,255,.75); font-size: .94rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bar { max-width: var(--maxw); margin: 3rem auto 0; padding: 1.6rem 1.4rem 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.55); }

/* ----------------------------------------------------------------- whatsapp float */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  animation: waPulse 2.6s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{box-shadow:0 12px 28px -8px rgba(37,211,102,.7)} 50%{box-shadow:0 12px 38px -6px rgba(37,211,102,.95)} }
.wa-float:hover { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ----------------------------------------------------------------- reveal anim */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* =============================================================================
   BREAKPOINTS
   ========================================================================== */
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1.4fr; }
  .footer__bar { flex-direction: row; justify-content: space-between; }
  .hero__title { font-size: clamp(3rem, 6vw, 3.8rem); }
}

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }

  .hero { padding: 10rem 0 5rem; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .hero__copy { text-align: left; }
  .hero__lede { margin-left: 0; }
  .hero__cta { justify-content: flex-start; }
  .hero__trust { justify-content: flex-start; }
  .hero__trust li { align-items: flex-start; }
  .hero__portrait { width: min(40vw, 460px); order: 0; }
  .hero__scroll { display: block; position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px; opacity: .5; }
  .hero__scroll span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; border-radius: 4px; background: var(--ink-soft); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
  @keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

  .sobre__grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .faq__grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
  .faq__intro { position: sticky; top: 6rem; }
  .section-title { letter-spacing: -.02em; }
}

@media (min-width: 1200px) {
  .cards { gap: 1.6rem; }
}
