/* ============================================================
   COMPLIANCE COUNT — Em Breve / styles.css
   ============================================================ */

:root {
  --cc-dark:   #3f5120;
  --cc-green:  #7b9a2b;
  --cc-light:  #c2d680;
  --cc-tint:   #f2f6e8;
  --cc-ink:    #1a2010;
  --cc-muted:  #5a6645;
  --cc-border: #d4debc;

  --ff-serif: 'DM Serif Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--cc-dark);
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ── Fundo decorativo ────────────────────────────────────── */
.bg-word {
  position: fixed;
  bottom: -5%;
  right: -2%;
  font-family: var(--ff-sans);
  font-weight: 900;
  font-size: clamp(120px, 20vw, 280px);
  line-height: .85;
  color: rgba(255,255,255,.03);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.bg-circle {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,154,43,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout principal ────────────────────────────────────── */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
  min-height: 100svh;
}

/* ── Logo ────────────────────────────────────────────────── */
.logo {
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.logo img {
  height: 36px;
  width: auto;
}

/* ── Kicker ──────────────────────────────────────────────── */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}
.kicker-line { width: 28px; height: 1px; background: var(--cc-green); }
.kicker span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cc-light);
}

/* ── Headline ────────────────────────────────────────────── */
.headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.headline em { font-style: italic; color: var(--cc-light); }

/* ── Subtexto ────────────────────────────────────────────── */
.subtext {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  text-align: center;
  max-width: 480px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}

/* ── Countdown ───────────────────────────────────────────── */
.countdown {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s forwards;
}
.count-item {
  padding: 28px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.count-item:last-child { border-right: none; }
.count-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.count-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ── Formulário de aviso ─────────────────────────────────── */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .6s forwards;
}
.notify-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .9rem;
  outline: none;
  border-radius: 3px 0 0 3px;
  transition: border-color .2s, background .2s;
}
.notify-form input::placeholder { color: rgba(255,255,255,.25); }
.notify-form input:focus {
  border-color: var(--cc-green);
  background: rgba(255,255,255,.1);
}
.notify-btn {
  padding: 14px 24px;
  background: var(--cc-green);
  color: #fff;
  border: none;
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  transition: background .2s;
  white-space: nowrap;
}
.notify-btn:hover { background: var(--cc-light); color: var(--cc-ink); }
.notify-success {
  display: none;
  font-size: .85rem;
  color: var(--cc-light);
  text-align: center;
  padding: 12px 0;
}

/* ── Contatos ────────────────────────────────────────────── */
.contacts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .7s forwards;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  text-decoration: none;
}
.contact-item:hover { color: var(--cc-light); }
.contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: .5;
}
.contact-item:hover svg { opacity: 1; }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cc-green);
  padding: 12px 0;
  overflow: hidden;
  z-index: 10;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerAnim 32s linear infinite;
}
.ticker-item {
  padding: 0 28px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.ticker-item::after {
  content: '◆';
  font-size: .4rem;
  color: rgba(255,255,255,.3);
}

/* ── Animações ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tickerAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .countdown { gap: 0; }
  .count-item { padding: 20px 20px; }
  .count-num { font-size: 2rem; }
  .notify-form { flex-direction: column; }
  .notify-form input { border-right: 1px solid rgba(255,255,255,.12); border-bottom: none; border-radius: 3px 3px 0 0; }
  .notify-btn { border-radius: 0 0 3px 3px; text-align: center; }
  .contacts { gap: 20px; flex-direction: column; align-items: center; }
  .logo img { height: 28px; }
}

/* ── Preferências de cookies (link) ──────────────────────── */
.cookie-pref {
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.cookie-pref a {
  font-size: .72rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.cookie-pref a:hover { color: var(--cc-light); }

/* ── CONSENTIMENTO DE COOKIES (LGPD) ────────────────────────
   Banner + link de preferências
════════════════════════════════════════════════════════════ */
.cc-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 68px;
  z-index: 1050;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cc-consent.visivel { opacity: 1; transform: none; }
.cc-consent-texto strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-light);
  margin-bottom: 8px;
}
.cc-consent-texto p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.cc-consent-acoes { display: flex; gap: 10px; flex-shrink: 0; }
.btn-consent {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 12px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-consent.aceitar {
  background: var(--cc-green);
  border: none;
  color: #fff;
}
.btn-consent.aceitar:hover { background: var(--cc-light); color: var(--cc-ink); }
.btn-consent.recusar {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
}
.btn-consent.recusar:hover { color: #fff; border-color: rgba(255,255,255,.55); }

@media (max-width: 575.98px) {
  .cc-consent {
    left: 12px; right: 12px; bottom: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 18px;
  }
  .cc-consent-acoes { justify-content: stretch; }
  .btn-consent { flex: 1; padding: 13px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-consent { transition: none; }
}
