@charset "utf-8";
/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Menu Superior Flutuante */
.menu-topo {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    padding: 10px 30px;
    box-shadow: none;
}

.menu-topo ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-topo a {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.menu-topo a:hover {
    color: #691641;
}

.busca-icon {
    font-size: 1.2rem;
}

/* Banner Principal */
.banner-principal {
    width: 100%;
    height: 100vh;
    min-height: 500px; /* Altura mínima para garantir boa visualização */
    background-image: url('imagens/banner-matriculas.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Remove o IMG já que não usaremos mais */
.banner-img {
    display: none;
}

/* Acesso Rápido */
.acesso-rapido {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.acesso-rapido h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.btn-acesso {
    margin: 20px 0;
}

/* Botão Padrão */
.btn-vermelho {
    display: inline-block;
    background: #691641;
    color: white;
    padding: 20px 60px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-vermelho:hover {
    background: #194691;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 70, 145, 0.3);
}

/* Saiba Mais */
.saiba-mais {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.saiba-mais h2 {
    color: #363636;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.saiba-mais-content {
    color: #363636;
    font-size: 1.1rem;
}

.saiba-mais-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Nossas Instalações */
.instalacoes {
    background: #f9f9f9;
    padding: 60px 0;
}

.instalacoes h2 {
    color: #194691;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.instalacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.instalacao-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.instalacao-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #ddd;
}

.instalacao-item h3 {
    padding: 15px;
    color: #194691;
    font-size: 1.3rem;
}

.instalacao-item p {
    padding: 0 15px 15px;
    color: #666;
}

/* Calendário */
.calendario {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagens/fundo.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
}

.calendario h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.calendario-content {
    color: white;
}

.calendario-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    background: white;
    color: #666;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Formulário de Contato */
.contato {
    padding-top: 60px;
    padding-bottom: 20px;
    background: #ffffff;
}

.contato h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #194691;
}

#formContato {
    max-width: 800px;
    margin: 0 auto;
    background: #ACACAC;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #9C9C9C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#formContato input,
#formContato textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9e9e9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

#formContato textarea {
    min-height: 150px;
    resize: vertical;
    grid-column: 1 / -1;
}

#formContato input:focus,
#formContato textarea:focus {
    background: #ffffff;
    border-color: #691641;
    box-shadow: 0 0 8px rgba(168, 195, 20, 0.3);
    outline: none;
}

.btn-enviar {
    background: #691641;
    color: white;
    padding: 15px 60px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all 0.3s;
}

.btn-enviar:hover {
    background: #194691;
    transform: translateY(-2px);
}

/* Localização */
.localizacao {
    padding-top: 10px;
    padding-bottom: 60px;
    background: #fff;
}

.mapa {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid #10085E;
}

.enderecos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.endereco-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #194691;
}

.endereco-destaque {
    background: #f0f8ff;
    border: 3px solid #194691;
    transform: scale(1.05);
}

.endereco-item h3 {
    color: #194691;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.endereco-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.endereco-item strong {
    color: #194691;
}

/* Redes Sociais */
.redes-sociais {
    text-align: center;
    padding: 40px;
    background: #f0f0f0;
    border-radius: 10px;
}

.redes-sociais h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
    padding: 15px 30px;
    background: #414111;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #691641;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 195, 20, 0.3);
}

/* ESTILOS DAS LISTAS */
.listas-content {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.listas-intro {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #194691;
}

.listas-intro h2 {
    color: #194691;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.listas-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lista-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ano-section {
    width: 320px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s;
    overflow: hidden; 
}

.ano-section:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #691641;
}

.ano-titulo {
    background: #691641;
    color: white;
    padding: 15px;
    border-radius: 0;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 0;
}

.lista-item {
    padding: 20px;
    margin-bottom: 0;
}

.lista-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #691641;
}

.lista-item p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.btn-download-pdf {
    display: block;
    width: fit-content;
    margin: 15px auto 0 auto;
    background: #194691;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-download-pdf:hover {
    background: #691641;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 195, 20, 0.3);
}

.btn-download-pdf::before {
    content: "📄 ";
    margin-right: 5px;
}

/* ESTILOS DO RODAPÉ */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col strong {
    color: #ffffff;
}

.footer-col .social-icons {
    display: flex;
    gap: 15px;
}

.footer-col .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: #ffffff;
    border-radius: 15px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
}

.footer-col .social-icons a:hover {
    background-color: #691641;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    background-color: #111;
    width: 100%;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* RESPONSIVO - TABLETS */
@media (max-width: 1024px) {
    .banner-principal {
        height: 70vh;
        min-height: 400px;
    }
    
    .menu-topo {
        padding: 10px 20px;
    }
    
    .menu-topo ul {
        gap: 20px;
    }
}

/* RESPONSIVO - CELULARES */
@media (max-width: 768px) {
    /* BANNER PRINCIPAL - AJUSTE CRÍTICO PARA CELULAR */
    .banner-principal {
        height: auto !important; /* Altura automática */
        min-height: 0 !important; /* Remove altura mínima */
        padding-top: 75% !important; /* Proporção da imagem (ajuste conforme necessário) */
        background-attachment: scroll !important; /* Remove parallax */
        background-position: center center !important;
        background-size: 100% auto !important; /* Mostra 100% da largura */
    }
    
    /* Menu no celular */
    .menu-topo {
        padding: 8px 15px;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .menu-topo ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-topo a {
        font-size: 0.85rem;
    }

    /* Títulos menores */
    .acesso-rapido h2,
    .saiba-mais h2,
    .instalacoes h2,
    .calendario h2,
    .contato h2 {
        font-size: 1.8rem;
    }

    /* Botões menores */
    .btn-vermelho {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Formulário em coluna única */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Grids em coluna única */
    .instalacoes-grid,
    .enderecos-grid {
        grid-template-columns: 1fr;
    }

    .endereco-destaque {
        transform: scale(1);
    }

    /* Cards das listas menores */
    .ano-section {
        width: 100%;
        max-width: 350px;
    }

    /* Footer responsivo */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        min-width: auto;
    }
    
    .footer-col .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
    
    /* Calendário sem parallax */
    .calendario {
        background-attachment: scroll !important;
    }
}

/* RESPONSIVO - CELULARES PEQUENOS */
@media (max-width: 480px) {
    /* Banner para telas muito pequenas */
    .banner-principal {
        padding-top: 85% !important; /* Proporção ajustada para telas menores */
        background-size: 100% auto !important;
    }
    
    .logo img {
        height: 45px;
    }

    .busca input {
        width: 150px;
        font-size: 0.9rem;
    }
    
    .saiba-mais h2,
    .instalacoes h2,
    .calendario h2,
    .contato h2 {
        font-size: 1.5rem;
    }
    
    .btn-vermelho {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .listas-intro h2 {
        font-size: 1.5rem;
    }
    
    .ano-titulo {
        font-size: 1.1rem;
    }
}
.btn-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Verde WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Garante que fique sobre outros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-float:hover {
    background-color: #128C7E; /* Verde mais escuro ao passar o mouse */
    transform: scale(1.1); /* Leve aumento de tamanho */
    color: #FFF;
}
/* Estilo para o vídeo responsivo */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Mantém proporção 16:9 */
    height: 0;
    overflow: hidden;
    
    /* AJUSTES DE TAMANHO E POSIÇÃO */
    max-width: 100%; /* Define um tamanho máximo para não ficar gigante */
    margin: 50px auto 20px auto; /* 50px em cima (afasta do texto), auto (centraliza), 20px embaixo */
    
    /* ACABAMENTO VISUAL */
    border-radius: 12px; /* Cantos arredondados */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Sombra para dar destaque */
    border: 1px solid #ddd; /* Borda fina para moldurar */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Diminuir o espaço vazio no final da seção Saiba Mais */
section.saiba-mais {
    padding-bottom: 20px; /* Reduzi o espaço final */
}

/* Se ainda estiver longe, verifique se a seção de baixo (listas) tem muito espaço no topo */
section.listas-content {
    padding-top: 40px; /* Ajuste conforme necessário */
}