* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --contraste: #2f7510;
    --cinzaclaro: #e8e8e8;
    --maisEscura: rgb(50, 5, 50);
    --largura-minima: 320px --largura-maxima: 1200px;
    --padding-lateral: 20px;
    --fonte-destaque: 'Luckiest Guy';
    --fonte-padrao: 'Chewy';
}

body {
    background-color: var(--cinzaclaro);
    font-size: var(--fonte-padrao);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}


/* BARRA DE NAVEGACAO */

.navegacao {
    margin-bottom: 2rem;
    position: fixed;
    background: rgb(0, 0, 0);
    width: 100%;
    z-index: 100;
    padding: 0;
    box-shadow: 5px 5px 10px rgba(33, 2, 61, 0.391);
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    z-index: 100;
    margin: 0;
    padding: 18px;
}

.menu-link {
    list-style: none;
    text-decoration: none;
    color: var(--cinzaclaro);
    font-weight: 500;
    font-family: var(--fonte-padrao);
    font-size: 18px;
    text-align: center;
    transition: 0.5s ease;
}

.menu-link:hover {
    color: #d0cfc8d7;
    font-size: 23px;
}

.menu-toggle {
    display: none;
}

/* ========== MOBILE ========== */
@media (max-width: 800px) {
    
    .menu-toggle {
        display: block;
        background: black;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        padding: 15px;
        position: absolute;
        right: 20px;
        top: 10px;
        z-index: 101;
    }
    
    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--cinzaclaro);
        margin: 6px 0;
        transition: 0.3s;
    }
    
    .menu-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 70%;
        height: 100vh;
        background: rgb(0, 0, 0);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 0;
        transition: right 0.3s ease;
    }
    
    .menu-nav.active {
        right: 0;
    }
    
    .menu-link {
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-link:hover {
        font-size: 18px; 
        background: rgba(255, 255, 255, 0.05);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
}


/* IMAGEM PRINCIPAL / BACKGROUND*/
.background-inicio {
    margin: 0 auto;
    margin-bottom: 0;
    padding-top: 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.fotodrink-inicio {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 800px) {
    .background-inicio {
        height: 100vh;
        padding: 0; 
    }
    
    .fotodrink-inicio {
        object-fit: cover; 
        object-position: center; 
    }
}
@media (max-width: 480px) {
    .background-inicio {
        height: 70vh; 
        padding-top: 40px; 
    }
}

.inicio-caixa {
    padding: 4rem;
    max-width: 1000px;
    margin: 8rem auto;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.316);
}

.headline {
    font-family: var(--fonte-destaque);
    color: var(--principal);
    text-align: center;
}

.introducao {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(44, 2, 57);
    text-align: center;
}

.vantagens {
    text-align: center;
    list-style: none;
}

/* SOBRE A EMPRESA */
.quemsomos {
    position: relative;
    background-color: black;
    padding: 2rem 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
    z-index: 10;
}

.quemsomos::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    top: -150px;
    background-image: linear-gradient(45deg, black 25%, transparent 25%), linear-gradient(-45deg, black 25%, transparent 25%);
    background-size: 150px 150px;
    background-repeat: repeat-x;
    z-index: 3;
}

.titulo-quemsomos {
    font-size: 40px;
    color: rgb(233, 228, 228);
    font-weight: 750;
    text-align: center;
    padding: 20px;
    padding-top: 60px;
    margin-bottom: 0;
    text-shadow: 2px 2px 3px rgba(212, 219, 5, 0.331);
}

.titulo {
    font-size: 40px;
    color: rgb(6, 6, 6);
    font-weight: 750;
    text-align: center;
    padding: 20px;
    padding-top: 60px;
    margin-bottom: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.331);
}

.paragrafo-sobre {
    text-align: center;
    padding: 5rem;
    padding-bottom: 8rem;
    color: rgb(244, 243, 242);
    margin-bottom: 0;
}

/* DIVISAO DO CONTEUDO/ROLAGEM*/
.parallax-divisao {
    position: relative;
    z-index: 25;
    background-color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

.parallax-divsecao3 {
    display: block;
    width: 100%;
    height: 400px;
    background-image: url('../img/divsec3-parallax.png');
    /* Parallax */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 15;
    margin-top: 0;
    margin-bottom: 0;
    padding: 60px;
}

/* PRODUTOS / MENU-LISTA */
.produtos {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 40px;
    background-color: #e4d0ac;
    z-index: 2;
}


.produto-caixa {
    display: block;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    max-width: 1000px;
    margin: 3rem auto;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.316);
    margin-bottom: 0;
}

.produto-classe {
    text-align: center;
    color: rgb(14, 3, 18);
}

.produto-descricao {
    color: rgb(10, 2, 13);
    margin: 0;
    padding: 10px;
}

/* DIVISAO CONTEUDO/REVEAL*/
.parallax-divisao {
    position: relative;
    z-index: 25;
    background-color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

.parallax-divsecao4 {
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/divsec4.png');
    /* Parallax */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 15;
    margin-top: 0;
    margin-bottom: 0;
    padding: 60px;
}

@media (max-width: 768px) {
    .parallax-divsecao3, .parallax-divsecao4 {
        background-attachment: scroll; /* desativa o "parallax" no mobile */
        background-position: center;
        height: 60vh;
    }
}
/* MODELOS DE PARCERIA / SOCIEDADE */
.parceria {
    background-color: #e4d0ac;
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.paragrafo-parceria {
    font-size: 20px;
    text-align: center;
    color: rgb(14, 3, 18);
}

.caixa-modelos {
    margin: 1rem;
    padding: 20px;
    display: inline-block;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(10px);
    background: rgba(200, 198, 180, 0.198);
    margin-bottom: 0;
}

.modelo {
    text-align: center;
    color: rgb(14, 3, 18);
}

.paragrafo-modelo {
    text-align: center;
    color: rgb(14, 3, 18);
}

/* ADESAO / CTA SECTION */
.intro {
    text-align: center;
    font-size: 1.3rem;
    color: rgb(14, 3, 18);
    padding: 30px;
}


.titulo-modelo {
    color: rgb(14, 3, 18);
    font-size: 20px;
    text-align: center;
}

.paragrafo-adesao {
    color: rgb(14, 3, 18);
    padding-bottom: 10px;
    font-size: 15px;
}

.div-button {
    margin: 3rem auto;
    display: flex;

}

.cta-button {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 20px;
    background: linear-gradient(135deg, #f53500, #f15202d4);
    color: rgba(5, 5, 5, 0.946);
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    font-size: 20px;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -12px rgba(45, 1, 62, 0.731);
}

.cta-contato {
    padding: 30px;
    background-color: rgb(159, 128, 176);
}



/* FORMULARIO */
.adesao {
    background-image: url(../img/bg-form.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px;
}

.div-form {
    background-color: black;
    color: rgb(232, 225, 234);
    padding: 48px 32px;
    border-radius: 18px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}


.cta-subtitle {
    margin: 24px 0 12px;
    font-weight: 600;
    color: rgba(245, 245, 247, 0.9);
}

.contato-form {
    display: grid;
    gap: 16px;
    text-align: left;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campo label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(245, 245, 247, 0.9);
}

.campo input,
.campo textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px double rgba(201, 191, 209, 0.344);
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f7;
    font-size: 0.95rem;
}

.campo input:focus,
.campo textarea:focus {
    outline: 2px solid rgba(255, 255, 255, 0.911);
    outline-offset: 2px;
}


.honeypot {
    display: none;
}

.aviso-privacidade {
    display: block;
    margin-top: 18px;
    font-size: 0.75rem;
    color: rgba(245, 245, 247, 0.6);
}

@media (max-width: 640px) {
    .cta-contato {
        padding: 36px 22px;
    }
}

footer {
    padding: 40px;
    background-color: #141414;
    color: #e8e8e8;
    gap: 1rem;
}
.footer-top {
    text-align: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 auto;
    text-align: center;
}
.logo-footer {
    max-height: 200px;
    height: auto;
    width: auto;
}

.list-footer {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.list-footer li a {
    text-decoration: none;
    color: #e8e8e8;
    font-size: 16px;
    transition: color 0.3s ease;
}
.list-footer li a:hover {
    color: #b3bccec6;
}
footer small {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #b3bccec6;
    font-size: small;
}

small a {
    text-decoration: none;
    color: #e8e8e8;
}