/* ==========================================================
   ZELO & CO.
   Programa de Afiliados
   CSS v2.0
========================================================== */


/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F7F5F0;

    color:#434343;

    overflow-x:hidden;

    line-height:1.7;

}


/*==========================
VARIÁVEIS
==========================*/

:root{

    --verde:#5B7059;

    --verdeEscuro:#3D4C3B;

    --verdeClaro:#8EA58B;

    --dourado:#C2A468;

    --bege:#F7F5F0;

    --branco:#FFFFFF;

    --cinza:#666;

    --cinzaClaro:#EAEAEA;

    --preto:#222;

    --sombra:

    0 15px 40px rgba(0,0,0,.08);

}


/*==========================
CONTAINER
==========================*/

.container{

    width:92%;

    max-width:1200px;

    margin:auto;

}


/*==========================
LINKS
==========================*/

a{

    text-decoration:none;

    transition:.35s;

    color:inherit;

}


/*==========================
IMAGENS
==========================*/

img{

    display:block;

    max-width:100%;

}


/*==========================
HEADER
==========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:.4s;

}


.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 0;

}


.logo img{

    width:180px;

}


/*==========================
MENU
==========================*/

.header nav ul{

    list-style:none;

    display:flex;

    align-items:center;

    gap:35px;

}


.header nav a{

    color:var(--verdeEscuro);

    font-size:15px;

    font-weight:500;

}


.header nav a:hover{

    color:var(--dourado);

}


/*==========================
BOTÃO MENU
==========================*/

.botao-menu{

    background:var(--verde);

    color:#fff !important;

    padding:13px 28px;

    border-radius:40px;

    font-weight:600;

    box-shadow:var(--sombra);

}


.botao-menu:hover{

    background:var(--verdeEscuro);

    transform:translateY(-3px);

}


/*==========================
HERO
==========================*/

.hero{

    padding-top:150px;

    padding-bottom:90px;

    background:

    linear-gradient(

    rgba(247,245,240,.94),

    rgba(247,245,240,.98)

    ),

    url("../imagens/zl-00012.jpg");

    background-size:cover;

    background-position:center;

}


.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


.tag-topo{

    display:inline-block;

    background:rgba(194,164,104,.15);

    color:var(--dourado);

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}


.hero h1{

    font-size:56px;

    line-height:1.15;

    color:var(--verdeEscuro);

    margin-bottom:28px;

}


.hero p{

    font-size:19px;

    color:#555;

    margin-bottom:35px;

}


/*==========================
BOTÕES
==========================*/

.hero-botoes{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}


.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.btn-principal{

    background:var(--verde);

    color:#fff;

    box-shadow:var(--sombra);

}


.btn-principal:hover{

    background:var(--verdeEscuro);

    transform:translateY(-4px);

}


.btn-secundario{

    border:2px solid var(--verde);

    color:var(--verde);

}


.btn-secundario:hover{

    background:var(--verde);

    color:#fff;

}


/*==========================
INFO HERO
==========================*/

.hero-info{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}


.hero-info div{

    display:flex;

    align-items:center;

    gap:8px;

    font-weight:500;

    color:#444;

}


.hero-info i{

    color:var(--verde);

}


/*==========================
IMAGEM HERO
==========================*/

.hero-imagem{

    position:relative;

}


.hero-imagem img{

    width:100%;

    border-radius:22px;

    box-shadow:var(--sombra);

}


/*==========================
TÍTULOS
==========================*/

.titulo-central{

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:70px;

}


.titulo-central span{

    color:var(--dourado);

    font-size:15px;

    letter-spacing:2px;

    font-weight:700;

}


.titulo-central h2{

    margin-top:10px;

    margin-bottom:18px;

    color:var(--verdeEscuro);

    font-size:42px;

}


.titulo-central p{

    color:#666;

    font-size:18px;

}


/*==========================
SEÇÕES
==========================*/

section{

    padding:90px 0;

}


/* ==========================================================
   AJUSTE DOS 4 CARDS DE BENEFÍCIOS
========================================================== */


.cards-beneficios{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

    align-items:stretch;

}



.card-beneficio{

    background:#fff;

    border-radius:20px;

    padding:35px 28px;

    min-height:300px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:flex-start;

    box-shadow:var(--sombra-leve);

    border:1px solid #eeeeee;

    transition:var(--transicao);

}



.card-beneficio:hover{

    transform:translateY(-8px);

    box-shadow:var(--sombra-media);

}



/* ÍCONE */

.card-beneficio .icone{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--verde),
        var(--verde-escuro)
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

    margin-bottom:22px;

}



/* TÍTULO */

.card-beneficio h3{

    font-size:21px;

    line-height:1.3;

    color:var(--verde-escuro);

    margin-bottom:15px;

}



/* TEXTO */

.card-beneficio p{

    font-size:15px;

    line-height:1.7;

    color:var(--cinza);

    margin:0;

}



/* DESTAQUE */

.card-beneficio.destaque{

    border:2px solid rgba(102,120,95,.18);

}



/* ==========================================================
   RESPONSIVO
========================================================== */


@media(max-width:1100px){


    .cards-beneficios{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:600px){


    .cards-beneficios{

        grid-template-columns:1fr;

    }


    .card-beneficio{

        min-height:auto;

    }


}

/*==========================
ANIMAÇÕES
==========================*/

@keyframes subir{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-texto{

    animation:subir .8s ease;

}

.hero-imagem{

    animation:subir 1.2s ease;

}
/*==========================================================
COMO FUNCIONA
==========================================================*/

.funciona{

    background:#ffffff;

}

.passos{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:20px;

    align-items:center;

    margin-top:50px;

}

.passo{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--sombra);

    transition:.35s;

    position:relative;

}

.passo:hover{

    transform:translateY(-8px);

}

.numero{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:0 auto 25px;

    background:linear-gradient(135deg,var(--verde),var(--verdeEscuro));

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

}

.passo h3{

    color:var(--verdeEscuro);

    margin-bottom:15px;

    font-size:22px;

}

.passo p{

    color:#666;

    font-size:15px;

}

.seta{

    text-align:center;

    color:var(--dourado);

    font-size:32px;

}

/*==========================================================
MARCAS
==========================================================*/

.marcas{

    background:var(--bege);

}

.grid-marcas{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.marca-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--sombra);

    transition:.35s;

}

.marca-card:hover{

    transform:translateY(-8px);

}

.marca-card h3{

    color:var(--verdeEscuro);

    margin-bottom:25px;

    font-size:22px;

}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.tags span{

    background:rgba(91,112,89,.08);

    color:var(--verdeEscuro);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.tags span:hover{

    background:var(--verde);

    color:#fff;

}

/*==========================================================
DIFERENCIAIS
==========================================================*/

.diferenciais{

    background:#fff;

}

.grid-diferenciais{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.grid-diferenciais article{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--sombra);

    transition:.35s;

}

.grid-diferenciais article:hover{

    transform:translateY(-8px);

}

.grid-diferenciais i{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(194,164,104,.18);

    color:var(--dourado);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.grid-diferenciais h3{

    color:var(--verdeEscuro);

    margin-bottom:15px;

}

.grid-diferenciais p{

    color:#666;

}

/*==========================================================
FAQ
==========================================================*/

.faq{

    background:var(--bege);

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq details{

    background:#fff;

    margin-bottom:18px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--sombra);

    transition:.3s;

}

.faq details:hover{

    transform:translateY(-3px);

}

.faq summary{

    list-style:none;

    cursor:pointer;

    padding:22px 30px;

    font-size:18px;

    font-weight:600;

    color:var(--verdeEscuro);

    position:relative;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq summary::after{

    content:"+";

    position:absolute;

    right:30px;

    top:22px;

    font-size:28px;

    color:var(--dourado);

    transition:.3s;

}

.faq details[open] summary::after{

    content:"−";

}

.faq details p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/*==========================================================
ANIMAÇÕES EXTRAS
==========================================================*/

.card,
.passo,
.marca-card,
.grid-diferenciais article,
.faq details{

    opacity:0;

    transform:translateY(30px);

    animation:subir .8s ease forwards;

}

.card:nth-child(2){animation-delay:.1s;}
.card:nth-child(3){animation-delay:.2s;}
.card:nth-child(4){animation-delay:.3s;}
.card:nth-child(5){animation-delay:.4s;}
.card:nth-child(6){animation-delay:.5s;}

.passo:nth-child(1){animation-delay:.2s;}
.passo:nth-child(3){animation-delay:.3s;}
.passo:nth-child(5){animation-delay:.4s;}
.passo:nth-child(7){animation-delay:.5s;}

/* ==========================================
   PARTE 3 - BENEFÍCIOS, CARDS, CTA E RODAPÉ
========================================== */


/* SEÇÃO DE BENEFÍCIOS */
.beneficios {
    padding: 70px 20px;
    background: #f8f8f8;
    text-align: center;
}

.beneficios h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.beneficios p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}


/* GRID DOS CARDS */
.cards-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}


.card-beneficio {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}


.card-beneficio:hover {
    transform: translateY(-8px);
}


.card-beneficio .icone {
    width: 70px;
    height: 70px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}


.card-beneficio h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 12px;
}


.card-beneficio p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}



/* ÁREA DE CHAMADA PARA AÇÃO */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #111, #333);
    color: white;
}


.cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}


.cta p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}


.btn-cta {
    display: inline-block;
    padding: 16px 35px;
    background: white;
    color: #111;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}


.btn-cta:hover {
    transform: scale(1.05);
}



/* RODAPÉ */
footer {
    background: #0c0c0c;
    color: white;
    padding: 35px 20px;
    text-align: center;
}


footer p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}


footer a {
    color: white;
    text-decoration: none;
}


footer a:hover {
    text-decoration: underline;
}



/* REDES SOCIAIS */
.redes {
    margin-top: 20px;
}


.redes a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    transition: 0.3s;
}


.redes a:hover {
    background: #555;
}



/* RESPONSIVIDADE CELULAR */

@media(max-width: 900px){

    .cards-beneficios {
        grid-template-columns: 1fr 1fr;
    }

    .cta h2 {
        font-size: 30px;
    }

}


@media(max-width: 600px){

    .cards-beneficios {
        grid-template-columns: 1fr;
    }


    .beneficios h2 {
        font-size: 26px;
    }


    .cta {
        padding: 50px 20px;
    }


    .cta h2 {
        font-size: 25px;
    }


    .btn-cta {
        width: 100%;
    }

}

/* ==========================================
   PARTE 4 - ANIMAÇÕES, WHATSAPP, MENU MOBILE
   E AJUSTES FINAIS
========================================== */


/* ANIMAÇÃO DE ENTRADA */

.fade-in {
    animation: fadeIn 1s ease forwards;
}


@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



/* EFEITO DE APARECER SUAVEMENTE */

.slide-left {

    animation: slideLeft 1s ease forwards;

}


@keyframes slideLeft {

    from {
        opacity:0;
        transform: translateX(-50px);
    }


    to {
        opacity:1;
        transform: translateX(0);
    }

}



.slide-right {

    animation: slideRight 1s ease forwards;

}


@keyframes slideRight {

    from {
        opacity:0;
        transform: translateX(50px);
    }


    to {
        opacity:1;
        transform: translateX(0);
    }

}




/* IMAGENS DO SITE */

img {

    max-width:100%;
    height:auto;

}


.imagem-produto {

    border-radius:20px;
    overflow:hidden;
    transition:0.4s;

}


.imagem-produto:hover {

    transform:scale(1.03);

}



/* BOTÃO WHATSAPP FLUTUANTE */

.whatsapp-fixo {

    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,0.25);

    z-index:999;

    transition:0.3s;

}


.whatsapp-fixo:hover {

    transform:scale(1.1);

}




/* BOTÕES GERAIS */

button,
.btn {

    cursor:pointer;

}


.btn-principal {

    background:#111;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    border:none;

    text-decoration:none;

    font-weight:bold;

    display:inline-block;

    transition:0.3s;

}


.btn-principal:hover {

    background:#333;

    transform:translateY(-3px);

}



/* MENU MOBILE */

.menu-mobile {

    display:none;

}


@media(max-width:768px){


    .menu-desktop {

        display:none;

    }


    .menu-mobile {

        display:flex;

        justify-content:center;

        align-items:center;

    }



    .menu-mobile span {

        font-size:32px;

        cursor:pointer;

    }



}




/* BLOCO DE PASSOS / COMO FUNCIONA */

.passos {

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}



.passo {

    width:260px;

    background:white;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:0.3s;

}



.passo:hover {

    transform:translateY(-10px);

}



.numero-passo {

    width:45px;

    height:45px;

    background:#111;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    border-radius:50%;

    font-size:22px;

    font-weight:bold;

    margin-bottom:20px;

}





/* DESTAQUE PARA AFILIADOS */

.destaque-afiliado {

    background:#fafafa;

    border-left:5px solid #111;

    padding:25px;

    border-radius:12px;

    margin:30px auto;

    max-width:900px;

}



.destaque-afiliado strong {

    font-size:22px;

}



/* AJUSTES PARA CELULAR */

@media(max-width:600px){


    .whatsapp-fixo {

        width:55px;

        height:55px;

        font-size:26px;

        right:15px;

        bottom:15px;

    }



    .passo {

        width:100%;

    }



    .destaque-afiliado {

        margin:20px;

    }

}