@import url('https://googleapis.com');

/* Contenedor que envuelve los Filtros y la Rejilla para centrar todo en la pantalla */
.virrey-wrapper-modulo {
    max-width: 1200px; /* Ancho máximo estándar para que no se vaya de extremo a extremo */
    margin: 0 auto;    /* Centra el módulo completo en la página */
    padding: 0 20px;   /* Coloca un colchón de seguridad a los lados en pantallas medianas */
    box-sizing: border-box;
}

/* Ajustes de la barra de filtros superior centrada */
.virrey-filter-bar {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #ffffff;
    padding: 20px 0;
    margin-bottom: 35px;
    align-items: center;
    width: 100%;
}

.virrey-filter-field select {
    font-family: 'Poppins', sans-serif;
    width: 200px;
    padding: 0 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    height: 42px;
    outline: none;
    background-color: #fff;
}

.virrey-btn-buscar {
    font-family: 'Poppins', sans-serif;
    background-color: #009cb1;
    color: white;
    border: none;
    padding: 0 28px;
    font-size: 13.5px;
    font-weight: 600;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}

.virrey-btn-buscar:hover {
    background-color: #007c8e;
}

/* Buscador Derecho Estilizado */
.virrey-filter-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
    background: #fff;
    width: 260px;
}

.virrey-filter-search input {
    font-family: 'Poppins', sans-serif;
    padding: 0 15px;
    border: none;
    font-size: 14px;
    width: 100%;
    height: 100%;
    outline: none;
    color: #334155;
}

.virrey-btn-icon {
    background-color: #009cb1;
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.virrey-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* Rejilla Forzada a Máximo 3 Columnas */
.virrey-grid-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    width: 100%;
}

/* Tarjeta Principal */
.virrey-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

/* Ocultar iconos de imágenes rotas nativos del navegador */
.virrey-card-image img, .virrey-card-image {
    text-indent: -10000px;
}

/* Contenedor de Imagen de Cabecera */
.virrey-card-image {
    height: 185px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 4px solid #71bf44;
}

/* Línea decorativa verde si NO hay imagen */
.virrey-card-line-top {
    height: 6px;
    background-color: #71bf44;
    width: 100%;
}

/* Cuerpo de la Tarjeta */
.virrey-card-content {
    padding: 28px;
}

/* Título Sede */
.virrey-title {
    font-size: 21px;
    color: #1e3a8a;
    margin: 0 0 4px 0;
    font-weight: 700;
}

/* Subtítulo Ciudad */
.virrey-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 15px 0;
    font-weight: 400;
}

/* Línea decorativa horizontal corta */
.virrey-divider-line {
    width: 60px;
    height: 3px;
    background-color: #a3e635;
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Filas de Información */
.virrey-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #334155;
}

.virrey-info-row:last-child {
    margin-bottom: 0;
}

/* Contenedor Circular para los Iconos */
.virrey-icon-box {
    width: 36px;
    min-width: 36px;
    height: 36px;
    background-color: #e0f2fe; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

/* Forzar relleno a todos los SVG internos de las cajas circulares */
.virrey-icon-box svg {
    width: 16px;
    height: 16px;
    fill: #0284c7 !important;
}

/* Textos de las Filas */
.virrey-text {
    flex: 1;
}

.virrey-text strong {
    font-size: 16px;
    color: #0f2c59;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

/* Resaltado de tipo de unidad - MORADO INSTITUCIONAL */
.virrey-highlight {
    color: #a11979 !important;
    font-weight: 600;
    display: inline-block;
}

/* Etiquetas de teléfonos */
.phone-label {
    font-size: 13px;
    color: #1e293b;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.phone-number {
    color: #475569;
    font-weight: 400;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .virrey-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .virrey-grid-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .virrey-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .virrey-filter-field select, .virrey-btn-buscar, .virrey-filter-search {
        width: 100%;
    }
    .virrey-filter-search {
        margin-left: 0;
    }
}
