/* PROJETO SAAB - Versão 1.16 */

:root {
    --cor-grafite-88: rgba(40, 40, 40, 0.65);
    --cor-azul-hover: #3498db;
    --cor-vermelho-denuncia: #e74c3c;
    --cor-branco: #ffffff;
    --cor-texto-escuro: #1c1c1c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background: #f9f9f9; }

/* Header e Menu */
.main-header {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 5%;
    background: var(--cor-grafite-88); backdrop-filter: blur(12px);
    position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.logo-center h1 { color: #fff; letter-spacing: 4px; }
#hamburger span { display: block; height: 3px; width: 30px; background: #fff; margin: 5px 0; }

/* Ajuste Específico: Fale Conosco Sempre Branco */
.btn-fale-conosco, 
.btn-fale-conosco:link, 
.btn-fale-conosco:visited, 
.btn-fale-conosco:active {
    color: var(--cor-branco) !important;
    text-decoration: none;
    border: 1px solid var(--cor-branco);
    padding: 8px 20px;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.btn-fale-conosco:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--cor-branco) !important;
    transform: translateY(-2px);
}

#side-menu {
    position: fixed; left: -300px; top: 0; width: 300px; height: 100vh;
    background: var(--cor-grafite-88); backdrop-filter: blur(15px); z-index: 1100; transition: 0.5s; padding: 40px;
}
#side-menu.open { left: 0; }
.close-menu { background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; }
#side-menu ul { list-style: none; margin-top: 50px; }
#side-menu ul li a { color: #fff; text-decoration: none; font-size: 1.2rem; display: block; margin-bottom: 20px; }

/* Hero Swiper */
.hero-section { height: 100vh; position: relative; overflow: hidden; }
.heroSwiper { width: 100%; height: 100%; }
.swiper-slide {
    background-size: cover; background-position: center;
    background-repeat: no-repeat; filter: brightness(0.85);
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; pointer-events: none;
}
.hero-content { pointer-events: auto; }
.hero-content h2 { font-size: 3.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); margin-bottom: 25px; }
.btn-principal {
    background: var(--cor-vermelho-denuncia); color: #fff; border: none;
    padding: 15px 35px; border-radius: 30px; font-weight: bold; cursor: pointer;
}

/* Outras Seções */
.tema-grid { display: flex; align-items: center; gap: 50px; }
.tema-grid.reverse { flex-direction: row-reverse; }
.tema-img img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.pilar-flex-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pilar-card { background: #fff; padding: 40px; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.pilar-card i { font-size: 45px; color: var(--cor-azul-hover); margin-bottom: 20px; }

/* Formulário e Rodapé */
.form-container { background: #fff; padding: 40px; border-radius: 20px; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-padrao input, .form-padrao select, .form-padrao textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 10px; }
.btn-enviar { background: var(--cor-azul-hover); color: #fff; border: none; padding: 15px; width: 100%; border-radius: 30px; font-weight: bold; cursor: pointer; }

.main-footer { background: #1c1c1c; color: #d1d1d1; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #333; margin-top: 30px; font-size: 13px; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 3000; align-items: center; justify-content: center; }
.modal-content { background: #fff; padding: 40px; border-radius: 20px; width: 90%; max-width: 500px; position: relative; }
.btn-denuncia-submit { background: var(--cor-vermelho-denuncia); color: #fff; border: none; width: 100%; padding: 15px; border-radius: 30px; font-weight: bold; cursor: pointer; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 30px; z-index: 2000; }

@media (max-width: 768px) {
    .tema-grid { flex-direction: column-reverse; text-align: center; }
    .hero-content h2 { font-size: 2.2rem; }
}
