@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --navy:       #0b1d3a;
  --navy-mid:   #0f274d;
  --navy-light: #1a3a63;
  --gold:       #ffc107;
  --gold-dark:  #e0a800;
  --gold-glow:  rgba(255, 193, 7, 0.25);
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --muted:      #6c757d;
  --text:       #1a202c;
  --danger-bg:  #fff3cd;
  --danger-bdr: #ffc107;
  --danger-txt: #7d5500;
  --green:      #198754;
  --bonus-bg:   #0d2a4a;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;

  --sh-sm:  0 2px 8px rgba(0,0,0,0.08);
  --sh-md:  0 6px 24px rgba(0,0,0,0.14);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.22);
  --sh-gold: 0 0 40px rgba(255,193,7,0.35);

  --font-title: 'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255,193,7,0.4);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,193,7,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
}
.btn-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-prize {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.btn-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(255,193,7,0.4);
}
.btn-bonus:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,193,7,0.5);
}

/* Efeito Pulso */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,193,7,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(255,193,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
}
.pulse { animation: pulse-ring 2.2s infinite; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cross-badge {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.header-org {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.header-city {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}
.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.c2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.c3 { width: 150px; height: 150px; top: 40%; right: 10%; opacity: 0.08; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 10px;
}
.title-light  { color: var(--white); }
.title-highlight { color: var(--gold); }

.hero-event {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,193,7,0.12);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 16px 32px;
  margin-bottom: 32px;
}
.price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}
.price-value {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.price-cents { font-size: 1.8rem; font-weight: 700; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cards laterais do Hero */
.hero-draw-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.draw-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.draw-icon { font-size: 2rem; margin-bottom: 8px; }
.draw-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.draw-date {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.draw-year {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.draw-notice {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,193,7,0.1);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  line-height: 1.4;
}
.notice-dot { margin-right: 4px; }

.causa-card { border-color: rgba(255,193,7,0.3); }
.causa-text {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 8px;
}
.causa-sub { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ═══════════════════════════════════════
   SEÇÃO HEADER COMUM
═══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(255,193,7,0.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-eyebrow--dark { color: var(--navy); background: rgba(11,29,58,0.08); }
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title--dark { color: var(--navy); }
.section-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.section-subtitle--dark { color: var(--muted); }

/* ═══════════════════════════════════════
   PRÊMIOS
═══════════════════════════════════════ */
.prizes-section {
  background: var(--navy);
  padding: 100px 0 120px;
}

/* Prêmio Principal */
.prize-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--r-xl);
  padding: 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.prize-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.prize-main-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prize-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.patinete-img {
  position: relative;
  width: 100%;
  max-width: 380px;
  /* Imagem real tem fundo branco — colocamos num container branco arredondado */
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,193,7,0.2);
  object-fit: contain;
  transition: transform 0.5s ease;
}
.prize-main:hover .patinete-img { transform: translateY(-10px) scale(1.03); }

.prize-main-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
}

.prize-main-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.prize-name-highlight { color: var(--gold); }

.prize-main-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.prize-main-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.meta-box {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-icon { font-size: 1.2rem; }
.meta-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); font-weight: 600; }
.meta-val { font-family: var(--font-title); font-size: 1.1rem; font-weight: 800; color: var(--gold); }

/* Prêmio Bônus */
.prize-bonus-section {
  background: var(--bonus-bg);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.prize-bonus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.1), transparent);
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,193,7,0.15);
}
.star { color: var(--gold); font-size: 1.5rem; }
.prize-bonus-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
}

.prize-bonus-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
}

.prize-bonus-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.pousada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Imagem é uma colagem vertical (quarto + fachada). Posiciona no centro para equilibrar. */
  object-position: center top;
  transition: transform 0.7s ease;
}
.prize-bonus-card:hover .pousada-img {
  transform: scale(1.04);
  object-position: center center;
}

.bonus-location-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11,29,58,0.85);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,193,7,0.3);
}

.prize-bonus-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
}
.bonus-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bonus-name {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.bonus-desc {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  line-height: 1.65;
}
.bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bonus-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
}
.feat-icon { font-size: 1.1rem; }

.bonus-rule-box {
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.bonus-rule {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 8px;
}
.bonus-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; }

/* ═══════════════════════════════════════
   COMO COMPRAR
═══════════════════════════════════════ */
.how-section {
  background: var(--off-white);
  padding: 100px 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.step-arrow {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 36px;
}

/* Alerta Pix */
.pix-alert {
  display: flex;
  gap: 20px;
  background: var(--danger-bg);
  border: 2px solid var(--danger-bdr);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin-bottom: 56px;
  align-items: flex-start;
}
.pix-alert-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.pix-alert-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--danger-txt);
  margin-bottom: 12px;
}
.pix-rules { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pix-rules li {
  font-size: 0.95rem;
  color: var(--danger-txt);
  line-height: 1.5;
  display: flex;
  gap: 8px;
}
.rule-bullet { color: var(--danger-bdr); font-weight: 800; flex-shrink: 0; }

.how-cta { text-align: center; }
.cta-sub { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }

/* ═══════════════════════════════════════
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
═══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header compacto ao rolar */
.main-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.main-header { transition: padding 0.3s ease, box-shadow 0.3s ease; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.main-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 56px 0 40px;
  text-align: center;
  color: var(--white);
}
.footer-slogan {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-divider {
  width: 48px;
  height: 3px;
  background: rgba(255,193,7,0.3);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.footer-info {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.footer-org { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .prize-main {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }
  .prize-main-meta { justify-content: center; }
  .prize-bonus-card { grid-template-columns: 1fr; }
  .prize-bonus-image { min-height: 280px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-draw-info { flex-direction: row; }
  .draw-card { flex: 1; }
}

@media (max-width: 768px) {
  .main-header .header-inner { flex-direction: column; gap: 12px; }
  .main-nav { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-draw-info { flex-direction: column; }

  .steps-row {
    flex-direction: column;
    gap: 32px;
  }
  .step-arrow { transform: rotate(90deg); align-self: center; padding: 0; }

  .prize-main { padding: 28px 20px; gap: 32px; }
  .prize-bonus-content { padding: 28px 20px; }

  .pix-alert { flex-direction: column; }
  .prize-main-meta { flex-direction: column; }
}
