*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fc;
    color:#222;
}

header{
    background:#003ea8;
    box-shadow:0 2px 15px rgba(0,0,0,.15);
}

.container{
    max-width:1300px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}



.logo{
    height: 150px;
    width:left;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
    font-weight:600;
}

.hero{
    background:
    linear-gradient(
    rgba(0,45,130,.80),
    rgba(0,45,130,.80)),
    url("https://images.unsplash.com/photo-1581092335397-9583eb92d232");

    background-size:cover;
    background-position:center;

    min-height:550px;

    display:flex;
    align-items:center;

    padding:60px;
}

.hero-text{
    max-width:700px;
    color:white;
}

.hero-text span{
    color:#ffd200;
    font-weight:700;
}

.hero-text h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    margin:20px 0;
}

.hero-text p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-whatsapp{
    background:#09a442;
    color:#ffffff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-servicos{
    background:#ffd200;
    color:#002b75;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

#servicos{
    padding:90px 40px;
}

.titulo{
    text-align:center;
    margin-bottom:50px;
}

.titulo h2{
    font-size:42px;
    color:#003ea8;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.galeria{
    padding:80px 20px;
    text-align:center;
}

.galeria h2{
    color:#003ea8;
    margin-bottom:40px;
}

.galeria-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.galeria-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.sobre{
    background:#003ea8;
    color:white;
    padding:80px 30px;
}

.sobre-box{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.beneficios{
    padding:80px 30px;
}

.beneficios h2{
    text-align:center;
    color:#003ea8;
    margin-bottom:50px;
}

.beneficios-grid{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.beneficios-grid div{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contato{
    background:#002f86;
    color:white;
    text-align:center;
    padding:90px 20px;
}

.contato h2{
    margin-bottom:20px;
}

.contato p{
    margin-bottom:30px;
}

.atendimento{
    padding:70px 20px;
    text-align:center;
    background:#f0f6ff;
}

.atendimento h2{
    color:#003ea8;
    margin-bottom:20px;
}

footer{
    background:#001f59;
    color:white;
    text-align:center;
    padding:25px;
}

/* BOTÃO WHATSAPP */

.whatsapp-fixo{
    position:fixed;
    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    z-index:9999;
}

.whatsapp-fixo img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.whatsapp-fixo:hover{
    transform:scale(1.1);
}

@media(max-width:900px){

    .container{
        flex-direction:column;
    }

    .hero{
        text-align:center;
        padding:40px 20px;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}