/* Premium Dark Design System matching 68 Premios Layout */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0b0c10;
  --bg-container: #011627;
  --bg-card: #121620;
  --bg-input: #171d2b;
  
  --primary: #22c55e; /* Bright Green */
  --primary-hover: #16a34a;
  
  --accent-gold: #eab308; /* Gold/Yellow for Checkout */
  --accent-gold-hover: #ca8a04;
  
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-dark: #000000;
  
  --border-color: #1f2937;
  --border-glow: rgba(34, 197, 94, 0.3);
  
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  background-color: #050608;
}

body {
  background-color: var(--bg-primary) !important;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 600px !important;
  margin: 0 auto !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.85);
  min-height: 100vh;
  position: relative;
  padding-bottom: 70px !important; /* space for sticky bar */
}

/* Header */
header {
  background-color: #0d1117;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  color: #1e3a8a; /* deep blue */
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
}

.logo-text span {
  color: #3b82f6; /* bright blue */
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* simple responsive hide for mobile */
  }
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  transition: all 0.2s;
}

.nav-menu a:hover, .nav-menu li.active a {
  color: var(--text-main);
}

.nav-menu li.active a {
  border-bottom: 2px solid #3b82f6;
}

/* Container */
.main-wrapper {
  max-width: 800px;
  margin: 1.5rem auto;
  background-color: var(--bg-container);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

/* Featured Section on Landing Page */
.section-title-blue {
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-image-box {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 9;
}

.featured-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* hidden by default, script will set display: block or manage slides */
}

.featured-image-box img.active {
  display: block;
}

/* Slider Controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.85);
  scale: 1.05;
}

.carousel-arrow.prev {
  left: 0.75rem;
}

.carousel-arrow.next {
  right: 0.75rem;
}

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  background-color: var(--accent-gold);
  width: 16px;
  border-radius: 4px;
}

.featured-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  text-align: center;
  gap: 0.75rem;
}

.featured-info-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

/* Premium Buttons */
.btn-green-buy {
  background-color: var(--primary);
  color: #ffffff;
  width: 100%;
  max-width: 320px;
  padding: 0.85rem;
  font-size: 1.4rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-green-buy:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.draw-info-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.draw-info-meta a {
  color: #3b82f6;
  text-decoration: none;
}

/* Step list */
.how-to-participate {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

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

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-item {
  background-color: var(--bg-card);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.step-num {
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-weight: 700;
}

.step-item h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Winners Grid Section */
.winners-section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.winners-grid-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

.winner-card-mini {
  flex: 0 0 160px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
}

.winner-card-mini img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid #3b82f6;
}

.winner-card-mini .name {
  font-weight: 700;
  color: white;
}

.winner-card-mini .prize {
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* FAQ Accordion Section */
.faq-section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.faq-item {
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  background-color: var(--bg-card);
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  background-color: var(--bg-container);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 1rem 1.25rem;
  max-height: 200px;
  border-top: 1px solid var(--border-color);
}

/* Footer elements */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #0b0c10;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ==========================================
   CHECKOUT PAGE SPECIFIC STYLES
   ========================================== */

/* Progress tracking indicator at top of Multi-step forms */
.checkout-steps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}

.checkout-steps-bar::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--bg-input);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-indicator.active .step-dot {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
}

.step-indicator.completed .step-dot {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.step-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.step-indicator.active .step-label {
  color: white;
}

/* Checkout Progress tracker (numbers purchased bar) */
.orange-progress-bar {
  background-color: var(--bg-card);
  border-radius: 20px;
  height: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.orange-progress-fill {
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
  height: 100%;
  width: 0%;
  transition: width 1s ease;
}

.orange-progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  line-height: 24px;
  left: 0;
  top: 0;
  z-index: 2;
}

/* Predefined cotas grid */
.checkout-ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .checkout-ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkout-ticket-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.checkout-ticket-card:hover {
  border-color: var(--accent-gold);
}

.checkout-ticket-card.selected {
  border-color: var(--accent-gold);
  background-color: rgba(234, 179, 8, 0.05);
}

.checkout-ticket-card .qty {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.checkout-ticket-card .badge-popular {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--warning);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Manual Selector input bar */
.checkout-manual-selector {
  display: flex;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
  margin-bottom: 2rem;
}

.checkout-manual-btn {
  background: transparent;
  border: none;
  width: 50px;
  height: 46px;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.checkout-manual-btn:hover {
  color: white;
}

.checkout-manual-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  text-align: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  outline: none;
}

/* Checkout sticky footer summary block */
.checkout-action-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .checkout-action-block {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
}

.checkout-cost-details {
  display: flex;
  flex-direction: column;
}

.checkout-cost-details .qty-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-cost-details .price-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(34, 197, 94, 0.8);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    transform: scale(1);
  }
}

.btn-gold-submit,
.btn-green-submit {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5);
  text-align: center;
  animation: pulse-green 2s infinite ease-in-out;
}

.btn-gold-submit:hover {
  background-color: var(--accent-gold-hover);
}

/* Modals & popup cards */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: white;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.15);
}

/* CPF lookup popup (numbers acquired) */
.ticket-popup-card {
  background-color: #1c2030;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}

.popup-img-banner {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.ticket-number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 0.4rem;
  max-height: 180px;
  overflow-y: auto;
  padding: 0.5rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ticket-number-item {
  background-color: #0b0c10;
  border: 1px solid #2b2e40;
  border-radius: 4px;
  padding: 0.4rem 0.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Feature check box lists */
.features-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .features-info-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.feature-box-icon {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
}

.feature-box-title {
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.feature-box-desc {
  color: var(--text-muted);
}

/* Client links lists card */
.client-links-card {
  margin-top: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.client-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.client-link-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10000;
}

.toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--danger);
}

.winner-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  border: 2px solid var(--border-color);
}

/* RESULTADO: Video Section */
.resultado-videos-section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  text-align: center;
}

.resultado-tag {
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.resultado-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.resultado-subtitle {
  color: #3b82f6;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.videos-carousel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .videos-carousel-container {
    grid-template-columns: 1fr;
  }
}

.video-slide-item {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.video-preview-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.video-preview-box:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.1);
}

.btn-blue-winners {
  background-color: #3b82f6;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 24px;
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

.btn-blue-winners:hover {
  background-color: #2563eb;
}

/* Winner Banner Grid (BMW, Eclipse, Golf) */
.winner-banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  background-color: #000;
}

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

.banner-item {
  width: 100%;
  overflow: hidden;
}

.banner-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.banner-item:hover img {
  transform: scale(1.05);
}

/* Premium Footer matching original */
footer {
  background-color: #0b0c10;
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem 2rem 2rem;
  color: var(--text-muted);
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-col-brand {
  flex: 1 1 300px;
}

.footer-col-links {
  flex: 1 1 180px;
}

.footer-brand-logo {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-lotep-logo {
  height: 38px;
  display: block;
}

.footer-col-title {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: white;
}

.btn-footer-group-join {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.btn-footer-group-join:hover {
  background-color: var(--primary-hover);
}

.footer-bottom-legal {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  font-size: 0.7rem;
  color: #555;
  line-height: 1.6;
}

/* Mobile Consultar Button in Header */
.mobile-consultar-btn {
  display: none;
}

.header-right-desktop {
  display: block;
}

@media (max-width: 768px) {
  header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 1rem !important;
  }
  
  .mobile-consultar-btn {
    display: inline-block;
    justify-self: start;
    background-color: #22c55e;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  }
  
  .logo-container {
    grid-column: 2;
    justify-self: center;
  }
  
  .header-right-desktop, .nav-menu {
    display: none !important;
  }
}

/* Campaign Featured Card */
.campaign-featured-card {
  background-color: #011627;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.campaign-featured-card .section-title-blue {
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

/* Big Green BUY Button inside Featured Card */
.btn-green-buy {
  background-color: var(--primary);
  color: #ffffff;
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  text-align: center;
  text-decoration: none;
  display: block;
}

/* Floating Bottom Navigation Bar (Mobile & Desktop Centered) */
.mobile-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 60px;
  background-color: #5580f6; /* Original site blue */
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 2px;
  flex: 1;
  height: 100%;
  transition: all 0.2s;
}

.mobile-bottom-nav .nav-item .nav-icon {
  width: 20px;
  height: 20px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: #ffffff;
}

.mobile-bottom-nav .nav-item.active .nav-icon {
  scale: 1.1;
}

/* Circular Arrow buttons for mobile video slider */
.video-carousel-arrows {
  display: none;
}

.v-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #5580f6;
  border: 2px solid white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.v-arrow:hover {
  background-color: #2b5fe8;
  scale: 1.05;
}

@media (max-width: 768px) {
  .videos-carousel-container {
    display: flex !important;
    overflow: hidden;
    scroll-behavior: smooth;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  
  .video-slide-item {
    min-width: 100% !important;
    flex: 0 0 100%;
    padding: 0 0.5rem;
  }
  
  .video-carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

/* Step list override */
.how-to-participate {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.how-to-participate-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.how-to-participate-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.step-item {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-align: center;
}

.step-num {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: white !important;
  background-color: transparent !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 0.5rem !important;
}

.step-item p {
  font-size: 0.95rem !important;
  color: #dfdfdf !important;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Infinite Marquee Carousel for Winners */
.winners-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0.5rem 0;
}

.animate-scroll {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

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

/* Números Premiados Section Styling */
.numeros-premiados-box {
  background-color: #121620;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.numeros-premiados-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 1rem;
  cursor: pointer;
}

.numeros-premiados-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.premiado-item {
  display: grid;
  grid-template-columns: 80px 1fr 110px;
  align-items: center;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 0.5rem;
}

.premiado-item.disponivel {
  border: 1px solid #ca8a04;
  background-color: rgba(202, 138, 4, 0.1);
}

.premiado-item.ganho {
  border: 1px solid var(--border-color);
  background-color: #171d2b;
  opacity: 0.85;
}

.premiado-item .num {
  color: #eab308;
  font-size: 0.9rem;
}

.premiado-item.ganho .num {
  color: #9ca3af;
}

.premiado-item .prize-val-box {
  background: linear-gradient(135deg, #a16207, #ca8a04);
  color: #ffffff;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}

.premiado-item.ganho .prize-val-box {
  background: #2a2f42;
  color: #e2e8f0;
}

.premiado-item .status-badge {
  text-align: right;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.premiado-item.disponivel .status-badge {
  color: #22c55e;
}

.premiado-item.ganho .status-badge {
  color: #9ca3af;
}

.toggle-numeros-btn {
  background: none;
  border: none;
  color: #f97316;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

