/* 1. Transformar los recuadros en botones sólidos */
.ssa-em .ssa-time-slot {
    background-color: #f4f4f4 !important; /* Fondo gris claro */
    border: none !important; /* Quitar ese borde feo */
    border-radius: 8px !important; /* Bordes más redondeados */
    color: #444 !important; /* Texto oscuro */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Una sombra muy sutil */
    transition: all 0.3s ease; /* Suavizar la animación */
    font-weight: 600;
}

/* 2. Efecto al pasar el mouse (Hover) - Se pone Naranja */
.ssa-em .ssa-time-slot:hover {
    background-color: #D65A00 !important; /* El Naranja de tu web */
    color: white !important; /* Texto blanco */
    transform: translateY(-2px); /* Se levanta un poquito */
    box-shadow: 0 4px 10px rgba(214, 90, 0, 0.3); /* Sombra naranja brillante */
}

/* 3. Iconos de Mañana/Tarde un poco más grandes */
.ssa-em .ssa-times-header-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
}


.contact-wrapper {
    padding: 40px 20px;
    background: #f7f7f7; /* Fondo suave */
    border-radius: 12px;
    margin-top: 20px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #003E7E;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-name {
    font-size: 22px;
    font-weight: 700;
    color: #003E7E;
    margin-bottom: 8px;
}

.contact-role {
    color: #666;
    margin-bottom: 15px;
}

.contact-info a {
    color: #003E7E;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}



