/* Estilos Globais e Customizações */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* Glassmorphism para o Menu */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 87, 164, 0.1);
}

/* Gradientes e Texturas */
.hero-gradient {
    background: linear-gradient(135deg, rgba(0,63,125,0.95) 0%, rgba(0,87,164,0.8) 100%);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Animações Customizadas */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.slide-bg {
    transition: transform 8s ease;
}

.active-slide .slide-bg {
    transform: scale(1.1);
}

/* Ajustes de Tipografia para Artigos */
article h2 {
    font-family: 'Montserrat', sans-serif;
    color: #003F7D;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

article h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0057A4;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

article p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #475569;
}

article ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

article li {
    margin-bottom: 0.5rem;
}
