:root {
    --preto:#2B2B2B;
    --cinza-claro:#EBEBEB;
    --cinza-medio:#A5A5A5;
    --cinza-escuro:#575A5A;
    --cinza-chumbo: #707070;
    --amarelo: #FFD800;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Cor de fundo da tela de carregamento */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Garante que fique acima de tudo */
    transition: opacity 0.5s ease; /* Efeito suave ao sumir */
}

#preloader img {
    width: 100px; /* Ajuste o tamanho do seu gif aqui */
}
html {
    scroll-behavior: smooth;
}
#posts-container{
    scroll-margin-top: 200px;

}
:target {
    scroll-margin-top: 85px;
}

:focus-visible {
    outline: none;
}

.sticky {
    position: sticky;
}

.absolute {
    position: absolute;
    transition: all 0.4s ease-out;
}
.desktop-hidden{
    display: none;
}
.z-index {
    position: relative;
    z-index: 1;
}
.z-index-menor{
    z-index: -1;
}
.ofw-hidden {
    overflow: hidden;
}

::selection {
    background: var(--amarelo);
    color: var(--preto);
}
@font-face {
    font-family: 'GillSans';
    src: url(../fonts/gill-sans.otf);
    font-weight: 400;
}
@font-face {
    font-family: 'GillSans';
    src: url(../fonts/gill-sans-medium.otf);
    font-weight: 600;
}
@font-face {
    font-family: 'GillSans';
    src: url(../fonts/gill-sans-bold.otf);
    font-weight: 800;
}
body{
    font-family: 'GillSans';
}
.grow{
    transition: all 1s ease-in-out;
}
.grow:hover{
    transform: scale(1.03);
}
.grow-center,
.grow-top{
    transition: all 1s ease-in-out;
}
.grow-center:hover{
    transform: translate(-50%, -50%) scale(1.2);
}
.grow-top:hover{
    transform: translateX(-50%) scale(1.2);
}
.venn-circle.grow:hover{
    transform: scale(1.2);
}
@media (min-width: 1900px) {
    header .container {
        max-width: 1540px;
    }
    header .menu ul{
        justify-content: flex-end;
        gap: 70px;
    }
}
/* HEADER */
.menu-inicial{
    padding: 20px 0;
}
.menu ul{
    list-style: none;
}

.menu a{
    font-weight: 400;
    font-size: 16px;
    color: var(--cinza-chumbo);
    text-transform: uppercase;
    transition: all 1s;
    border-color: white;
}
.menu a.ativo,
.menu a:hover{
    border-bottom: 2px solid var(--amarelo);
}
.menu .fale-conosco a{
    background-color: var(--amarelo);
    padding: 16px 40px;
    border-radius: 40px;
    transition: all 1s ease-in;
    font-size: 16px;
    padding-bottom: 14px;
    font-weight: 400;
}
.menu-mobile .fale-conosco a{
    font-size: 22px;
}
header img{
    height: 60px;
}
.menu .fale-conosco a{
    border:none;
    border: 1px solid var(--cinza-escuro);
}
.menu-secundario{
    position: fixed;
    background-color: white;
    z-index: 99;
    top:-150px;
    width: 100%;
    padding: 20px 0;
    transition: all 2s ease-in-out;
}
.menu-secundario .coluna-menu{
        display: flex;
    justify-content: flex-end;
    gap: 40px;
}
.menu-secundario a.fale-conosco{
    font-weight: 400;
    font-size: 16px;
    color: var(--cinza-chumbo);
    text-transform: uppercase;
    transition: all 1s;
    border: 1px solid var(--cinza-escuro);
    background-color: var(--amarelo);
    padding: 15px 40px;
    border-radius: 40px;
    transition: all 1s ease-in;
    font-size: 20px;
    padding-bottom:12px;
    font-weight: 400;
}
.coluna-menu .menu > .flex{
    justify-content: end;
}

/* FOOTER */

footer{
    padding: 100px 0;
}
footer p{
    font-size: 18px;
    color: var(--cinza-escuro);
}
footer img{
    margin-bottom: 20px;
}
footer .fale-conosco{
    font-size: 16px;
    color: var(--cinza-chumbo);
    background-color: var(--amarelo);
    padding: 12px 40px 8px;
    border-radius: 40px;
    display: block;
    width: fit-content;
    margin-top: 40px;
    text-decoration: none;
    border: 1px solid var(--cinza-chumbo);
    font-weight: 800;
}
.menu-footer{
    margin-bottom: 100px;
}
.menu-footer ul{
    list-style: none;
}
footer .menu-footer > .flex{
    display: grid;
    gap: 20px;
    padding: 0;
}
footer .menu-footer a{
    font-weight: 600;
    font-size: 16px;
    color: var(--cinza-chumbo);
    text-transform: uppercase;
    transition: all 1s;
}
footer p b{
    font-weight: 600;
    font-size: 16px;
    color: var(--cinza-chumbo);
    text-transform: uppercase;
    transition: all 1s;
}
footer p a{
    font-size: 15px;
    color: var(--cinza-escuro);
}
footer .copy{
    font-size: 10px;
    margin-top: 30px;
}
.menu-footer a:hover{
    color: var(--amarelo);
}
/* BANNER MODELO */

.banner {
    height: 75dvh;
    display: flex;
    align-items: center;
}

.subtitulo-banner {
    font-size: 20px;
    color: var(--cinza-escuro);
}

.banner .titulo {
    margin-bottom: 20px;
}
.banner h1{
    font-size: 40px;
    margin: 20px 0;
    color: var(--cinza-chumbo);
}
.banner h2{
        font-size: 40px;
    margin: 20px 0;
    color: var(--cinza-chumbo);
}
.banner .texto-p{
    font-size: 16px;
    color: var(--cinza-escuro);
}

.banner {
    position: relative;
    width: 100%;
    height: 70vh;       
    overflow: hidden;   
    display: flex;
    align-items: center;
}



.titulo-banner.coluna-50 {
    position: relative;
    z-index: 2; 
    color: #333333; 
}

.video-banner {      
    height: 70dvh;
    z-index: 1;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    width: 60%;    
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin-left: 0%;
    aspect-ratio: 16 / 9;
    border:none;
}
.video-banner,
.banner-efeito{
     height: 45vh!important; 
}

.video-banner iframe{
    border: none;
    width: 100%;
    height: auto;
    pointer-events: none;
    aspect-ratio: 16.03 / 9;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}
.video-banner iframe.escondido{
    opacity: 0;
}
/* menu burger */

.menu-mobile {
    position: fixed;
    background: var(--cinza-chumbo);
    height: 100dvh;
    width: fit-content;
    z-index: 99;
    bottom: 0;
    overflow: hidden;
    top: 0;
    right: -35vw;
    /* PosiÃ§Ã£o inicial: fora da tela */
    padding: 0;
    gap: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    transition: 1s all;
    justify-content: center;
    padding-right: 100px;
    padding-left: 100px;
}

/* Estilo do menu quando aberto (adicionado via JavaScript) */
.menu-mobile.menu-aberto {
    right: 0%;
}

.menu-mobile a {
    color: white;
    text-align: left;
    display: block;
    font-size: 22px;
    transition: all 0.5s ease-in;
    cursor: pointer;
}

.menu-mobile a:hover {
    color: var(--amarelo);
}
.menu-mobile .fale-conosco a{
    color: var(--cinza-chumbo);
    font-size: 22px;
}
.menu-mobile nav {
    display: block;
    width: 100%;
}

.menu-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.menu-mobile .btncontato {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border: 1px solid white;
    border-radius: 35px;
    font-size: 16px;
    font-family: 'Seiva';
    font-weight: 600;
}

.menu-dois {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    left: 0;
    background: var(--azulescuro);
    top: 0;
    height: 10%;
    z-index: 3;
    justify-content: right;
}

/* Estilo do botÃ£o de abrir (burger-abrir) */
.burger-abrir {
    position: sticky;
    width: 40px;
    height: 30px;
    top: 40px;
    right: 40px;
    background: transparent;
    cursor: pointer;
    display: block;
    z-index: 4;
}

.burger-abrir span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--cinza-chumbo);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    z-index: 5;
}

.burger-abrir span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger-abrir span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger-abrir span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

/* Estilo do botÃ£o de fechar (burger-fechar) */
.burger-fechar {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 5;
}

.burger-fechar span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-fechar span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 13px;
    left: 0;
}

.burger-fechar span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger-fechar span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 13px;
    left: 0;
}
