@charset "utf-8";
/* CSS Document */
/* BOTONES */
.boton{
display:inline-block;
padding:6px 12px;
background:#003366;
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
text-decoration:none;
font-size:13px;
margin:5px;
}

.boton:hover{
background:#043e29;
}

.boton-rojo{
display:inline-block;
background:#b00020;
color:#fff;
padding:5px 10px;
border-radius:6px;
cursor:pointer;
text-decoration:none;
}

.boton-rojo:hover{
background:#7a0016;
}

/* CARDS GENERALES (INDEX) */
.cards-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
max-width:1200px;
margin:auto;
padding:20px;
}


.card{
background:#f4f6f9;
border-radius:16px;
padding:25px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.card-link{
display:block;
text-decoration:none;
color:#003366;
width:220px; /* 🔥 clave */
}
.iconito{
    font-size: 21px;
    margin-right: 3px;
    vertical-align: middle;
}

/* UTILIDADES */
.centrado{
text-align:center;
}

.fecha{
font-size:0.8em;
text-align:center;
}
.ponentes{
max-width:1200px;
margin:40px auto;
padding:20px;
text-align:center;
}

.ponentes h2{
margin-bottom:20px;
color:#003366;
}

.ponentes-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.ponente-card{
background:#ffffff;
padding:10px 15px;
border-radius:8px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
font-size:14px;
}
.ponente-card img{
width:150px;
height:auto;
border-radius:8px;
border:1px solid #c7a4ff; /* morado claro */
transition:0.3s;
}

/* HOVER */
.ponente-card img:hover{
border:1px solid #6a1b9a; /* morado fuerte */
transform:scale(1.05);
}
.ponente-card img{
box-shadow:0 2px 8px rgba(0,0,0,0.15);
}
.ponente-card img{
display:block;
margin:0 auto 10px auto; /* 🔥 centra la imagen */
width:150px;
height:auto;
border-radius:8px;
border:1px solid #c7a4ff;
transition:0.3s;
}

.ponente-card img:hover{
border:1px solid #6a1b9a;
transform:scale(1.05);
}
/* CONTENEDOR DE OPCIONES (activo / representante) */
.grupo-opciones{
display:flex;
justify-content:center;
gap:20px; /* separación entre bloques */
flex-wrap:wrap;
margin:10px 0;
}

/* CADA BLOQUE */
.grupo-opciones .confirmacion{
background:rgba(255,255,255,0.05);
padding:10px;
border-radius:8px;
}

/* 📱 EN CELULAR */
@media(max-width:768px){
.grupo-opciones{
flex-direction:column;
align-items:center;
}

.grupo-opciones .confirmacion{
width:100%;
}
}
