/* ── DESIGN TOKENS ── */
:root {
  --bg: #fafafa;
  --text: #0f0f0f;
  --text-muted: #6b7280;
  --accent: #e11d48;
  --accent-dark: #be123c;
  --radius-video: 16px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 600px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 0;
  overflow-x: hidden;
}

/* Footer empurrado para o fundo */
.footer {
  margin-top: auto;
  padding-bottom: 40px;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  flex-direction: column;
  gap: 36px;
  animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HEADLINE ── */
.headline-block {
  text-align: center;
  width: 100%;
}

.headline {
  font-size: clamp(1.4rem, 5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
  max-width: 100%;
}

.accent {
  color: var(--accent);
  font-weight: 800;
}

@media (min-width: 600px) {
  .headline {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

/* Disclaimer no footer */
.disclaimer {
  font-size: 0.6rem;
  opacity: 0.5;
  max-width: 400px;
  margin: 0 auto;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeIn .8s ease .4s both;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #22c55e;
  border-radius: 50%;
  animation: ping 1.6s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.trust-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  width: 100%;
  max-width: var(--max-w);
  margin-top: auto;
  padding-top: 28px;
  padding-bottom: 40px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--accent);
}

.copyright {
  font-size: .68rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  body {
    padding: 56px 40px 0;
  }

  .container {
    gap: 40px;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  .container,
  .trust-bar {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .status-dot::after {
    animation: none;
  }
}