/* Premio Section */
.premio {
  position: relative;
  border: 2px solid #00BFFF;
  border-radius: 20px;
  padding: 50px 32px;
  margin: 50px auto;
  max-width: 700px;
  box-shadow: 0px 20px 40px rgba(0, 191, 255, 0.3);
  overflow: hidden;
  border-color: #00BFFF;
  background: linear-gradient(90deg, rgba(0, 60, 255, 0.2) 0%, rgba(0, 200, 255, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* Background overlay con puntos flotantes */
.premio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(92, 228, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(92, 228, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(92, 228, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(92, 228, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
  pointer-events: none;
  z-index: 1;
}

.premio__title-container {
  display: flex;
      flex-direction: row;
      justify-content: center;
      text-align: left;
      width: 100%;
      gap: 8px;
}
h2.premio__title {
  justify-items: center;
}

.premio__title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: -4px;
}

.premio__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Badge Premio Exclusivo */
.premio__badge { 
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 136, 51, 0.297) 0%, rgba(255, 136, 51, 0.41) 100%);
  border: 1px solid #FF8833;
  border-radius: 25px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FF8833;
  box-shadow: 0px 4px 12px rgba(255, 136, 51, 0.3);
}

/* Área del ícono */
.premio__icon-area {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

/* Ícono dentro del título container */
.premio__title-container .premio__icon-area {
  width: 40px;
  height: 40px;
}

/* Imagen del regalo */
.premio__gift-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* Fallback icon cuando no hay imagen */
.premio__gift-icon {
  font-size: 60px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(255, 136, 51, 0.3));
  margin-right: 45px;
}

/* Ocultar ícono cuando está deshabilitado */
.premio__icon-area--hidden {
  display: none;
}

/* Animación del ícono */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Título principal */
.premio__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: left;
  margin: 0 0 4px 0;
  background: linear-gradient(93.67deg, #00C8FF 0%, #3D74FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premio__title-highlight {
  background: linear-gradient(97.12deg, #0582FF 0%, #5CE4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.premio__title-large {
  font-size: 42px;
  line-height: 48px;
  font-weight: 800;
  display: block;
  margin: 8px 0;
  background: linear-gradient(93.67deg, #00C8FF 0%, #3D74FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Texto "de CYBER SOC" */
.premio__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  text-align: center;
  align-self: center;
}

.premio__subtitle-highlight {
  background: linear-gradient(97.12deg, #8A2BE2 0%, #DA70D6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Descripción */
.premio__description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #B3E5FC;
  margin: 0 auto 24px auto;
  max-width: 450px;
  text-align: center;
}

/* Términos y condiciones */
.premio__terms {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #90CAF9;
  margin: 0 auto;
  opacity: 0.8;
  max-width: 400px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .premio {
    margin: 20px;
    padding: 32px 24px;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .premio__content {
    text-align: center;
  }
  
  .premio__icon-area {
    width: 100px;
    height: 100px;
    align-self: center;
  }
  
  .premio__title-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .premio__title-text {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  
  .premio__title-container .premio__icon-area {
    width: 50px;
    height: 50px;
  }
  
  .premio__title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }
  
  .premio__title-large {
    font-size: 36px;
    line-height: 42px;
  }
  
  .premio__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  
  .premio__description {
    font-size: 14px;
    line-height: 20px;
  }
  
  .premio__terms {
    font-size: 11px;
    line-height: 15px;
  }
}

@media (max-width: 480px) {
  .premio {
    margin: 16px;
    padding: 24px 16px;
    gap: 16px;
  }
  
  .premio__icon-area {
    width: 80px;
    height: 80px;
  }
  
  .premio__title-container .premio__icon-area {
    width: 45px;
    height: 45px;
  }
  
  .premio__title-container {
    gap: 8px;
  }
  
  .premio__title-text {
    margin-left: 0;
  }
  
  .premio__title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .premio__title-large {
    font-size: 32px;
    line-height: 36px;
  }
  
  .premio__badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}
