@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");

/* ===== RESET BÁSICO ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background-color: #0b0b0c;
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: #fbe8a6;
}

a:focus-visible {
  outline: 2px solid #daaf37;
  outline-offset: 2px;
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
  --brand-black: #0b0b0c;
  --brand-gold: #daaf37;
  --gold-50: #fef9e7;
  --gold-100: #fef3d0;
  --gold-200: #fee7a1;
  --gold-300: #daaf37;
  --gold-400: #c99f2f;
  --gold-500: #b88f28;
  --gold-600: #a07f20;
  --gold-700: #7a6118;
  --gray-light: #e5e7eb;
  --gray-medium: #d1d5db;
  --max-width: 1200px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===== SECTION ===== */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ===== TICKER BLACK FRIDAY ===== */
.ticker {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-top: 1px solid rgba(218, 175, 55, 0.4);
  border-bottom: 1px solid rgba(218, 175, 55, 0.4);
  padding: 0.75rem 0;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}

.ticker__track span {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-black);
  margin: 0 2rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== TIPOGRAFIA ===== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 2.5rem;
}

.text-gold {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid var(--gold-600);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold-700) 0%, var(--gold-500) 30%, var(--gold-300) 60%, var(--gold-50) 100%);
  color: var(--brand-black);
  border-color: var(--gold-600);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(218, 175, 55, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  color: var(--brand-black);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-100);
  border-color: var(--gold-600);
}

.btn-secondary:hover {
  background: rgba(218, 175, 55, 0.1);
  color: var(--gold-50);
}

.btn-large {
  padding: 1.125rem 2rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.btn-full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 2px;
}

/* ===== HERO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--gray-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image img {
  border-radius: 1rem;
  border: 1px solid rgba(218, 175, 55, 0.6);
  box-shadow: inset 0 0 0 1px rgba(218, 175, 55, 0.35), 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ===== PROVAS SOCIAIS ===== */
.provas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .provas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(218, 175, 55, 0.6);
  box-shadow: inset 0 0 0 1px rgba(218, 175, 55, 0.35), 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease;
}

.card-image:hover {
  border-color: var(--gold-400);
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

/* ===== MÓDULOS ===== */
.modulos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .modulos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-bonus {
  position: relative;
  border: 2px solid var(--gold-600);
  box-shadow: 0 0 30px rgba(218, 175, 55, 0.4), inset 0 0 0 1px rgba(218, 175, 55, 0.55);
  transition: transform 0.3s ease;
}

.card-bonus:hover {
  transform: scale(1.05);
}

.bonus-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--gold-300) 42%, var(--gold-500) 70%, var(--gold-700) 100%);
  color: var(--brand-black);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(218, 175, 55, 0.6);
  transition: border-color 0.2s ease;
}

.benefit-card:hover {
  border-color: var(--gold-400);
}

.benefit-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 175, 55, 0.2);
  color: var(--gold-400);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--gray-medium);
}

/* ===== TWO COLUMN GRID ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(218, 175, 55, 0.6);
  box-shadow: inset 0 0 0 1px rgba(218, 175, 55, 0.35);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.feature-text {
  font-size: 1.125rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li,
.checklist-negative li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.checklist li::before {
  content: "✓";
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
}

.checklist-negative li::before {
  content: "✗";
  color: var(--gray-medium);
  flex-shrink: 0;
}

/* ===== CALLOUT BOX ===== */
.callout-box {
  max-width: 56rem;
  margin: 3rem auto 0;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(218, 175, 55, 0.6);
  text-align: center;
}

.callout-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.callout-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.callout-cta {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.callout-arrow {
  font-size: 2rem;
  color: var(--brand-gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ===== BONUS TABLE ===== */
.bonus-table {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(218, 175, 55, 0.6);
  overflow: hidden;
}

.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(218, 175, 55, 0.25);
}

.bonus-item:last-child {
  border-bottom: none;
}

.bonus-name {
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
}

.bonus-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--brand-gold);
}

.bonus-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.bonus-text {
  color: var(--gray-medium);
  margin-top: 0.5rem;
}

.bonus-incluidos {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PRICE BOX ===== */
.price-box {
  max-width: 40rem;
  margin: 3rem auto 0;
  padding: 2rem;
  border-radius: 1rem;
  background: #000;
  border: 2px solid var(--gold-600);
  text-align: center;
}

.price-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-medium);
  margin-bottom: 0.5rem;
}

.price-old {
  font-size: 1.5rem;
  color: var(--gray-medium);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.price-main {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.price-installment {
  font-size: 1.25rem;
  color: var(--brand-gold);
  margin-bottom: 2rem;
}

.price-methods {
  font-size: 0.875rem;
  color: var(--gray-medium);
  margin-top: 1rem;
}

/* ===== CTA BOX ===== */
.cta-box {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold-600);
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-divider {
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  height: 1px;
  opacity: 0.5;
  margin: 2rem 0;
}

.cta-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-price-alt {
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.cta-secure {
  font-size: 0.875rem;
  color: var(--gray-medium);
  margin-top: 1rem;
  text-align: center;
}

/* ===== QUEM GUIA ===== */
.quem-guia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .quem-guia-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quem-guia-pre-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.quem-guia-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
}

.quem-guia-text {
  font-size: 1.125rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quem-guia-text-secondary {
  font-size: 1rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(218, 175, 55, 0.6);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.6);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-400);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--gray-medium);
}

/* ===== FOOTER STYLES ===== */
.footer-cta-section {
  background: #0b0b0c;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.footer-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.footer-cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.footer {
  background: #000;
  padding: 2rem 0;
  border-top: 1px solid rgba(218, 175, 55, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-text {
  font-size: 0.875rem;
  color: var(--gray-medium);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-medium);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-gold);
}
