/* =========================
   Reset + base
========================= */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; height:100%; }

body{
  background:#ffffff;
  color:#fff;
  font-family:"Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   Top bar (banner preto)
========================= */
.top-bar{
  background:#000;
  color:#fff;
  text-align:center;

  padding-top: calc(env(safe-area-inset-top, 0px) + 14px);
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 12px;

  font-weight:700;
  font-size: clamp(12px, 3.6vw, 16px);
  line-height:1.25;

  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.topbar-text{ display:block; opacity:0.92; }

.topbar-date{
  display:block;
  margin-top:6px;
  font-weight:800;
  letter-spacing:0.2px;
  font-size:20px;
}

/* =========================
   Banner / imagem
========================= */
.banner{ width:100%; }

.banner img{
  display:block;
  width:100%;
  height:auto;
}

/* =========================
   Checkout (CTA)
========================= */
.checkout{
  max-width: 520px;
  margin: 18px auto 12px;
  padding: 0 16px;
}

.checkout-btn{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  width:100%;
  height:64px;

  border-radius:999px;
  text-decoration:none;

  background: linear-gradient(180deg, #FFE66B 0%, #FFD000 55%, #FFB800 100%);
  border: 1px solid rgba(255,255,255,.35);

  color:#0B2CFF;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:.06em;
  font-size:22px;

  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 6px 0 rgba(0,0,0,.22);

  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
  user-select:none;
}

.checkout-btn:hover{
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 22px 55px rgba(0,0,0,.40),
    0 7px 0 rgba(0,0,0,.20);
}

.checkout-btn:active{
  transform: translateY(3px) scale(.99);
  box-shadow:
    0 12px 28px rgba(0,0,0,.30),
    0 2px 0 rgba(0,0,0,.18);
}

.checkout-btn:focus-visible{
  outline:none;
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 6px 0 rgba(0,0,0,.22),
    0 0 0 4px rgba(255, 208, 0, .35);
}

/* =========================
   Rodapé (mínimo texto)
   Use com: <footer class="site-footer">...
========================= */
.site-footer{
  max-width: 520px;
  margin: 14px auto 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.65);
  text-align: center;

  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-radius: 0;

  margin-bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
}

.footer-row{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  color: #000;
}

.site-footer small{
  font-size:12px;
  line-height:1.2;
  opacity:.85;
  
}

.footer-links{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:12px;
  color: #000;
}

.footer-links a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  color: #000;
}

.footer-links a:hover{ text-decoration: underline; }

.footer-links .dot{ opacity:.35; }

/* Disclosure recolhido */
.footer-disclosure{ margin-top:8px; }

.footer-disclosure summary{
  font-size:12px;
  cursor:pointer;
  opacity:.70;
  list-style:none;
  color: #000;
}

.footer-disclosure summary::-webkit-details-marker{ display:none; }

.footer-disclosure p{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.35;
  opacity:.65;
  color: #000;
}

/* ===== Modal "Ativar Som" ===== */
.sound-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.sound-modal.is-open {
  display: flex;
}

.sound-modal__card {
  width: min(520px, 100%);
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.sound-modal__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}

.sound-modal__text {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 14px;
  opacity: .9;
}

.sound-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sound-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .06s ease, opacity .15s ease;
}

.sound-btn:active {
  transform: scale(0.98);
}

.sound-btn--primary {
  background: #111;
  color: #fff;
  flex: 1;
  min-width: 160px;
}

.sound-btn--ghost {
  background: rgba(17,17,17,.08);
  color: #111;
  flex: 1;
  min-width: 160px;
}

.sound-modal__hint {
  font-size: 12px;
  margin-top: 10px;
  opacity: .7;
}

/* ===== Aviso de som abaixo do vídeo ===== */
.sound-hint{
  width: min(400px, 100%);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.sound-hint__icon{
  font-size: 18px;
  line-height: 1;
}

.sound-hint__text{
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  opacity: .95;
  flex: 1;
}

.sound-hint__btn{
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: transform .06s ease, opacity .15s ease;
  white-space: nowrap;
}

.sound-hint__btn:active{
  transform: scale(0.98);
}

.footer-legal{
  margin-top: 10px;
  opacity: .85;
  line-height: 1.35;
}

.site-footer,
.site-footer *{
  color: #000 !important;
}

.site-footer a{
  color: #000 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sound-note__text {
  color: #000;
  text-align: center;
  align-items: center;
  
}