/* ============================================================
   Casa de Apoio Amor à Vida — Design System
   Paleta: creme + verde-água + charcoal. Coral RESERVADO p/ doação.
   Tipografia: var(--font-display) [Fraunces] + var(--font-body) [Inter]
   ============================================================ */

:root {
  /* Brand palette (6 cores, conforme brief) */
  --verde:        #1D7A7B;
  --verde-deep:   #14605F;
  --verde-soft:   #E4F0EE;
  --coral:        #D72A2E;
  --coral-deep:   #B41F22;
  --amarelo:      #F5A623;
  --azul:         #4A5C8A;
  --creme:        #FDF9F4;
  --creme-2:      #F5ECE0;
  --charcoal:     #1E2D2D;
  --ink-mute:     rgba(30, 45, 45, 0.66);
  --ink-soft:     rgba(30, 45, 45, 0.45);
  --line:         rgba(30, 45, 45, 0.12);
  --line-soft:    rgba(30, 45, 45, 0.07);

  /* Tweakable tokens (React overrides these) */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --cta:          var(--coral);
  --cta-deep:     var(--coral-deep);
  --cta-ink:      #fff;

  /* Layout */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 700ms;

  color-scheme: light;
}

/* Motion off: kill all transitions/animations + show reveals immediately */
:root[data-motion="off"] *,
:root[data-motion="off"] *::before,
:root[data-motion="off"] *::after {
  animation: none !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
:root[data-motion="off"] { scroll-behavior: auto; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* custom element defaults to inline -> aspect-ratio is ignored; force block */
image-slot { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--verde); color: #fff; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--verde);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  padding-bottom: 0.24em;
}
.display em { font-style: italic; color: var(--verde); }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
}
.section-title em { font-style: italic; color: var(--verde); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-mute);
  text-wrap: pretty;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
section[id], main[id] { scroll-margin-top: 88px; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 17px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s, box-shadow .25s var(--ease), border-color .2s;
  min-height: 52px;
}
.btn svg { width: 18px; height: 18px; }
.btn-cta {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--cta) 60%, transparent);
}
.btn-cta:hover { background: var(--cta-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -10px color-mix(in srgb, var(--cta) 70%, transparent); }
.btn-cta:active { transform: translateY(0) scale(.98); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--verde); color: var(--verde); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--verde); padding-inline: 0; min-height: auto; }
.btn-ghost:hover { gap: 14px; }

/* ---------- Pulsing heart ---------- */
.heart {
  display: inline-block;
  color: var(--coral);
  transform-origin: center;
}
.heart.pulse { animation: heartbeat 1.6s var(--ease) infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.16); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  56% { transform: scale(1); }
}

/* ---------- Reveal on scroll ----------
   Content is visible by default. The hidden->animate-in behaviour is only
   armed once JS adds `.reveal-on` to <html> AFTER verifying CSS transitions
   actually run in this environment. That way content can never get trapped
   in a frozen-transition hidden state. */
html.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease);
}
html.reveal-on [data-reveal].is-visible { opacity: 1; transform: none; }
html.reveal-on [data-reveal][data-delay="1"] { transition-delay: .09s; }
html.reveal-on [data-reveal][data-delay="2"] { transition-delay: .18s; }
html.reveal-on [data-reveal][data-delay="3"] { transition-delay: .27s; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--creme) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line-soft); box-shadow: 0 6px 24px -18px rgba(0,0,0,.4); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--verde-soft);
  border-radius: 13px;
  color: var(--coral);
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--verde);
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--verde); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--verde); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; min-height: 44px; font-size: 15px; }
.nav-toggle { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(48px, 7vw, 96px); overflow: clip; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 26px; font-size: 14px; color: var(--ink-mute);
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 16px; height: 16px; color: var(--verde); }

.hero-media { position: relative; }
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--verde-soft), #d6e7e2);
  box-shadow: 0 40px 80px -40px rgba(30,45,45,.5);
}
/* floating logo badge over photo */
.hero-logo {
  position: absolute;
  left: -26px; bottom: 34px;
  background: var(--creme);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 24px 50px -20px rgba(30,45,45,.45);
  border: 1px solid var(--line-soft);
  max-width: 230px;
}
.hero-logo .brand-mark { width: 50px; height: 50px; }
.hero-logo b { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--verde); line-height: 1.05; }
.hero-logo span { font-size: 12px; color: var(--ink-mute); line-height: 1.3; }
.hero-blob {
  position: absolute;
  inset: auto -10% -12% auto;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--amarelo) 38%, transparent), transparent 68%);
  filter: blur(8px);
  z-index: -1;
}

/* Hero background variants (tweak) */
:root[data-hero="verde"] .hero { background: var(--verde); }
:root[data-hero="verde"] .hero h1,
:root[data-hero="verde"] .hero .display em { color: #fff; }
:root[data-hero="verde"] .hero .display em { color: var(--amarelo); }
:root[data-hero="verde"] .hero .lead { color: rgba(255,255,255,.82); }
:root[data-hero="verde"] .hero .eyebrow { color: var(--amarelo); }
:root[data-hero="verde"] .hero .eyebrow::before { background: var(--amarelo); }
:root[data-hero="verde"] .hero .trust { color: rgba(255,255,255,.8); }
:root[data-hero="verde"] .hero .trust svg { color: var(--amarelo); }
:root[data-hero="verde"] .hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.35); }
:root[data-hero="verde"] .hero .btn-outline:hover { color: var(--verde); background: #fff; border-color: #fff; }
:root[data-hero="verde"] .nav { background: color-mix(in srgb, var(--verde) 88%, transparent); }
:root[data-hero="verde"] .nav .brand-name { color: #fff; }
:root[data-hero="verde"] .nav .brand-name small { color: rgba(255,255,255,.6); }
:root[data-hero="verde"] .nav-links a { color: rgba(255,255,255,.9); }
:root[data-hero="verde"] .nav-links a:hover { color: #fff; }
:root[data-hero="verde"] .nav-links a::after { background: var(--amarelo); }
:root[data-hero="verde"] .nav.scrolled { background: color-mix(in srgb, var(--verde) 92%, transparent); }
:root[data-hero="verde"] .brand-mark { background: rgba(255,255,255,.14); }

/* =========================================================
   IMPACT NUMBERS
   ========================================================= */
.numbers { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
}
.num-cell { padding-block: clamp(40px, 6vw, 72px); position: relative; }
.num-cell:not(:first-child) { border-left: 1px solid var(--line); padding-left: clamp(24px, 4vw, 64px); }
.num-big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--verde);
  font-variant-numeric: tabular-nums;
}
.num-label {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   STORIES
   ========================================================= */
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head .lead { margin-top: 18px; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
}
.story {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.story:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -32px rgba(30,45,45,.45); }
.story-photo { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; background: var(--verde-soft); }
.story-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--charcoal);
}
.story-meta { margin-top: auto; }
.story-name { font-weight: 600; font-size: 1.05rem; color: var(--verde); }
.story-where { font-size: 14px; color: var(--ink-mute); }

/* =========================================================
   SOBRE (split sticky)
   ========================================================= */
.sobre { background: var(--creme-2); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.sobre-media { position: sticky; top: 96px; }
.sobre-photo { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--verde-soft), #d6e7e2); box-shadow: 0 40px 80px -44px rgba(30,45,45,.5); }
.sobre-text { padding-top: 10px; }
.sobre-text .section-title { margin-bottom: 26px; }
.sobre-block { padding-block: 26px; border-top: 1px solid var(--line); }
.sobre-block:first-of-type { border-top: 0; }
.sobre-block h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--verde); font-style: italic; }
.sobre-block p { margin: 0; color: var(--ink-mute); }

/* =========================================================
   DOAÇÃO (impact tiers + PIX)
   ========================================================= */
.doar { background: var(--verde); color: #fff; }
.doar .section-title, .doar h2 { color: #fff; }
.doar .section-title em { color: var(--amarelo); }
.doar .lead { color: rgba(255,255,255,.82); }
.doar .eyebrow { color: var(--amarelo); }
.doar .eyebrow::before { background: var(--amarelo); }
.doar-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 70px); align-items: center; margin-top: clamp(36px, 5vw, 56px); }
.tiers { display: flex; flex-direction: column; gap: 14px; }
.tier {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  transition: background .25s, transform .25s var(--ease), border-color .25s;
  cursor: pointer;
}
.tier:hover { background: rgba(255,255,255,.13); transform: translateX(6px); border-color: rgba(255,255,255,.3); }
.tier-amount {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--amarelo);
  flex-shrink: 0;
  min-width: 122px;
  font-variant-numeric: tabular-nums;
}
.tier-desc { color: rgba(255,255,255,.9); font-size: 1.02rem; }
.tier-desc b { color: #fff; font-weight: 600; }

.pix-card {
  background: var(--creme);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: 0 40px 80px -36px rgba(0,0,0,.6);
}
.pix-card h3 { font-style: italic; font-size: 1.5rem; color: var(--verde); }
.pix-qr {
  width: 220px; height: 220px;
  margin: 22px auto 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
}
.pix-qr .qr-grid { width: 168px; height: 168px; }
.pix-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.pix-key {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
  font-size: 14px;
}
.pix-key code { font-family: var(--font-body); font-weight: 600; color: var(--charcoal); flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pix-copy {
  border: 0; background: var(--verde); color: #fff;
  border-radius: 8px; padding: 8px 12px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  transition: background .2s;
}
.pix-copy:hover { background: var(--verde-deep); }
.pix-copy svg { width: 15px; height: 15px; }

/* =========================================================
   COMO AJUDAR (2x2)
   ========================================================= */
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 5vw, 56px); }
.way {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 34px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.way:hover { transform: translateY(-5px); box-shadow: 0 28px 52px -34px rgba(30,45,45,.5); border-color: var(--verde-soft); }
.way-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--verde-soft); color: var(--verde);
  display: grid; place-items: center;
}
.way-icon svg { width: 27px; height: 27px; }
.way h3 { font-size: 1.4rem; font-style: italic; }
.way p { margin: 0; color: var(--ink-mute); font-size: 1rem; flex: 1; }
.way .btn-ghost { font-weight: 600; }

/* =========================================================
   TRANSPARÊNCIA
   ========================================================= */
.transp { background: var(--creme-2); }
.transp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.donut {
  --a: 70; --b: 20; /* percentages */
  width: 260px; height: 260px; border-radius: 50%;
  background: conic-gradient(
    var(--verde) 0 calc(var(--a) * 1%),
    var(--amarelo) calc(var(--a) * 1%) calc((var(--a) + var(--b)) * 1%),
    var(--azul) calc((var(--a) + var(--b)) * 1%) 100%
  );
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(30,45,45,.5);
}
.donut::after {
  content: ""; position: absolute; inset: 26%;
  background: var(--creme-2); border-radius: 50%;
}
.donut-center { position: relative; z-index: 1; text-align: center; }
.donut-center b { font-family: var(--font-display); font-size: 2.2rem; color: var(--verde); display: block; line-height: 1; }
.donut-center span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.legend { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--charcoal); }
.legend i { width: 12px; height: 12px; border-radius: 3px; }

.transp-text .section-title { margin-bottom: 22px; }
.seals { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.seal {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 11px; padding: 11px 16px; font-size: 14px; font-weight: 500;
}
.seal svg { width: 17px; height: 17px; color: var(--verde); }
.docs { display: flex; flex-direction: column; gap: 2px; }
.doc-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; border-top: 1px solid var(--line);
  transition: padding .25s var(--ease), color .2s;
}
.doc-link:last-child { border-bottom: 1px solid var(--line); }
.doc-link:hover { padding-left: 12px; color: var(--verde); }
.doc-link span { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; }
.doc-link svg { width: 18px; height: 18px; color: var(--verde); }
.cnpj-line { font-size: 14px; color: var(--ink-mute); margin-top: 22px; }
.cnpj-line b { color: var(--charcoal); font-weight: 600; }

/* =========================================================
   CONTATO + FOOTER
   ========================================================= */
.contato { background: var(--charcoal); color: rgba(255,255,255,.82); }
.contato .section-title, .contato h2, .contato h3 { color: #fff; }
.contato .section-title em { color: var(--amarelo); }
.contato .eyebrow { color: var(--amarelo); }
.contato .eyebrow::before { background: var(--amarelo); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex-shrink: 0; color: var(--amarelo); }
.contact-item .ci-icon svg { width: 20px; height: 20px; }
.contact-item b { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: rgba(255,255,255,.72); font-size: 15px; }
.contact-item a:hover { color: var(--amarelo); }
.map {
  width: 100%; aspect-ratio: 16 / 11; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.12);
  background: #233636;
  box-shadow: 0 30px 60px -36px rgba(0,0,0,.6);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
  font-weight: 600; font-size: 14px; color: #fff;
}
.map-link:hover { color: var(--amarelo); }
.map-link svg { width: 17px; height: 17px; }
.map-link svg:last-child { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.map-link:hover svg:last-child { transform: translateX(4px); }
.socials { display: flex; gap: 12px; margin-top: 30px; }
.socials a {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: #fff; transition: background .2s, transform .2s var(--ease);
}
.socials a:hover { background: var(--amarelo); color: var(--charcoal); transform: translateY(-3px); }
.socials svg { width: 21px; height: 21px; }

.footer { background: #16201F; color: rgba(255,255,255,.6); }
.footer-inner { padding-block: 38px; display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; }
.footer-inner a:hover { color: #fff; }
.footer .made { display: inline-flex; align-items: center; gap: 7px; }
.footer .made svg { width: 15px; height: 15px; color: var(--coral); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; }

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */
.fab-wa {
  position: fixed; left: 22px; bottom: 22px; z-index: 45;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease);
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-doar {
  position: fixed; right: 22px; bottom: 22px; z-index: 44;
  box-shadow: 0 14px 34px -8px color-mix(in srgb, var(--cta) 70%, transparent);
  display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-media { position: static; max-width: 460px; }
  .doar-grid { grid-template-columns: 1fr; }
  .pix-card { max-width: 420px; margin: 0 auto; }
  .transp-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--creme); padding: 14px var(--pad) 22px;
    border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
  }
  .nav-links.open a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-cta .btn { display: none; }
  .stories-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .numbers-grid { grid-template-columns: 1fr; }
  .num-cell:not(:first-child) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  .num-cell { padding-block: 32px; }
  .ways-grid { grid-template-columns: 1fr; }
  .tier { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tier-amount { min-width: 0; }
  .fab-doar { display: inline-flex; }
  .fab-wa { width: 52px; height: 52px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   REAL-CONTENT SECTIONS (logo, atuação, documentário,
   depoimentos, doação PIX/banco, footer)
   ========================================================= */

/* Nav + hero + footer logo */
.brand-logo { height: 54px; width: auto; max-width: 210px; object-fit: contain; display: block; }
:root[data-hero="verde"] .brand-logo { filter: brightness(0) invert(1); }
.hero-logo img { width: 54px; height: 54px; object-fit: contain; flex-shrink: 0; }

/* Sobre brand panel (no facade photo available) */
.brand-panel {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; padding: 44px; text-align: center;
  box-shadow: 0 40px 80px -44px rgba(30,45,45,.45);
}
.brand-panel img { width: min(80%, 320px); height: auto; }
.brand-panel span { color: var(--ink-mute); font-size: 14px; letter-spacing: .02em; max-width: 26ch; }
.sobre-block:first-of-type { border-top: 0; padding-top: 0; }
.sobre-block p b { color: var(--charcoal); font-weight: 600; }

/* Como atuamos */
.atua-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 5vw, 56px); }
.atua-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.atua-card:hover { transform: translateY(-5px); box-shadow: 0 28px 52px -34px rgba(30,45,45,.5); border-color: var(--verde-soft); }
.atua-icon { width: 54px; height: 54px; border-radius: 15px; background: var(--verde-soft); color: var(--verde); display: grid; place-items: center; }
.atua-icon svg { width: 27px; height: 27px; }
.atua-card h3 { font-size: 1.3rem; font-style: italic; }
.atua-card p { margin: 0; color: var(--ink-mute); font-size: .98rem; }

/* Documentário */
.doc { background: var(--creme-2); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.video {
  position: relative; max-width: 1000px; margin: clamp(36px, 5vw, 56px) auto 0;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; background: #000; box-shadow: 0 40px 90px -40px rgba(30,45,45,.6);
}
.video-thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); transition: transform .5s var(--ease), filter .3s; }
.video:hover .video-thumb { transform: scale(1.04); filter: brightness(.7); }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 86px; height: 86px; border-radius: 50%;
  border: 0; background: var(--coral); color: #fff; display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 16px 40px -10px rgba(215,42,46,.7);
  transition: transform .25s var(--ease), background .2s;
}
.video-play svg { width: 38px; height: 38px; }
.video:hover .video-play { transform: scale(1.08); background: var(--coral-deep); }
.video-label { position: absolute; left: 24px; bottom: 20px; color: #fff; font-weight: 600; font-size: 1.05rem; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.video-iframe,
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video.playing { cursor: default; }
.video.playing .video-play, .video.playing .video-label, .video.playing .video-thumb { display: none; }

/* Depoimentos */
.depo-featured { max-width: 880px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; position: relative; padding: 0 16px; }
.depo-quote-mark { font-family: var(--font-display); font-style: italic; font-size: 7rem; line-height: .7; color: var(--verde-soft); height: 56px; }
.depo-featured blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.4rem, 2.7vw, 2.1rem); line-height: 1.42; color: var(--charcoal); margin: 0 0 24px; text-wrap: pretty; }
.depo-featured blockquote b { color: var(--verde); font-style: normal; font-weight: 600; }
.depo-featured figcaption { font-weight: 600; color: var(--verde); font-size: 1.05rem; }
.depo-featured figcaption span { color: var(--ink-mute); font-weight: 400; }

/* Marquee CSS infinito — esteira contínua (translateX 0 → -50% com clones).
   overflow:hidden corta as bordas; mask cria fade nas pontas pra entrada/saída suave.
   --depo-gap-half compensa metade do gap pra emenda invisível entre conjunto e clone. */
.depo-carousel {
  position: relative;
  overflow: hidden;
  --depo-gap-half: 11px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}
.depo-track {
  display: flex;
  gap: 22px;
  padding: 6px 2px 18px;
  width: max-content;
  transition: transform 800ms cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .depo-track { transition: none; }
}
.depo-card {
  flex: 0 0 min(360px, 82vw);
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.depo-stars { display: flex; gap: 3px; color: var(--amarelo); }
.depo-stars svg { width: 18px; height: 18px; }
.depo-text { margin: 0; color: var(--charcoal); font-size: 1rem; line-height: 1.6; flex: 1; }
.depo-author b { color: var(--verde); font-weight: 600; display: block; }
.depo-author span { color: var(--ink-mute); font-size: 14px; }
.depo-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; }
.depo-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--verde); display: grid; place-items: center; cursor: pointer;
  transition: background .2s, color .2s, transform .2s var(--ease), opacity .2s, border-color .2s;
}
.depo-arrow:hover { background: var(--verde); color: #fff; border-color: var(--verde); transform: translateY(-2px); }
.depo-arrow svg { width: 22px; height: 22px; }
.depo-arrow:disabled { opacity: .35; cursor: default; }
.depo-arrow:disabled:hover { background: #fff; color: var(--verde); border-color: var(--line); transform: none; }

/* Doação: PIX + banco */
.doar-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.pix-card { text-align: center; display: flex; flex-direction: column; align-items: center; position: relative; }
.pix-tag { display: inline-block; background: var(--amarelo); color: var(--charcoal); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 14px; }
.pix-card h3 { font-style: italic; font-size: 1.6rem; color: var(--verde); }
.pix-card .pix-note { margin: 8px 0 0; }
.pix-qr { width: 210px; height: 210px; margin: 20px auto; border-radius: 16px; background: #fff; border: 1px solid var(--line); padding: 12px; display: grid; place-items: center; }
.pix-qr img { width: 100%; height: 100%; object-fit: contain; }
.pix-key { width: 100%; }
.pix-copy.copied { background: var(--amarelo); color: var(--charcoal); }

.bank-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 32px; color: #fff; }
.bank-card h3 { color: #fff; font-style: italic; font-size: 1.6rem; }
.bank-sub { color: rgba(255,255,255,.7); font-size: 14px; margin: 4px 0 20px; }
.bank-list { margin: 0 0 22px; }
.bank-list div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.14); }
.bank-list div:first-child { border-top: 0; }
.bank-list dt { margin: 0; color: rgba(255,255,255,.7); }
.bank-list dd { margin: 0; font-weight: 600; color: #fff; text-align: right; }
.how-pix { background: rgba(0,0,0,.16); border-radius: 14px; padding: 18px 20px; margin-bottom: 18px; }
.how-pix h4 { margin: 0 0 10px; font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--amarelo); }
.how-pix ol { margin: 0; padding-left: 20px; color: rgba(255,255,255,.85); font-size: .95rem; display: flex; flex-direction: column; gap: 6px; }
.bank-help { margin: 0; font-size: 14px; color: rgba(255,255,255,.75); }
.bank-help a { color: var(--amarelo); font-weight: 600; }

/* Contato extras */
.contato .lead { color: rgba(255,255,255,.72); }
.wa-box {
  display: flex; align-items: center; gap: 16px; margin-top: 30px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 18px 22px;
  transition: background .25s, transform .25s var(--ease), border-color .25s;
}
.wa-box:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); border-color: rgba(255,255,255,.25); }
.wa-box > div { flex: 1; }
.wa-icon { width: 48px; height: 48px; border-radius: 14px; background: #25D366; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.wa-icon svg { width: 26px; height: 26px; }
.wa-box b { display: block; color: #fff; }
.wa-box span { color: rgba(255,255,255,.7); font-size: 14px; }
.wa-arrow { margin-left: auto; width: 22px; height: 22px; color: var(--amarelo); flex-shrink: 0; }
.contato .contact-list { margin-top: 0; }

/* Footer (rebuilt) */
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 40px; padding-block: 56px 34px; }
.footer-brand img { height: 66px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 44ch; margin: 0 0 14px; }
.footer-meta { font-size: 13px; color: rgba(255,255,255,.42); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.6); padding: 6px 0; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 14px; flex-wrap: wrap; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); }
.footer-bottom .made svg { width: 15px; height: 15px; color: var(--coral); }

@media (max-width: 980px) {
  .atua-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .atua-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .depo-card { flex-basis: 84vw; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-logo { height: 46px; }
  .bank-list dd { text-align: right; }
}

/* =========================================================
   ELEGANCE PASS
   ========================================================= */
body { font-optical-sizing: auto; }

/* Donation icon in nav CTA */
.nav-cta .btn .give { width: 18px; height: 18px; }

/* Soft warm depth behind the hero (creme variant) */
.hero { background: radial-gradient(118% 86% at 90% -8%, color-mix(in srgb, var(--amarelo) 11%, transparent), transparent 52%); }

/* Subtle richness on the teal donation + dark contact bands */
.doar { background: radial-gradient(125% 110% at 2% 0%, color-mix(in srgb, #ffffff 9%, transparent), transparent 46%), var(--verde); }
.contato { background: radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--verde) 32%, transparent), transparent 50%), var(--charcoal); }

/* Editorial type finesse */
.eyebrow { font-size: 12.5px; }
.section-title { letter-spacing: -0.022em; }
.num-big { letter-spacing: -0.03em; }
.num-cell { position: relative; }
.num-cell::before {
  content: ""; display: block; width: 30px; height: 3px; border-radius: 2px;
  background: var(--coral); margin-bottom: 22px; opacity: .9;
}

/* Cards rest with a whisper of depth, lift on hover (already defined) */
.story, .way, .atua-card, .depo-card { box-shadow: 0 1px 2px rgba(30,45,45,.05), 0 10px 30px -24px rgba(30,45,45,.5); }

/* Refined focus states for accessibility + polish */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--verde); outline-offset: 3px; border-radius: 8px;
}
:root[data-hero="verde"] .hero a:focus-visible { outline-color: var(--amarelo); }

/* =========================================================
   MOBILE FIXES — 2026-05-28 (auditoria 390px/375px)
   ========================================================= */

/* 1. Bloquear overflow horizontal definitivamente no nível raiz */
html { overflow-x: hidden; max-width: 100vw; }
body { max-width: 100vw; }

/* 2. Hero blob não pode estourar viewport (vazava à direita) */
.hero { position: relative; overflow: hidden; }

@media (max-width: 760px) {

  /* ----- HERO ----- */
  .hero-grid { gap: 28px; }
  .hero-media { max-width: 100%; }
  .hero-photo { aspect-ratio: 4 / 3.6; }

  /* Logo flutuante "Amor à Vida" — fica menor e dentro da foto, não sobrepondo */
  .hero-logo {
    left: 14px; bottom: 14px; right: auto;
    max-width: calc(100% - 28px);
    padding: 10px 14px;
    gap: 10px;
    border-radius: 14px;
  }
  .hero-logo img { width: 38px; height: 38px; }
  .hero-logo b { font-size: 1rem; }
  .hero-logo span { font-size: 11px; }

  /* CTAs full-width pra clicabilidade mobile */
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Headline menor mobile, sem itálico estourado */
  .hero .display { font-size: clamp(2rem, 8.5vw, 2.6rem); line-height: 1.08; }
  .hero .lead { font-size: 1rem; line-height: 1.55; }

  /* Trust badges em coluna no mobile */
  .trust { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* ----- NÚMEROS ----- */
  .num-cell { text-align: center; padding-block: 24px !important; }
  .num-big { font-size: clamp(3rem, 14vw, 4.2rem); }
  .num-label { letter-spacing: .12em; }

  /* ----- SOBRE / brand-panel não pode ficar gigante ----- */
  .brand-panel { aspect-ratio: 1 / 1; padding: 28px; }
  .brand-panel img { width: min(70%, 240px); }

  /* ----- ATUAÇÃO / cards padding menor mobile ----- */
  .atua-card { padding: 22px; }

  /* ----- DOAR / Pix card ----- */
  .pix-card { padding: 28px 18px !important; }
  .pix-key { display: flex; flex-direction: column; gap: 10px; }
  .pix-key code { font-size: 14px; }
  .pix-copy { width: 100%; justify-content: center; }
  .pix-qr { width: 180px; height: 180px; }

  /* Bank card padding e tamanho de tipografia */
  .bank-card { padding: 24px 18px; }
  .bank-list div { gap: 10px; flex-wrap: wrap; }
  .bank-list dd { text-align: right; word-break: break-word; }

  /* ----- DEPOIMENTOS ----- */
  .depo-featured blockquote { font-size: 1.15rem; line-height: 1.5; }
  .depo-quote-mark { font-size: 5rem; height: 40px; }
  .depo-card { padding: 22px; flex-basis: 86vw !important; }
  .depo-nav { justify-content: center; margin-top: 16px; }

  /* ----- CONTATO ----- */
  .wa-box { padding: 14px 16px; gap: 12px; }
  .wa-box b { font-size: 15px; }
  .wa-box span { font-size: 13px; }
  .map { aspect-ratio: 1 / 1; }

  /* ----- FAB DOAR — menor mobile pra não ocupar metade da tela ----- */
  .fab-doar {
    display: inline-flex !important;
    right: 16px; bottom: 18px;
    padding: 12px 18px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
    gap: 7px;
  }
  .fab-doar svg { width: 17px; height: 17px; }

  /* WhatsApp FAB também ajustado pra mesma elevação visual */
  .fab-wa { width: 50px; height: 50px; left: 16px; bottom: 18px; }
  .fab-wa svg { width: 26px; height: 26px; }

  /* ----- HEADINGS gerais ----- */
  .section-title { font-size: clamp(1.8rem, 6.5vw, 2.4rem); line-height: 1.15; }
  .lead { font-size: 1rem; line-height: 1.55; }

  /* Padding lateral seções mobile */
  .wrap { padding-inline: 20px; }

  /* Eyebrow não pode quebrar duas linhas */
  .eyebrow { font-size: 12px; }
}

/* Telas muito pequenas (375px iPhone SE) */
@media (max-width: 380px) {
  .hero .display { font-size: 1.85rem; }
  .num-big { font-size: 3rem; }
  .pix-qr { width: 160px; height: 160px; }
  .fab-doar { padding: 10px 14px !important; font-size: 13px !important; }
  .fab-doar svg { width: 15px; height: 15px; }
}

/* Fix definitivo: regra base do .doar-grid sobrescrevia media queries antigas — forçar stack mobile */
@media (max-width: 980px) {
  .doar-grid { grid-template-columns: 1fr !important; }
  .sobre-grid { grid-template-columns: 1fr !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .contato-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .atua-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .numbers-grid { grid-template-columns: 1fr !important; }
}

/* =========================================================
   MOBILE FIXES PARTE 2 (2026-05-28 noite)
   - Nav fixed mobile (sticky falhava após overflow-x:hidden no html)
   - Hambúrguer animado verde-água com morph pra X
   - Carrossel auto-play + peek lateral
   ========================================================= */

/* Nav fixo mobile - fica grudado no topo durante todo o scroll */
@media (max-width: 760px) {
  .nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: color-mix(in srgb, var(--creme) 96%, transparent);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 2px 12px -8px rgba(30,45,45,.18);
  }
  /* Compensar o nav fixed reservando espaço no topo da página */
  body { padding-top: 72px; }
  .nav-inner { padding-block: 12px; }
}

/* Hambúrguer animado morph 3 linhas → X */
.nav-toggle {
  color: var(--verde) !important;
  background: transparent !important;
  border: 1.5px solid var(--verde-soft) !important;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--verde) !important;
  background: var(--verde-soft) !important;
}
.burger {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 6px; }
.burger span:nth-child(3) { top: 12px; }

/* Estado aberto: morph pra X */
.nav-toggle[aria-expanded="true"] .burger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .burger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Marquee mobile: edge-to-edge + animação mais rápida (cards menores rolam mais rápido) */
@media (max-width: 760px) {
  .depo-carousel {
    margin-inline: calc(-1 * var(--pad));
    --depo-gap-half: 7px;
  }
  .depo-track {
    gap: 14px;
  }
  .depo-card {
    flex-basis: 78vw !important;
  }
  .depo-nav {
    padding-inline: var(--pad);
    margin-inline: 0;
  }
}

/* Doar: ao clicar no CTA, jogar heading+card PIX bem perto do topo visível
   (não 100px abaixo do nav como vinha). Reduz padding-top da section e
   margin-bottom do cabeçalho da section pra trazer o card pra cima.        */
@media (max-width: 760px) {
  .doar.section-pad { padding-top: 28px; padding-bottom: 56px; }
  .doar .section-head { margin-bottom: 22px; }
  /* ID seletor pra vencer specificity do `section[id]` global. */
  #doar { scroll-margin-top: 76px; }
}
