:root {
  --primary: #024fc4;
  --primary-dark: #0015cf;
  --primary-light: #1a6ae8;
  --accent: #ff7811;
  --accent-glow: #ffb347;
  --success: #52b52f;
  --danger: #c21928;
  --dark: #2e3238;
  --muted: #7b7b7b;
  --bg: #f4f7fc;
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 8px 32px rgba(2, 79, 196, 0.12);
  --shadow-lg: 0 20px 60px rgba(2, 79, 196, 0.18);
  --font: 'Ubuntu', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

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

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 21, 207, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.5rem; }

.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: all 0.2s;
}

.nav-link:hover { background: rgba(255,255,255,0.15); color: #fff; }

.nav-link.active { background: rgba(255,255,255,0.2); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 2rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5500 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 120, 17, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 120, 17, 0.5);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(2, 79, 196, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn-block { width: 100%; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 55%, #000a5e 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,120,17,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text h1 span { color: var(--accent-glow); }

.hero-text p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-gold {
  background: linear-gradient(135deg, rgba(255,179,71,0.3), rgba(255,120,17,0.2));
  border-color: var(--accent);
  color: var(--accent-glow);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body { padding: 1.5rem; }

.card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Raffle cards */
.raffles-section { padding: 3rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title p { color: var(--muted); }

.raffles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.raffle-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.raffle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.raffle-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.raffle-card-img .prize-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.raffle-card-body { padding: 1.25rem; }

.raffle-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.raffle-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.countdown-item {
  background: var(--bg);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  text-align: center;
  min-width: 50px;
}

.countdown-item .num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.countdown-item .lbl {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
}

/* Banner carousel */
.banner-carousel {
  padding: 2rem 0;
  background: var(--white);
}

.banner-carousel-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner-track {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--bg);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.banner-slide.active { opacity: 1; z-index: 1; }

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}

.banner-dot.active { background: var(--accent); transform: scale(1.15); }

.raffle-card-img-photo {
  height: 180px;
  background: var(--bg);
  padding: 0;
}

.raffle-card-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features */
.features {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature-item:hover { transform: translateY(-4px); }

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p { color: var(--muted); font-size: 0.9rem; }

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1d22 100%);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-glow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Premios flow */
.premios-page {
  min-height: calc(100vh - 80px);
  padding: 2rem 0 4rem;
}

.premios-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #dde5f0;
  z-index: 0;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dde5f0;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 3px solid var(--bg);
}

.step-dot.active .step-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(2, 79, 196, 0.4);
}

.step-dot.done .step-circle {
  background: var(--success);
  color: #fff;
}

.step-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
  max-width: 80px;
}

.step-dot.active .step-label { color: var(--primary); font-weight: 700; }

.step-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.premios-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.premios-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.premios-card-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.premios-card-header p { opacity: 0.85; font-size: 0.95rem; }

.premios-card-body { padding: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group label .required { color: var(--danger); }

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 79, 196, 0.1);
}

.form-control.error { border-color: var(--danger); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-icon { font-size: 1.2rem; flex-shrink: 0; }

.alert-info {
  background: rgba(2, 79, 196, 0.08);
  border: 1px solid rgba(2, 79, 196, 0.2);
  color: var(--primary);
}

.alert-warning {
  background: rgba(255, 120, 17, 0.1);
  border: 1px solid rgba(255, 120, 17, 0.3);
  color: #b35a00;
}

.alert-success {
  background: rgba(82, 181, 47, 0.1);
  border: 1px solid rgba(82, 181, 47, 0.3);
  color: #2d7a1a;
}

.alert-danger {
  background: rgba(194, 25, 40, 0.08);
  border: 1px solid rgba(194, 25, 40, 0.2);
  color: var(--danger);
}

.winner-preview {
  background: linear-gradient(135deg, rgba(2,79,196,0.05), rgba(255,120,17,0.05));
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
}

.winner-preview.visible { display: block; animation: fadeIn 0.4s ease; }

.winner-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.winner-trophy {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #ff5500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.winner-preview h3 { color: var(--primary); font-size: 1.2rem; }
.winner-preview .subtitle { color: var(--muted); font-size: 0.9rem; }

.winner-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.winner-detail {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.winner-detail .label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winner-detail .value {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.prize-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  text-align: center;
}

.prize-highlight .label { color: rgba(255,255,255,0.8); }
.prize-highlight .value { font-size: 1.8rem; color: var(--accent-glow); }

.bank-notice {
  background: linear-gradient(135deg, rgba(2,79,196,0.06), rgba(0,21,207,0.04));
  border: 2px solid rgba(2, 79, 196, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.bank-notice h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.bank-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.6rem 0.85rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  border: 1px solid rgba(2, 79, 196, 0.1);
}

.bank-item .check { color: var(--success); }

.bank-notice p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.pix-section {
  text-align: center;
  padding: 1rem 0;
}

.pix-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.pix-label { color: var(--muted); margin-bottom: 1.5rem; }

.qr-container {
  display: inline-block;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.qr-container canvas, .qr-container img { display: block; }

.pix-copy {
  background: var(--bg);
  border: 2px dashed var(--primary-light);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  word-break: break-all;
  font-size: 0.8rem;
  color: var(--dark);
  font-family: monospace;
  position: relative;
}

.pix-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pix-info-item {
  background: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.pix-info-item .label { font-size: 0.75rem; color: var(--muted); }
.pix-info-item .value { font-weight: 700; color: var(--dark); }

.success-screen {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success), #3d9a22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  animation: pulse 2s ease infinite;
  box-shadow: 0 8px 30px rgba(82, 181, 47, 0.4);
}

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

.success-screen h2 {
  color: var(--success);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.success-screen p {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.wpp-notice {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.wpp-notice .wpp-icon { font-size: 2rem; flex-shrink: 0; }
.wpp-notice strong { display: block; margin-bottom: 0.25rem; }

.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  z-index: 9999;
  animation: confetti-fall linear forwards;
  pointer-events: none;
}

@keyframes confetti-fall {
  to { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 1.5rem; }
  .hero-badges { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .winner-details { grid-template-columns: 1fr; }
  .bank-list { grid-template-columns: 1fr; }
  .pix-info { grid-template-columns: 1fr; }
  .step-label { font-size: 0.6rem; max-width: 60px; }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .nav.open { display: flex; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .premios-card-body { padding: 1.25rem; }
}

/* Landing page */
.landing-body { background: var(--bg); }

.landing-hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 55%, #000a5e 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  overflow: hidden;
  position: relative;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,120,17,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.landing-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 1rem 0;
}

.landing-hero-text h1 span { color: var(--accent-glow); }

.landing-hero-text p {
  font-size: 1.1rem;
  opacity: 0.92;
  line-height: 1.7;
  max-width: 520px;
}

.landing-pulse { animation: landingPulse 2s ease infinite; }

@keyframes landingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,179,71,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,179,71,0); }
}

.landing-steps {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.landing-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.landing-step span {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup img {
  width: 200px;
  height: 200px;
  border-radius: 2.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,120,17,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.landing-verify { padding: 3rem 0; margin-top: -2rem; position: relative; z-index: 2; }

.landing-verify-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.landing-verify-header { text-align: center; margin-bottom: 1.5rem; }

.landing-verify-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.landing-verify-header p { color: var(--muted); font-size: 0.95rem; }
.landing-verify-header small { color: var(--muted); font-size: 0.8rem; }

.verify-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg);
  padding: 0.35rem;
  border-radius: 2rem;
}

.verify-tab {
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.verify-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(2, 79, 196, 0.3);
}

.verify-result {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed #e2e8f0;
  animation: fadeIn 0.5s ease;
}

.verify-result.visible { display: block; }

.verify-result-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent), #ff5500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,120,17,0.4);
}

.verify-result h3 { color: var(--primary); font-size: 1.4rem; }
.verify-result-sub { color: var(--muted); margin-bottom: 1rem; }

.verify-result-prize {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.verify-result-prize span { display: block; font-size: 0.8rem; opacity: 0.85; }
.verify-result-prize strong { font-size: 1.8rem; color: var(--accent-glow); }

.verify-result-list { text-align: left; margin-bottom: 1rem; }

.contemplacao-item {
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid #e2e8f0;
}

.contemplacao-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.contemplacao-ticket { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.contemplacao-valor { font-weight: 700; color: var(--success); font-size: 0.95rem; }
.contemplacao-promo { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

.contemplacao-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.35rem;
}

.verify-download-cta { margin-top: 0.5rem; }

.ticket-pick-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
}

.ticket-pick-btn small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.ticket-pick-btn.active,
.ticket-pick-btn:hover {
  border-color: var(--primary);
  background: rgba(2, 79, 196, 0.06);
}

.landing-download { padding: 3rem 0; }

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 3px solid transparent;
  transition: all 0.4s;
}

.download-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,120,17,0.15), var(--shadow-lg);
  animation: downloadGlow 2s ease infinite;
}

@keyframes downloadGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,120,17,0.15), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 12px rgba(255,120,17,0.08), var(--shadow-lg); }
}

.download-icon-wrap img {
  width: 120px;
  height: 120px;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.download-content h2 { color: var(--primary); font-size: 1.75rem; margin-bottom: 0.5rem; }
.download-content > p { color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }

.download-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.download-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.download-features i { color: var(--success); }

.download-btn {
  display: inline-flex;
  font-size: 1.15rem;
  padding: 1rem 2rem;
}

.download-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.landing-info { padding: 2rem 0 3rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.info-item h3 { color: var(--primary); margin-bottom: 0.4rem; font-size: 1rem; }
.info-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.info-item a { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
  .landing-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .landing-hero-text p { margin: 0 auto; }
  .landing-steps { justify-content: center; }
  .landing-hero-visual { order: -1; }
  .phone-mockup img { width: 140px; height: 140px; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-icon-wrap { display: flex; justify-content: center; }
  .download-btn { width: 100%; justify-content: center; }
  .info-grid { grid-template-columns: 1fr; }
  .landing-verify-card { padding: 1.25rem; }
}