/**
 * Estilos para el Directorio Escolar - VERSIÓN FORZADA
 */

:root {
    --tecnm-blue: #1b396a;
    --tecnm-red: #6a1b32;
    --tecnm-gold: #d4af37;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
}

/* MARGEN FORZADO PARA EL TÍTULO */
.directorio-header {
    margin-top: 80px !important;
    background: linear-gradient(135deg, var(--tecnm-blue) 0%, #2a4a8a 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.header-text p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.directory-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--tecnm-gold);
}

.card-info {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 2px solid var(--tecnm-gold);
}

.name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tecnm-blue);
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    background: var(--tecnm-red);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
}

.email {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--tecnm-blue);
    text-decoration: none;
}

.email:hover {
    background: #e3f2fd;
    border-left: 3px solid var(--tecnm-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .directorio-header { margin-top: 70px !important; }
}

@media (max-width: 768px) {
    .directorio-header { margin-top: 60px !important; }
    .header-text h1 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .directorio-header { margin-top: 50px !important; }
    .header-text h1 { font-size: 1.5rem; }
}