/* Global Styles */
body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Index Page Styles */
.level-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .level-card:hover {
        flex-grow: 2.5;
    }
}

.level-card:hover .level-content {
    opacity: 1;
    transform: translateY(0);
}

.level-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out 0.2s;
}

.historical-seal {
    background: radial-gradient(circle at center, rgba(243, 112, 33, 0.1) 0%, transparent 70%);
}

.prestige-badge {
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.texture-overlay {
    background-image: url('../img/texture-pattern.png');
}

/* Admisiones Page Styles */
.header-bg {
    background-image: linear-gradient(rgba(0, 40, 85, 0.8), rgba(0, 40, 85, 0.8)), url('../img/hero_principal.webp');
    background-size: cover;
    background-position: center;
}

/* Nosotros Page Styles */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* AppStickyBar Components Styles */
.sticky-banner {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

body.menu-is-open .sticky-banner {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}