/* --- Reset Básico e Variáveis --- */
:root {
    /* Edite aqui: Cores principais da escola */
    --cor-primaria: #0056b3; /* Azul escuro */
    --cor-secundaria: #007bff; /* Azul mais claro */
    --cor-destaque: #ffc107; /* Amarelo/Dourado para botões e detalhes */
    --cor-texto: #333;
    --cor-fundo: #f8f9fa;
    --cor-branco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Cabeçalho e Navegação --- */
header {
    background-color: var(--cor-branco);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    gap: 1.2rem;
    flex-direction: row;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cor-primaria);
}
.img_logo{
    height: 2.5rem;
    margin: 0px;
    padding: 0px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 600;
    transition: color 0.3s ease;
}
¡

.nav-menu a:hover {
    color: var(--cor-primaria);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Seção Herói (Banner Principal) --- */
.hero {
    background: url(/media/img/get.jpeg) no-repeat center center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--cor-branco);
    padding: 0 10rem;
    margin-top: 0.5rem; /* Altura do header */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #000000;
    
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem; 
    text-shadow: 0 0 5px #000000, 0 0 10px #030303, 0 0 15px #1b1b1b, 0 0 20px #3f3f3f, 0 0 30px #747474;
    color: #FFFFFF;
}

.cta-button {
    background-color: var(--cor-destaque);
    color: var(--cor-texto);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffca2c;
}

/* --- Seções Gerais --- */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

/* --- Seção de Cards --- */
.cards-section {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.card {
    background: var(--cor-branco);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    flex-basis: 30%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--cor-secundaria);
}

.card a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

/* --- Seção de Notícias --- */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.noticia-card {
    background: var(--cor-branco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.noticia-card img {
    width: 100%;
    height: auto;
}

.noticia-content {
    padding: 20px;
}

.noticia-content h3 {
    margin-bottom: 10px;
}

.noticia-content a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* --- Rodapé --- */
footer {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-info, .footer-links {
    flex: 1;
    margin: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--cor-branco);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--cor-secundaria);
    padding-top: 20px;
}

/* --- Responsividade (para celulares e tablets) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 0 3rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--cor-branco);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: .8rem;
    }

    .card {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .noticias-grid {
        grid-template-columns: 1fr;
    }
}