/* Importar fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: #030917;
  --background-light: #fff;
  --card-bg: #fff;
  --foreground: #ffffff;
  --primary: #4FD1FF;
  --primary-dark: #4FD1FF;
  --muted: #F4F8FC;
  --border: #2a3544;
  --radius: 30px;
  --naranja: #d45826;
}
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* El efecto de brillo cian (Glow) */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
}

/* El degradado de texto que se ve en la imagen */
.text-gradient-cyan {
  background: linear-gradient(90deg, #4FD1FF, #33f0ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-naranja {
  background: linear-gradient(90deg, #d45826, #F64400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Botón principal como el de la captura */
.btn-primary {
  background-color: var(--primary);
  color: #0a0f14;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary);
}
/* =====================================================
   SORTEOS DIGITALES - CSS
   ===================================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text Utilities */
.text-gradient {
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--primary);
}

.text-naranja {
  color: var(--naranja);
  font-size: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(31, 42, 44, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-small {
  padding: 10px 16px;
  font-size: 16px;
  width: 100%;
}

.desarrolladopor{
  text-decoration: none;
  color: #fff;
}

.highlight-orange {
  color: #F64400;
  font-weight: 600;
  font-size: 35px;
}

.badge-orange {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #fff;
  font-size: 35px;

  background: linear-gradient(90deg, #ff7a18, #F64400);
  box-shadow: 0 4px 18px rgba(246,68,0,.35);
}



.desarrolladopor:hover{
  text-decoration: none;
  color: var(--primary);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(0 0 0 / 55%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}


.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
}

.logo {
  font-size: 24px;
  letter-spacing: 2px;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.header-buttons .btn {
  padding: 8px 16px;
  font-size: 20px;
}

/* Ajuste para que el menú desplegable se vea bien sobre el contenido */
.navbar-collapse {
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

/* En pantallas grandes, quitamos el fondo y margen del collapse */
@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* Estilo de los botones dentro del menú */
.navbar-nav .btn {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.navbar-toggler-icon {
    /* Esto invierte el negro del SVG a blanco y ajusta el brillo */
    filter: invert(1) grayscale(1) brightness(2);
}



/* Hero Section */
.hero {
  padding-top: 110px;
  padding-bottom: 0px;
  background: linear-gradient(48deg, #1a2332, #06394d60);
  min-height: 600px;
}

.hero-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  padding: 10px 0 0 0;
  /* margin: 40px; */
}

.hero-full {
  position: relative;
  width: 100%;
  min-height: 400px; /* ajusta según lo que quieras */
  overflow: hidden;
}

.hero-full-image img {
  width: 100%;
  height: auto;          /* mantiene proporción */
  display: block;
  object-fit: cover;     /* asegura que se vea bien si defines altura fija */
}

.hero-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* recorta si sobra */
}
.hero-full {
  min-height: 650px;     /* altura fija para desktop */
}

.hero-image {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: cover;
  /* border-radius: 30px; */
}

.hero-image img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}


.hero {
  position: relative;
  padding-top: 100px;
  min-height: 600px;
  overflow: hidden;
  background: #030917;
}

/* Imagen difuminada de fondo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(35px);
  transform: scale(1.1);
  opacity: 0.45;
  z-index: 1;
}

/* Overlay azul para mantener identidad */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(48deg, #1a2332, #06394d60);
  z-index: 2;
}

/* Contenido arriba del blur */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 40px;
  align-items: center;
}


.hero-text {
  padding: 80px 40px;
  text-align: center;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; align-items: center; /* centra horizontal */ text-align: center; }

.hero-subtitle {
  color: var(--primary);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.orange-subtitle{
  padding: 16px;
  margin-bottom: 16px;
  border-bottom: #ff7a18 solid 1.5px;
}

.hero-title {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-description {
  color: var(--muted);
  margin-bottom: 30px;
  /* max-width: 400px; */
  font-size: 18px;
}


/* Por defecto: desktop */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Desktop: ocultar sección mobile */
.hero-mobile-image {
  display: none !important;
}

/* Tablet y mobile */
@media (max-width: 1210px) {
  .hero-mobile-image {
    display: block !important;
  }
}


/* Tablet y mobile */
@media (max-width: 1210px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }
}

.hero-mobile-image {
  background: #1a23323d;
  padding: 40px 20px;
  /* display: flex;
  justify-content: center; */
}

.hero-mobile-image-wrapper {
  width: auto;
  /* max-width: 520px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mobile-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.hero-mobile-image img {
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.25));
}


/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 52px;
  text-align: center;
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.section-text.small {
  font-size: 15px;
  margin-top: 24px;
}

.section-text.icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Lucky Numbers */
.lucky-numbers {
  background: var(--background);
  text-align: center;
  padding: 60px 20px;
}

.numbers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 32px 0;
}

.number {
  font-size: 40px;
  font-weight: 700;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}

.number:last-child {
  border-right: none;
  padding-right: 0;
}

/* Progress Section */
.progress-section {
  background: #1a23323d;
  text-align: center;
  padding: 60px 20px;
}

.progress-bar {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 20px;
  margin: 32px auto;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff7a18, #F64400);
  border-radius: 20px;
  transition: width 0.5s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
  color: var(--background);
}

/* Prizes Section */
.prizes-section {
  background: var(--background);
  text-align: center;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 100%;
  margin: 30px 200px;
}

.prize-card {
  border-radius: 12px;
  overflow: hidden;
  padding-top: 30px;
}

.prize-card img {
  width: 100%;
  /* height: 100%; */
  max-height: 500px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}


/* Steps Section */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
} */

.steps {
  padding: 100px 20px;
  text-align: center;
}

.steps {
  padding: 100px 20px;
  text-align: center;
  background: #1a23323d;
}
.steps-title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 60px;
}


.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--background);
  border-radius: 18px;
  padding: 45px 30px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .3s ease;
}


.step-card:hover {
  transform: translateY(-0.5px);
  box-shadow: 0 0px 15px rgba(0,212,255,0.15);
  border: solid 1px #00d4ff;
}

.step-card.highlight:hover {
  box-shadow: 0 0px 15px rgba(246,68,0,0.25);
  border: solid 1px #F64400;
}


/* ICONO EN CÍRCULO, DENTRO */
.step-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgb(0, 213, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  box-shadow: 0 1px 15px rgba(0,212,255,.4);
  background: linear-gradient(135deg, #00d4ff, #00aacc);
  
}

/* Card destacada */
.step-card.highlight .step-icon-circle {
  background: #F64400;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a00, #F64400);
  box-shadow: 0 1px 15px rgba(246,68,0,.45);
}

.step-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: #cfd8dc;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}


/* Packages Section */
.packages-section {
  background: var(--background);
  text-align: center;
  padding: 60px 20px;
}

.packages-subtitle {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

.package-card {
  background: #1a23323d;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s ease;
  position: relative;
}

.package-card:hover {
  border-color: var(--primary);
}

.badge-popular {
  position: absolute;
  top: -10px;
  right: -10px;

  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: .6px;
  font-weight: 700;

  color: #fff;
  background: linear-gradient(90deg, #ff7a18, #F64400);
  border-radius: 20px;

  box-shadow: 0 6px 18px rgba(246,68,0,.35);
  text-transform: uppercase;
}


.package-title {
  font-size: 24px;
  margin-bottom: 4px;
}

.package-price {
  font-size: 36px;
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.custom-package {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-text {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.custom-input {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--background);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

.custom-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Verify Section */
.verify-section {
  background: #1a23323d;
  text-align: center;
}

.verify-subtitle {
  font-size: 28px;
  margin-bottom: 32px;
}

.verify-form {
  max-width: 400px;
  margin: 0 auto;
}

.verify-input {
  width: 100%;
  padding: 14px;
  background: var(--background-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--background);
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.verify-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* CTA Banner */
.cta-banner {
  padding: 10px 0 40px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 20px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 50px 50px 10px 50px;
}

.cta-title {
  font-size: 35px;
  margin-bottom: 4px;
}

.cta-description {
  color: var(--muted);
  font-size: 18px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0px 50px;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
}

.social-icon {
  font-size: 18px;
}

.terms-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 12px;
}

.site-end {
  position: relative;
  overflow: hidden;
  background: #030917;
  padding: 0px;
}

/* Imagen blur */
.site-end::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(40px);
  transform: scale(1.15);
  opacity: 0.35;
  z-index: 1;
}

/* Overlay azul */
.site-end::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(48deg, #1a2332, #06394d60);
  z-index: 2;
}

/* Contenido encima */
.site-end > * {
  position: relative;
  z-index: 3;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    margin: 0 auto 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prizes-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .numbers-grid {
    gap: 4px;
  }

  .number {
    font-size: 16px;
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }
}

#carruselSorteo {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-item img {
    filter: brightness(0.9); /* Un toque más oscuro para que resalte */
    transition: transform 0.5s ease;
}


.video-showcase-section {
    padding: 2.5rem 0 3.5rem;
    background: radial-gradient(circle at top, #0f172a 0%, #020617 65%);
  }

  .video-showcase-frame {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .video-showcase-frame::before {
    content: '';
    display: block;
    padding-top: 56.25%;
  }

  .video-showcase-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .result-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .result-title {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #030917;
  }

  .chips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .chip {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .row-results {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .column-result {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    background: #fafafa;
    min-height: 80px;
  }

  .column-result.success { background: linear-gradient(135deg, #4FD1FF, #1E90FF); color: #f0f0f0; }
  .column-result.warning { background: linear-gradient(135deg, #f59e0b, #E6B800 ); color: #f0f0f0; }
  .column-result.empty { background: #f0f0f0; color: #666; font-style: italic; }

  .numero-ganador {
    font-size: 45px;
    font-weight: bold;
  }

  @media (max-width: 768px) { 
    .row-results { 
      flex-direction: column; 
    } 
    .column-result { 
      width: 100%;
    } 
  }

