/* ==========================================================================
   Carreira365 — LP de Captação PM3
   Base: /pm3-design-system · componentes portados da LP irmã 3talks-lps
   ========================================================================== */

/* ── 1. Tokens ──────────────────────────────────────────────────────────── */
:root {
  --deep-purple: #452E78;
  --royal-purple: #6645B1;
  --black: #000000;
  --white: #FFFFFF;
  --gray-fog: #B9B5C1;
  --yellow-glow: #FFB12A;
  --lilac: #B04DDD;
  --lilac-soft: #FCCBC9;
  --surface-muted: #F5F4F8;
  --ink: #1a1523;

  --grad-brand: linear-gradient(135deg, #452E78, #6645B1);
  --grad-lilac: linear-gradient(135deg, #B04DDD, #FCCBC9);
  --grad-blaze: linear-gradient(135deg, #4D2B9F, #DACBF6);

  --ink-black: #08060f;
  /* grão sutil de textura para fundos escuros (aprox. das peças de anúncio) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");

  --font-head: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-body: 'Rubik', system-ui, -apple-system, sans-serif;

  --r-btn: 6px;
  --r-card: 12px;
  --r-hero: 20px;
  --container: 1200px;

  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px;
  --sp-4: 32px; --sp-6: 48px; --sp-8: 64px; --sp-12: 96px;
}

/* ── 2. Reset / base ────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
:focus-visible { outline: 3px solid var(--royal-purple); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 760px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Backgrounds atmosféricos (portados da 3talks) ──────────────────────── */
.bg-hero {
  background:
    var(--grain),
    radial-gradient(120% 90% at 88% 4%, rgba(255,177,42,0.16) 0%, rgba(20,12,38,0) 48%),
    radial-gradient(110% 95% at -5% 98%, rgba(176,77,221,0.34) 0%, rgba(20,12,38,0) 55%),
    linear-gradient(155deg, #3a2668 0%, #2a1a52 52%, #140c26 100%);
  color: var(--white);
}
.bg-band {
  background:
    var(--grain),
    radial-gradient(75% 110% at 100% 0%, rgba(176,77,221,0.15) 0%, rgba(8,6,15,0) 58%),
    radial-gradient(75% 110% at 0% 100%, rgba(102,69,177,0.20) 0%, rgba(8,6,15,0) 58%),
    radial-gradient(45% 55% at 50% 45%, rgba(255,177,42,0.05) 0%, rgba(8,6,15,0) 70%),
    var(--ink-black);
  color: var(--white);
}

/* Highlight amarelo com glow sutil */
.text-gradient { color: var(--yellow-glow); text-shadow: 0 0 16px rgba(255,177,42,0.35); }

/* ── Botões ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: var(--r-btn); border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--royal-purple); color: var(--white); box-shadow: 0 10px 30px -12px rgba(102,69,177,.7); }
.btn-primary:hover { background: var(--deep-purple); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(102,69,177,.85); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

/* ── Badges / labels de seção ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.badge-glow {
  color: var(--yellow-glow);
  background: rgba(255,177,42,.10);
  border: 1px solid rgba(255,177,42,.35);
}
.section-label {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow-glow); margin-bottom: 14px;
}
.section-label-dark { color: var(--royal-purple); }

/* ── Seção genérica ─────────────────────────────────────────────────────── */
/* seções empilhadas com cantos arredondados que se encaixam (estilo das peças) */
.section { padding: 80px 0; position: relative; margin-top: -34px; border-radius: 34px 34px 0 0; }
.section:first-of-type { margin-top: 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-title-dark { color: var(--ink); }
.section-lead { margin-top: 16px; font-size: 1.125rem; color: var(--gray-fog); }
.section-cta { text-align: center; margin-top: 48px; }

/* ══════════════════════ 1. HEADER ══════════════════════ */
#site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
#site-header.scrolled { box-shadow: 0 4px 20px -8px rgba(69,46,120,.25); border-bottom-color: rgba(185,181,193,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-countdown {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.85rem; color: var(--deep-purple);
}
.hc-label { color: var(--ink); opacity: .7; }
.hc-clock { font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; }
.hc-clock span[data-countdown-unit] { color: var(--deep-purple); }
.hc-unit { color: var(--gray-fog); font-weight: 500; margin: 0 6px 0 1px; }
.header-cta { padding: 10px 20px; font-size: 0.85rem; flex-shrink: 0; }
.countdown-expired { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--royal-purple); }
.final-countdown .countdown-expired { font-size: 1rem; color: var(--yellow-glow); }

/* ══════════════════════ 2. HERO ══════════════════════ */
.hero { padding: 56px 0 72px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-mark { margin-bottom: 24px; opacity: .95; }

/* Lockup de marca: logo da campanha + "por" + PM3 */
.hero-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-logo-campanha { height: 38px; width: auto; }
.hero-brand-by { font-family: var(--font-body); font-size: 0.8rem; color: var(--gray-fog); }
.hero-brand-pm3 { height: 20px; width: auto; opacity: .92; }

/* Chip de data/hora com ícone de calendário (destaque laranja, estilo peças) */
.hero-datetime { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); padding: 10px 18px; border-radius: 999px; background: rgba(255,177,42,.10); border: 1px solid rgba(255,177,42,.38); }
.hero-datetime svg { width: 20px; height: 20px; fill: none; stroke: var(--yellow-glow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-title { font-size: clamp(2rem, 5.2vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
.hero-sub { margin-top: 20px; font-size: 1.125rem; color: rgba(255,255,255,.82); max-width: 46ch; }
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,.92); }
.hero-bullets li span { color: var(--gray-fog); }
.hero-bullets svg { flex-shrink: 0; width: 22px; height: 22px; padding: 3px; border-radius: 999px; background: rgba(255,177,42,.18); stroke: var(--yellow-glow); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-social { margin-top: 28px; display: flex; align-items: center; gap: 9px; font-size: 0.95rem; color: var(--gray-fog); }
.hero-social .inscritos { font-family: var(--font-head); font-weight: 700; color: var(--white); }

.pulse-dot { width: 9px; height: 9px; border-radius: 999px; background: #43e07f; display: inline-block; flex-shrink: 0; animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(67,224,127,.55); }
  70% { box-shadow: 0 0 0 8px rgba(67,224,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,224,127,0); }
}

/* ── Card de formulário ─────────────────────────────────────────────────── */
.hero-form-wrap { position: relative; }
.form-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--r-hero); padding: 28px 26px;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.55);
}
.form-card-title { font-size: 1.4rem; color: var(--ink); }
.form-card-sub { margin-top: 6px; margin-bottom: 20px; font-size: 0.9rem; color: #6b6577; }

/* Componente de form (portado da 3talks, tema claro) */
.wcc-form-carreira365 { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink); letter-spacing: .01em; }
.form-field input, .form-field select {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fbfafd; border: 1.5px solid #e3e0ea; border-radius: 10px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.form-field input:focus, .form-field select:focus {
  outline: none; background: var(--white); border-color: var(--royal-purple);
  box-shadow: 0 0 0 3px rgba(102,69,177,.18);
}
.form-field input::placeholder { color: #a7a2b3; }
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236645B1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px;
  padding-right: 40px; cursor: pointer;
}
.phone-wrapper { display: flex; gap: 8px; }
.phone-country { flex: 0 0 84px; }
.phone-number { flex: 1; min-width: 0; }

.bp-progressive { display: flex; flex-direction: column; gap: 14px; animation: slidedown .3s ease; }
@keyframes slidedown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.wcc-submit-carreira365 {
  margin-top: 4px; width: 100%; background: var(--royal-purple); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: .01em;
  padding: 16px 14px; border: none; border-radius: var(--r-btn); cursor: pointer;
  transition: background-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 12px 30px -12px rgba(102,69,177,.7);
}
.wcc-submit-carreira365:hover { background: var(--deep-purple); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(102,69,177,.85); }
.wcc-submit-carreira365:active { transform: translateY(0); }
.wcc-submit-carreira365:disabled { opacity: .7; cursor: wait; transform: none; box-shadow: none; }

.form-trust { margin-top: 14px; text-align: center; font-size: .74rem; color: #8b8698; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-trust svg { color: #43c07f; }

.field-error-msg { font-family: var(--font-head); font-weight: 500; font-size: .8rem; color: #d94848; line-height: 1.4; }
.field-error-msg button { color: var(--royal-purple); font-weight: 700; text-decoration: underline; background: none; border: none; cursor: pointer; font-size: inherit; }
.form-field .field-error, .phone-wrapper.field-error { border-color: #d94848 !important; }

/* ══════════════════════ 3. TRUST BAR ══════════════════════ */
.trust-bar { background: var(--surface-muted); border-top: 1px solid #e7e4ee; border-bottom: 1px solid #e7e4ee; padding: 22px 0; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.trust-item svg { width: 22px; height: 22px; fill: none; stroke: var(--royal-purple); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════ 4/5/6/7 SEÇÕES ══════════════════════ */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }

.card { border-radius: var(--r-card); padding: 28px 24px; }
.card-dark { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.10); transition: border-color .25s, box-shadow .25s, transform .25s; }
.card-dark:hover { border-color: rgba(176,77,221,.45); box-shadow: 0 18px 50px -22px rgba(176,77,221,.55); transform: translateY(-4px); }
.card-num { font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; color: var(--yellow-glow); }
.card-dark h3 { margin: 12px 0 10px; font-size: 1.15rem; color: var(--white); line-height: 1.3; }
.card-dark p { color: var(--gray-fog); font-size: 0.98rem; }

/* Seção 5 (fundo claro) */
.dor-publico { background: var(--white); }
.dor-publico .section-lead { color: #6b6577; }
.card-light { background: var(--surface-muted); border: 1px solid #e7e4ee; }
.layer-badge { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .05em; padding: 5px 12px; border-radius: 999px; color: var(--white); }
.layer-core { background: var(--deep-purple); }
.layer-lead { background: var(--royal-purple); }
.layer-corr { background: var(--lilac); }
.layer-roles { margin-top: 10px; font-size: 0.8rem; color: #8b8698; }
.dor-headline { margin-top: 16px; font-size: 1.18rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.dor-body { margin-top: 12px; font-size: 0.98rem; color: #4b4658; }
.layer-hook { margin-top: 20px; padding-top: 16px; border-top: 1px solid #e7e4ee; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--deep-purple); }

/* Seção 6 timeline */
.timeline { list-style: none; max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--royal-purple), var(--lilac)); }
.timeline-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; margin-bottom: 28px; }
.timeline-node { width: 48px; height: 48px; border-radius: 999px; background: var(--grad-brand); display: grid; place-items: center; position: relative; z-index: 1; box-shadow: 0 0 0 6px #0c0820; }
.timeline-node span { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1.1rem; }
.timeline-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-card); padding: 24px; }
.timeline-when { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: .04em; color: var(--yellow-glow); margin-bottom: 8px; }
.timeline-card h3 { font-size: 1.25rem; color: var(--white); }
.timeline-card p { margin-top: 10px; color: var(--gray-fog); font-size: 0.98rem; }
.deliverable { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 10px 16px; border-radius: 999px; background: rgba(255,177,42,.12); border: 1px solid rgba(255,177,42,.35); font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--yellow-glow); }
.deliverable svg { width: 20px; height: 20px; fill: none; stroke: var(--yellow-glow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Seção 7 — números + depoimentos */
.autoridade { background: var(--white); }
.stats-row { display: grid; grid-template-columns: 1fr; gap: 28px; text-align: center; max-width: 900px; margin: 0 auto 44px; padding-bottom: 44px; border-bottom: 1px solid #e7e4ee; }
.stats-row .stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 0.95rem; color: #6b6577; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1040px; margin: 0 auto; }
.testimonial { display: flex; flex-direction: column; background: var(--surface-muted); border: 1px solid #e7e4ee; border-radius: var(--r-card); padding: 26px 24px; }
.testi-stars { color: var(--yellow-glow); letter-spacing: 3px; font-size: 1rem; }
.testimonial blockquote { margin: 14px 0 20px; font-size: 1rem; line-height: 1.6; color: var(--ink); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testi-avatar { flex-shrink: 0; width: 46px; height: 46px; border-radius: 999px; background: var(--grad-brand); display: grid; place-items: center; }
.testi-avatar svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.testi-meta { display: flex; flex-direction: column; }
.testi-meta strong { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.testi-meta small { font-size: 0.82rem; color: #8b8698; }

/* ══════════════════════ 8. FAQ ══════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-card); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--yellow-glow); outline-offset: -2px; }
.chevron { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--lilac); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.faq-item[open] > summary .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--gray-fog); font-size: 0.98rem; }

/* ══════════════════════ 9. CTA FINAL ══════════════════════ */
.cta-final { padding: 72px 0; }
.cta-final-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.cta-final .hero-title { font-size: clamp(1.8rem, 4.5vw, 2.75rem); }
.final-countdown { display: flex; gap: 12px; margin-top: 28px; }
.fc-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 62px; padding: 12px 8px; border-radius: var(--r-card); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.fc-unit span { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--white); line-height: 1; }
.fc-unit small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-fog); }

/* ══════════════════════ 10. FOOTER ══════════════════════ */
.site-footer { background: var(--black); color: var(--gray-fog); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-period { font-size: 0.85rem; color: var(--gray-fog); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--gray-fog); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: #6b6577; }

/* ── Sticky CTA mobile ──────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid #e7e4ee; box-shadow: 0 -6px 24px -12px rgba(0,0,0,.25);
  transition: transform .3s ease;
}
.sticky-cta-btn { width: 100%; padding: 15px; }
.translate-y-full { transform: translateY(110%); }

/* ── Reveal ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { gap: 20px 56px; }
}

@media (min-width: 1024px) {
  .hero { padding: 72px 0 96px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .cta-final-grid { grid-template-columns: 1fr 420px; gap: 56px; }
  .hero-form-wrap { position: sticky; top: 96px; }
  .sticky-cta { display: none; }
}

/* Header countdown: esconde rótulo < 1024, esconde tudo < 640 (prioriza CTA) */
@media (max-width: 1023px) { .hc-label { display: none; } }
@media (max-width: 639px) { .header-countdown { display: none; } }

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .translate-y-full { transform: translateY(110%); }
}
