/* ============================================================
   MODERN ADDITIONS  –  IPSI Wayuu Talatshi
   Reemplaza christmas_additions.css (sin elementos navideños)
   ============================================================ */

/* --- DIVISORES MODERNOS --- */
.divider-wt {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: var(--wt-primary);
}

.divider-wt::before,
.divider-wt::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--wt-accent);
    opacity: 0.4;
}

.divider-icon {
    padding: 0 1rem;
    font-size: 1.5rem;
    color: var(--wt-accent);
    transition: transform 0.3s ease;
}

.divider-icon:hover {
    transform: scale(1.2);
}

/* --- SECCIÓN DE ESTADÍSTICAS INSTITUCIONALES --- */
.stats-section {
    background: var(--grad-primary);
    color: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo sutil */
.stats-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.stats-section h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
}

.stats-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    position: relative;
}

/* Grid de estadísticas */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 1.5rem 1.2rem;
    border-radius: 14px;
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    display: block;
    color: var(--wt-accent);
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.4rem;
    display: block;
}

.stat-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive stats */
@media (max-width: 576px) {
    .stats-grid {
        gap: 0.8rem;
    }

    .stat-card {
        min-width: 90px;
        padding: 1rem 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* --- Dropdown del navbar moderno --- */
.dropdown-menu {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: var(--shadow-card) !important;
    overflow: hidden;
}

.dropdown-item {
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: var(--wt-light);
    color: var(--wt-primary);
    font-weight: 600;
}