/* ==========================================================================
   DRAMA VÍDEOS — Design system
   ========================================================================== */

:root {
  --bg-black: #000000;
  --bg-dark: #0e0e0e;
  --bg-card: #191919;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;

  --gold: #ffc138;
  --gold-soft: #f4cf08;
  --green: #00ff55;
  --green-text: #00d802;

  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-black: #16161a;
  --text-black-muted: #55565c;

  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --radius-pill: 999px;

  --shadow-gold: 0 10px 30px -8px rgba(255, 193, 56, 0.35);
  --shadow-green: 0 12px 28px -8px rgba(0, 255, 85, 0.45);
  --shadow-card: 0 20px 45px -20px rgba(0, 0, 0, 0.6);

  --container: 1100px;
  --font-body: "Raleway", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hidden {
  display: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section,
header,
footer {
  padding: 4.5rem 0;
}

mark {
  background-color: var(--gold-soft);
  color: #16161a;
  padding: 0.05em 0.35em;
  border-radius: 0.3em;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 56, 0.12);
  border: 1px solid rgba(255, 193, 56, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem);
  margin-bottom: 2.5rem;
}

.section-title .sub {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-black-muted);
  margin-top: 0.5rem;
}

.bg-dark .section-title .sub,
.bg-black .section-title .sub {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ---------- Section backgrounds ---------- */

.bg-dark,
.bg-black {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.bg-black {
  background-color: var(--bg-black);
}

.bg-white {
  background-color: var(--bg-white);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 1.05rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-cta {
  background-color: var(--green);
  color: #04220f;
  box-shadow: var(--shadow-green);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.btn-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(0);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.text-black .cta-note {
  color: var(--text-black-muted);
}

/* ---------- Trust badges ---------- */

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-badges .icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.trust-badges .label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-badges .label strong {
  font-weight: 800;
}

/* ==========================================================================
   Header / Hero
   ========================================================================== */

.hero {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  text-align: center;
  color: var(--text-white);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 193, 56, 0.15), transparent),
    var(--bg-dark);
}

.hero .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero .brand span {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(1.75rem, 1.15rem + 2.6vw, 3.1rem);
  max-width: 900px;
  margin: 0 auto 1rem;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero .lead {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: var(--text-muted);
}

.video-frame {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 193, 56, 0.35);
  box-shadow: var(--shadow-card);
  position: relative;
  background: #000;
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-guarantee-line {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

/* ==========================================================================
   Sobre o produto
   ========================================================================== */

.about-grid {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.about-grid .about-media {
  flex: 0 0 auto;
  width: 42%;
  max-width: 320px;
  margin: 0 auto;
}

.about-grid .about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-grid .about-copy {
  flex: 1 1 420px;
}

.about-copy h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
}

.about-copy p {
  color: var(--text-black-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.check-list .icon {
  color: var(--green-text);
  font-size: 1.3rem;
  flex: 0 0 auto;
}

/* device banner */

.device-banner {
  text-align: center;
}

.device-banner img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.device-banner h3 {
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem);
}

.device-banner p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

/* ==========================================================================
   VIP benefits section
   ========================================================================== */

.vip-columns {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.vip-list {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vip-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vip-list .icon {
  font-size: 1.9rem;
  color: var(--green-text);
  flex: 0 0 auto;
}

.vip-list strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.objection-cards {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.objection-card {
  background: transparent;
  border: 1px solid rgba(255, 193, 56, 0.45);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.objection-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.objection-card h4 strong {
  color: var(--gold);
}

.objection-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Prova social / galeria
   ========================================================================== */

.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonial-grid img {
  width: 300px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Oferta / pricing
   ========================================================================== */

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 193, 56, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #16130a;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.price-card h3 span {
  color: var(--gold);
}

.price-card .plan-tagline {
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 1.75rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.price-features li .icon {
  color: var(--green-text);
}

.price-old {
  font-style: italic;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.75;
  font-size: 1.15rem;
  margin: 0;
}

.price-label {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0.15rem;
}

.price-now {
  font-style: italic;
  font-weight: 800;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 1.5rem;
}

.price-card .btn-cta {
  margin-top: 0;
}

/* ==========================================================================
   Garantia
   ========================================================================== */

.guarantee-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.guarantee-grid img {
  width: 220px;
  flex: 0 0 auto;
  margin: 0 auto;
}

.guarantee-copy {
  flex: 1 1 380px;
  text-align: center;
}

@media (min-width: 769px) {
  .guarantee-copy {
    text-align: left;
  }
}

.guarantee-copy h2 {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
}

.guarantee-copy p {
  color: var(--text-black-muted);
  line-height: 1.65;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question .fa-chevron {
  transition: transform 0.2s ease;
  color: var(--gold);
  flex: 0 0 auto;
}

.faq-item.open .faq-question .fa-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-black-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-black);
  color: var(--text-muted);
  text-align: center;
  padding: 2.75rem 0;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 193, 56, 0.3);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn-cta {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* ==========================================================================
   Exit offer page (backredirect)
   ========================================================================== */

.offer-pill {
  display: inline-block;
  background: var(--green);
  color: #04220f;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.countdown-wrap {
  max-width: 300px;
  margin: 0 auto 1.75rem;
}

.countdown-wrap .countdown-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.countdown-wrap #countdown {
  font-weight: 800;
  font-style: italic;
  font-size: 2.75rem;
  color: var(--green);
}

.exit-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-grid .about-media {
    width: 65%;
  }

  .check-list li,
  .vip-list li {
    justify-content: center;
    text-align: left;
  }

  .vip-columns {
    gap: 2rem;
  }

  .guarantee-grid {
    text-align: center;
  }
}

@media (max-width: 640px) {
  section, header, footer {
    padding: 3rem 0;
  }

  .trust-badges {
    gap: 1.1rem;
  }

  .price-card.featured {
    transform: none;
  }

  .testimonial-grid img {
    width: 100%;
    max-width: 320px;
  }

  body {
    padding-bottom: 4.25rem;
  }
}
