/* --- Contenedor Principal --- */
.enei-sedes-wrapper {
    font-family: 'Montserrat', sans-serif;
    margin: 0px 0;
}

.enei-sedes-grid {
    display: grid;
    gap: 30px;
}

.enei-grid-col-1 { grid-template-columns: 1fr; }
.enei-grid-col-2 { grid-template-columns: repeat(2, 1fr); }
.enei-grid-col-3 { grid-template-columns: repeat(3, 1fr); }
.enei-grid-col-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Diseño de Tarjeta (Card) --- */
.enei-sede-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enei-sede-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 86, 161, 0.1); /* Sombra tenue en Azul ENEI */
}

/* --- Cabecera de la Tarjeta --- */
.enei-sede-header {
    background-color: #f8fbff; /* Gris azulado muy claro */
    border-bottom: 1px solid #eef2f6;
    padding: 20px;
}

.enei-sede-header h3 {
    margin: 0;
    color: #0056a1; /* Azul ENEI */
    font-size: 20px;
    font-weight: 700;
}

/* --- Cuerpo de la Tarjeta --- */
.enei-sede-body {
    padding: 20px;
    flex-grow: 1;
}

.enei-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 15px 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.5;
}

.enei-info-item:last-child {
    margin-bottom: 0;
}

.enei-info-item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #ffc107; /* Amarillo institucional ENEI para los íconos */
    margin-top: 2px;
}

/* --- Pie Inteligente (Correo + Copiar) --- */
.enei-sede-footer {
    padding: 15px 20px;
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
}

.enei-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8fbff;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px dashed #d1e3f8;
}

.enei-link-correo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0056a1 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
    transition: color 0.2s ease;
}

.enei-link-correo svg {
    width: 16px;
    height: 16px;
}

.enei-link-correo:hover {
    color: #003d73 !important;
    text-decoration: underline;
}

.enei-btn-copiar {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.enei-btn-copiar svg {
    width: 18px;
    height: 18px;
}

.enei-btn-copiar:hover {
    background: #eef2f6;
    color: #0056a1;
}

.enei-btn-copiar.copiado {
    background: #e6f4ea;
    color: #28a745;
}

/* --- Responsividad --- */
@media (max-width: 980px) {
    .enei-grid-col-3, .enei-grid-col-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .enei-grid-col-2, .enei-grid-col-3, .enei-grid-col-4 { grid-template-columns: 1fr; }
}