@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

h1 {
    font-size: clamp(1.8rem, 2.8vw + 1rem, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 2.2vw + 0.8rem, 2.4rem);
    font-weight: 850;
}

h3 {
    font-size: clamp(1.2rem, 1.4vw + 0.8rem, 1.6rem);
    font-weight: 500PX;
}

p {
    font-size: 1.0625rem;
}

nav ul li a {
    font-size: 1rem;
}

/* INÍCIO */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

/* CORES UTILIZADAS */
:root {
    --color-01: rgb(204, 0, 0);
    --color-02: #fdfdfd;
    --color-03: #CCC;
    --color-04: #FFF;
    --color-05: #000;
    --color-06: #3c9753ee;
}

/* PÁGINAS */
.pag_inicial {
    background-attachment: fixed;
    background-color: white;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.galeria-fotos {
    background-attachment: fixed;
    background-color: white;
}

.pag-2 {
    background-attachment: fixed;
    background-color: white;
    color: var(--color-05);
    display: flex;
}

.pag-2 #menu ul a {
    background-color: #03491e;
    color: #ffffffee;
}

.pag-faca-part {
    font-weight: 600;
    color: rgb(0, 0, 0);
    border: 5px solid #888888;
}

/* GALERIA */
#galeria-imagens {
    display: inline-grid;
    text-align: center;
    width: 86%;
    height: 90%;
}

#galeria-imagens .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

#galeria-imagens .container img {
    width: 89%;
    transition: all 0.2s linear;
    height: 93%;
}

#galeria-imagens .container img:hover {
    transform: scale(0.75);
}

.galeria-fotos {
    background-color: white;
}

/* BANNERS */

#banners {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
}

#banners img {
    width: 1200px;
    display: block;
}

/* DIMENSÃO DO SITE */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CABEÇALHO ===== */

#cabecalho {
    background-color: #03491e;
    margin-bottom: 15px;
    padding: 10px 25px;
}

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

.marca {
    display: flex;
    align-items: center;
    gap: 6px;
    /* pequena distância entre logo e nome */
}

#logo {
    width: 45px;
    height: auto;
}

#ampli {
    color: #badd1d;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

/* ===== MENU ===== */

#menu ul {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
}

#menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 10px;
    display: block;
    font-weight: 600;
}

#menu ul li a:hover {
    background-color: #046d2b;
    color: #badd1d;
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #badd1d;
    border-radius: 3px;
    transition: 0.3s;
}

/* PÁG RELATÓRIOS*/

.relatorios-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.relatorios-container h1 {
    color: #080808;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

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

.card-relatorio {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
}

.card-relatorio:hover {
    transform: scale(1.03);
}

.card-relatorio h2 {
    color: #03491e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.btns-relatorio {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-rel {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-ver {
    background: #badd1d;
    color: #03491e;
}

.btn-ver:hover {
    background: #a0c518;
}

.btn-baixar {
    background: #03491e;
    color: #fff;
}

.btn-baixar:hover {
    background: #046d2b;
}

/* RESPONSIVIDADE DO SITE */

@media (max-width: 768px) {
    #cabecalho .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
    }

    #menu {
        position: absolute;
        top: 65px;
        right: 0;
        background: #03491e;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        z-index: 1000;
    }

    #menu.active {
        display: flex;
    }

    #menu ul {
        flex-direction: column;
        gap: 0;
    }

    #menu ul li a {
        padding: 15px 0;
        border-bottom: 1px solid #046d2b;
    }

    .marca {
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    #cabecalho .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 15px;
    }

    #logo {
        width: 45px;
    }

    #ampli {
        font-size: 1rem;
    }

    #menu ul {
        gap: 12px;
    }

    #menu ul li a {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
}

.galeria-fotos h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 30px 0;
    color: #03491e;
}

#fotos #galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
}

#fotos #galeria img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 30px;
    border: 5px solid #dadadab2;
    transition: transform 0.2s ease-in-out;
}

#fotos #galeria img:hover {
    transform: scale(1.05);
}

.content-right {
    display: grid;
    width: 850px;
    padding-right: 35px;
    float: right;
    margin: 10px;
    height: auto;
    grid-template-columns: 1fr 200px;
}

/* Centraliza o título da galeria */
#fotos .titulo {
    text-align: center;
    margin: 20px auto;
    display: block;
}

/* PÁG. DE CONTATOS */
.pag-contatos {
    background: linear-gradient(to bottom right, #f0fff0, #d0f0d0);
    min-height: 100vh;
}

a {
    text-decoration: none;
}

#contatos {
    text-align: center;
    padding: 60px 20px;
}

#contatos .titulo {
    font-size: 42px;
    margin-bottom: 50px;
    color: #000;
}

.contato-item {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 20px;
    color: #333;
}

.contato-item .icone-contato {
    width: 35px;
    height: 35px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.contato-item p {
    margin: 0;
    font-weight: 700;
}

/* RODAPÉ */
#rodape {
    background: #03491e;
    color: #f5f5f5;
    padding: 40px 20px 15px;
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 20px;
    gap: 40px;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    color: #badd1d;
    margin: 5px 0;
}

.footer-links h4,
.footer-social h4 {
    color: #badd1d;
    margin-bottom: 10px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #badd1d;
}

.footer-bottom {
    border-top: 1px solid #badd1d40;
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-social h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
}

.footer-social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.footer-social img[alt="Instagram"] {
    filter: none !important;
}

h2 {
    text-align: center;
    padding-bottom: 10px;
}

#rodape .footer-social img[alt="Instagram"],
#rodape .footer-social svg[aria-label="Instagram"],
#rodape .footer-social a[title*="instagram"],
#rodape .footer-social a[class*="insta"] {
    width: 28px !important;
    height: 28px !important;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2)) !important;
    display: inline-block !important;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    #cabecalho .container {
        flex-wrap: wrap;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social a {
        justify-content: center;
    }

    header .container,
    .topo,
    .menu,
    nav ul {
        display: flex;
        flex-wrap: wrap;
    }

    nav ul {
        gap: .5rem;
    }

    nav ul li {
        display: inline-flex;
    }

    nav ul li a {
        padding: .5rem .75rem;
        font-size: .95rem;
    }

    .banner,
    .hero,
    .slider,
    .bx-wrapper {
        width: 100% !important;
    }

    .galeria-grid,
    .grid,
    .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .galeria-grid img,
    .cards img {
        width: 100%;
        height: auto;
        display: block;
    }

    section {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: .25rem;
    }

    nav ul li a {
        padding: .45rem .6rem;
    }

    .galeria-grid,
    .grid,
    .cards {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(1.25rem, 6vw + .4rem, 1.6rem);
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.video-embed {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

#menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.3s;
}

#menu ul li a:hover {
    background-color: #badd1d;
    color: #03491e;
    border-radius: 5px;
}

/*Menu com hamburguer*/

.menu-toggle {
    position: relative;
    width: 28px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #badd1d;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center center;

}

.menu-toggle span:nth-child(1) {
    top: 8px;
}

.menu-toggle span:nth-child(2) {
    top: 18px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}


.menu-toggle.active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}

/* Responsividade */
@media (max-width: 1024px) {
    #cabecalho .container {
        display: flex;
        justify-content: space-between;
        /* logo à esquerda, botão à direita */
        align-items: center;
        /* centraliza verticalmente */
        padding: 10px 20px;
    }

    .marca {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Menu padrão */
    #menu ul {
        display: flex;
        list-style: none;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    #menu ul li a {
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        transition: 0.3s;
    }

    #menu ul li a:hover {
        background-color: #badd1d;
        color: #03491e;
        border-radius: 5px;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
        .menu-toggle {
            display: block;
        }

        #menu {
            display: none;
            width: 100%;
            flex-direction: column;
            align-items: center;
            background-color: #03491e;
        }

        #menu ul {
            flex-direction: column;
            width: 100%;
        }

        #menu.active {
            display: flex;
        }
    }
}

/* FOTOS E TEXTO DA PAG-INIICO*/

#historia .container {
    padding-left: 10px;
    padding-right: 10px;
}

/* BLOCO GERAL */
#historia .container .bloco {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin: 60px 0;
    flex-wrap: wrap;
}

/* TEXTO */
#historia .container .bloco .texto {
    font-weight: normal;
    text-align: justify;
    flex: 1 1 480px;
    /* área de texto maior */
}

#historia .container .bloco .texto h3 {
    margin-bottom: 20px;
}

#historia .container .bloco img {
    width: 520px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: .25s ease;
    border: 5px solid rgb(223, 221, 221);
}

/* HOVER DE LEVE */
#historia .container .bloco img:hover {
    transform: translateY(-4px) scale(1.015);
}

/* BLOCO INVERTIDO → IMAGEM ESQUERDA */
#historia .container .bloco.bloco-invert .texto {
    order: 2 !important;
}

#historia .container .bloco.bloco-invert img {
    order: 1 !important;
}

/* MOBILE */
@media (max-width: 900px) {
    #historia .container .bloco {
        flex-direction: column;
        gap: 16px !important;
    }

    #historia .container .bloco img {
        width: 100% !important;
        order: 2 !important;
    }

    #historia .container .bloco .texto {
        order: 1 !important;
    }
}

/*  PÁGINA FUNDADORES*/

#fundadores .titulo {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 25px;
    margin-bottom: 35px;
}

.fundadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.fundador-card {
    background: #e2e6e2;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    gap: 20px;
}

.fundador-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.fundador-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.fundador-card .nome {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0 4px;
}

.fundador-card .cargo {
    color: #444;
    font-size: 15px;
}