:root {
    --cinza-escuro: #707070;
    --branco-claro: #EFEFEF;
    --cinza-medio: #666666;
    --cinza-claro: #D8D8D8;
    --marrom: #A35521;
    --verde-escuro: #2A4C4A;
    --verde-limao: #6FCC3A
}

html {
    scroll-behavior: smooth;
}

: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(--verde-limao);
    color: white;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-LightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-MediumItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-MediumItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Seiva';
    src: url('../fonts/Seiva-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}



@media (min-width: 1900px) {
    .container {
        max-width: 1640px;
    }
}

/* HEADER */
header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    padding: 30px 0;
    transition: top 1s ease-out;
}

header.fixo {
    position: fixed;
    top: -200px;
    background-color: white;
    background: var(--cinza-medio);
    z-index: 999;
    padding: 20px 0;

}

.flex-logo-header p {
    color: white;
}

.flex-logo-header a {
    width: fit-content;
}

.flex-logo-header {
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-end;
}

.grow-better {
    display: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 0;
    align-items: flex-start;
}

header nav a::after {
    content: none;
}

.idiomas a {
    font-family: 'Seiva';
    font-weight: 400;
    font-size: 23px;
    line-height: 30px;
    color: white;
    text-decoration: underline;
    margin-right: 10px;
    transition: all 0.5s ease-in-out;
}
.idiomas a.en:hover {
    color: var(--verde-limao);
    opacity: 1;
}

.menu-flex {
    gap: 30px;
}

.idiomas a.en {
    opacity: 50%;
    text-decoration: none !important;
}

/* Estilo do menu móvel (início) */
.menu-mobile {
    position: fixed;
    background: var(--marrom);
    height: 100dvh;
    width: 30vw;
    z-index: 99;
    bottom: 0;
    overflow: hidden;
    top: 0;
    right: -30vw;
    /* 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 {
    font-family: 'Seiva';
    color: white;
    text-align: left;
    display: block;
    font-size: 22px;
    transition: all 0.5s ease-in;
    cursor: pointer;
}

.menu-mobile a:hover {
    color: var(--verde-limao);
}

.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: white;
    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;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.no-scroll::after {
    content: '';
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    opacity: 0;
}

.no-scroll::after {
    backdrop-filter: blur(10px);
    opacity: 1;
}

.logo-mobile {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9;
    width: fit-content;
}

/* BANNERS */

.banner {
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    height: 60dvh;

}

/* PADRÕES */

.padding {
    padding: 100px 0;
}

.verde-escuro {
    background: var(--verde-escuro);
}

.branco-claro {
    background: var(--branco-claro);
}

.marrom {
    background: var(--marrom);
}

.cinza-medio {
    background: var(--cinza-medio);
}

.cinza-claro {
    background: var(--cinza-claro);
}

/* GROW */

.grow:hover {
    animation: none;
    transform: scale(1.02);
    transition: transform 0.5s ease-in-out;
}

/* TITULOS & TEXTOS */

.titulo-91 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 90px;
    line-height: 120px;
}

.titulo-78 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 78px;
    line-height: 100px;
}

.titulo-70 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 70px;
    line-height: 90px;
}

.titulo-55 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 55px;
    line-height: 70px;
}

.titulo-46 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 46px;
    line-height: 55px;
}

.titulo-40 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 40px;
    line-height: 50px;
}

.titulo-36 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 36px;
    line-height: 45px;
}

.titulo-32 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
}

.titulo-extra-32 {
    font-family: 'Seiva', sans-serif;
    font-weight: 200;
    font-size: 32px;
    line-height: 40px;
}

.p-28 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 28px;
    line-height: 38px;
}

.p-25 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 25px;
    line-height: 36px;
}

.p-22 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
}

.p-18 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
}

.p-15 {
    font-family: 'Seiva', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.p-12 {
    font-family: 'Seiva', sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
}


/* FOOTER */

.logo-footer {
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 100px;
    align-items: flex-end
}

.logo-footer p {
    color: white;
}

.icones-footer {
    margin-top: 30px;
    gap: 20px 0;
}

.icones-footer,
.icones-footer .flex {
    justify-content: flex-start;
}

.icones-footer img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    margin-right: 10px;
}

footer .linkedin {
    width: 19px;
    height: 19px;
    margin-bottom: -7px;
}

.icones-footer a {
    font-family: 'Seiva';
    font-weight: 500;
    font-size: 15px;
}

footer a {
    display: block;
    color: white;
    transition: all 0.5s ease-in-out;
}

footer a:hover {
    color: var(--verde-limao);
}

.sub-menu-footer {
    gap: 40px 0;
}

.sub-menu-footer h3 {
    font-family: 'Seiva';
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.sub-menu-footer p {
    font-family: 'Seiva';
    font-weight: 400;
    font-size: 16px;
}

.rodape-copy {
    font-family: 'Seiva';
    font-weight: 400;
    font-size: 15px;
    font-weight: 20px;
    text-align: right;
    margin-top: 100px;
    color: white;
}

.gslide-image img.zoomable {
    max-width: 80% !important;
}

.nove-anos {
	width: 70%;
}