/* =====================================================
   BANNER SUPERIOR
===================================================== */
body{
overflow-x:hidden;
}

/* CTA INSCRIPCION */
.cta-inscripcion{
text-align:center;
margin:25px auto 10px auto;
}

.cta-texto{
margin-top:10px;
font-size:14px;
color:#666;
letter-spacing:0.5px;
}

/* BOTON */
.btn-banner{
display:inline-block;
padding:14px 34px;
background:linear-gradient(135deg,#4a6fd1,#150b9b);
color:white;
font-weight:600;
font-size:17px;
border-radius:30px;
text-decoration:none;
transition:0.25s;
box-shadow:0 6px 16px rgba(0,0,0,0.2);
}

.btn-banner:hover{
transform:translateY(-2px);
box-shadow:0 8px 22px rgba(0,0,0,0.25);
}

.btn-banner{
position:relative;
overflow:hidden;
}

/* ANIMACIÓN PULSE */
.btn-banner::after{
content:"";
position:absolute;
top:50%;
left:50%;
width:100%;
height:100%;
background:rgba(255,255,255,0.3);
border-radius:50%;
transform:translate(-50%,-50%) scale(0.5);
opacity:0;
animation:pulse 2.5s infinite;
}

@keyframes pulse{
0%{opacity:0.4; transform:translate(-50%,-50%) scale(0.8);}
70%{opacity:0; transform:translate(-50%,-50%) scale(1.3);}
100%{opacity:0;}
}


.btn-banner:hover{
transform:translateY(-2px) scale(1.03);
}

/* TEXTO SOBRE FOTO */
.banner-text {
    color: white;
    font-size: 18px;
    font-weight: 500;

}


/* =====================================================
   CAJAS FECHA / UBICACION / PARTICIPANTES
===================================================== */
.actual-info {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.info-card {
    background: white;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ICONO */
.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

/* COLORES ICONOS */
.info-fecha .info-icon {
    background: #dbe8ff;
    color: #3f7ad8;
}

.info-lugar .info-icon {
    background: #dff3e7;
    color: #2e9c5d;
}

.info-participantes .info-icon {
    background: #efe3ff;
    color: #7a4fd3;
}

/* TEXTO */
.info-label {
    font-size: 13px;
    color: #666;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

/* =====================================================
   GRID PROGRAMACION + PREMIOS
===================================================== */
.actual-grid {
    margin: 3px auto 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;

}

.actual-block {
    background: white;
    padding: 18px 25px 15px 25px; /* top right bottom left */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #dfe6ff;
}

/* TITULO */

.block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #150b9b;
    margin-bottom: 15px;
    margin-top: 0;
    
}

/* =====================================================
   PROGRAMACION - LInea de tiempo q pasa por los dots
===================================================== */
.programa-timeline {
  position: relative;
  padding-left: 40px; /* separa los dots del texto */
  list-style: none;
}

/* Items */
.programa-timeline li {
  position: relative;
  padding: 12px 0;
}

/* Dots */
.programa-timeline li::before {
  content: "";
  position: absolute;
  left: -15px; /* junto al texto, sin línea vertical */
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #150b9b;
  border-radius: 50%;
  transition: 0.2s;
}

/* Hover */
.programa-timeline li:hover::before {
  background: #3f7ad8;
  transform: translateY(-50%) scale(1.2);
}

/* horas */
.hora {
    color: #150b9b;
    font-weight: 600;
    margin-right: 6px;

}

/* =====================================================
   PREMIOS
===================================================== */
.premios-lista {
    list-style: none;
    padding: 0;
    margin: 0;

}

.premios-lista li {
    padding: 10px 0;
    display: flex;
    align-items: center;

}

/* ICONOS PREMIOS */
.premio-icon {
    font-size: 20px;
    margin-right: 8px;

}

/* colores */
.estrella {
    color: #d62828;
}

.aceite {
    color: #c99700;
}

.equipacion {
    color: #2a7de1;
}

.chorizo {
    color: #b23a2a;
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:768px) {

    .actual-info {
        grid-template-columns: 1fr;
    }

    .actual-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
modal link
===================================================== */

.modal-link {
  text-decoration: none;  /* quita el subrayado */
  color: inherit;         /* mantiene el color del texto */
  display: block;         /* hace todo el li clicable */
}

.modal-link:hover {
  cursor: pointer;
  /* Efectos al pasar el ratón */
  color: #c59d5f;        /* cambio sutil de color al hover */
  opacity: 0.9;          /* ligero cambio visual */
}