:root{
    --azul:#141232;
    --verde:#88AB67;
    --lilas:#8A5FB6;
    --branco:#FFFFFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--azul);
    color:var(--branco);
    line-height:1.7;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(20,18,50,.85),rgba(20,18,50,.92)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
}

.logo{
    width:580px;
    max-width:95%;
}

.btn-nav,
.btn{
    background:var(--verde);
    color:var(--azul);
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn:hover,
.btn-nav:hover{
    background:var(--lilas);
    color:white;
}

.hero-content{
    text-align:center;
    padding:120px 20px;
}

.selo{
    display:inline-block;
    background:rgba(136,171,103,.15);
    border:1px solid var(--verde);
    color:var(--verde);
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:600;
}

.hero h1{
    font-size:4.5rem;
    max-width:900px;
    margin:auto;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:auto;
    margin-bottom:40px;
    font-size:1.15rem;
}

section{
    padding:90px 10%;
}

h2{
    text-align:center;
    color:var(--verde);
    margin-bottom:40px;
    font-size:2.3rem;
}

.sobre{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.sobre p{
    margin-bottom:20px;
}

.numeros{
    display:flex;
    justify-content:center;
    gap:50px;
    text-align:center;
    background:#1b1842;
}

.numeros div{
    padding:30px;
}

.numeros h3{
    font-size:4rem;
    color:var(--verde);
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(138,95,182,.4);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(138,95,182,.3);
}

.card h3{
    color:var(--verde);
    margin-bottom:15px;
}

.diferencial{
    background:#1b1842;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contato{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(138,95,182,.3);
    border-radius:25px;
}

.contato p{
    margin-bottom:30px;
}

footer{
    background:#0d0b24;
    text-align:center;
    padding:30px;
    margin-top:60px;
    border-top:2px solid var(--lilas);
}

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    z-index:999;
}

.whatsapp-float img{
    width:100%;
    border-radius:50%;
    box-shadow:0 0 20px rgba(136,171,103,.5);
}

@media(max-width:768px){

.hero h1{
    font-size:2.8rem;
}

.logo{
    width:220px;
}

nav{
    flex-direction:column;
    gap:20px;
}

.numeros{
    flex-direction:column;
    gap:10px;
}

section{
    padding:70px 7%;
}
}