/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    color:#2d2d2d;
    background:#ffffff;
    line-height:1.6;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.hero{
    width:100%;
}

.hero-image{
    width:100%;
    height:auto;
    display:block;
}

/* BOTÃO */

.btn-whatsapp{
    display:inline-block;
    background:#2ebd59;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
    background:#28a84f;
}

/* SEÇÕES */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.3rem;
    margin-bottom:10px;
}

.section-title p{
    color:#555;
    font-size:1.1rem;
    font-weight:500;
    max-width:700px;
    margin:0 auto;
    line-height:1.8;
}

/* BENEFÍCIOS */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.benefit-card{
    background:#fafafa;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.benefit-card h3{
    margin-bottom:12px;
}

/* PROCESSO */

.process{
    background:#f7f7f7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
}

.number{
    display:inline-block;
    font-size:2rem;
    font-weight:bold;
    margin-bottom:15px;
}

/* CTA */

.cta{
    background:#1f1f1f;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 30px;
}

/* FOOTER */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:40px 20px;
}

footer h3{
    margin-bottom:10px;
}

footer span{
    display:block;
    margin:10px 0;
    color:#cfcfcf;
}

/* RESPONSIVO */

@media(max-width:900px){

    .benefits-grid{
        grid-template-columns:1fr 1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:3rem;
    }
}

@media(max-width:600px){

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .btn-whatsapp{
        width:100%;
        max-width:320px;
    }

    .cta h2{
        font-size:2rem;
    }
}
.hero-cta{
    text-align:center;
    padding:40px 20px;
    background:#ffffff;
}

.hero-cta h2{
    margin-bottom:20px;
    font-size:1.8rem;
}
/* WHATSAPP FLUTUANTE */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    text-decoration:none;
    font-size:28px;

    box-shadow:0 4px 15px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}
@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}