
 /* ======================================================
   1. TOKENS / VARIÁVEIS
====================================================== */

:root {
  --accent: #898a35;
  --bg: #f7f7f5;
  --text: #33332f;
  --meta: #666666;
}

/* ======================================================
   2. RESET / BASE
====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100svh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);

  display: flex;
  justify-content: center;
}

/* ======================================================
   3. LAYOUT
====================================================== */

.container {
  width: 100%;
  max-width: 420px;
  padding: 48px 24px 32px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 32px;

  text-align: center;
}

/* ======================================================
   4. COMPONENTES
====================================================== */

/* Logo */

.logo img {
  max-width: 90%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Headline */

.headline {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2px;
 

}

/* Vídeos */

.video-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.video-wrapper {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;

  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA */

.cta {
  margin-top: 8px;
}

.cta a {
  display: inline-block;
  width: 100%;
  padding: 16px 20px;

  border-radius: 999px;
  text-decoration: none;

  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: var(--accent);

  transition: transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0.95;
}


.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-whatsapp {
  width: 25px;
  height: 25px;
  opacity: 0.85;
}

.cta .meta-text {
  margin-bottom: 12px; /* ajuste fino aqui */
}

/* ======================================================
   5. TEXTO META (footer, legendas, etc)
====================================================== */

.meta-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--meta);
}

.sub-frase {
  font-size: 0.9rem;
  letter-spacing: 1px;
  
  color: var(--accent);

}



/* fallback caso o navegador não suporte composes */
.video-caption {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--meta);
}

/* Footer */

footer {
  margin-top: 24px;
}

/* ======================================================
   6. ESTADOS / VARIAÇÕES
====================================================== */

/* Fundo com imagem */

.with-image {
  background: linear-gradient(
      rgba(247, 247, 245, 0.9),
      rgba(247, 247, 245, 0.9)
    ),
    url("background.jpg") center / cover no-repeat;
}

/* ======================================================
   7. MEDIA QUERIES
====================================================== */

@media (min-height: 700px) {
  .container {
    padding-top: 64px;
  }
}
     