/* =====================================
   RESET
===================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}



body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f4f7fb;

    color:#333;

    line-height:1.6;

}



.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}







/* =====================================
   CABEÇALHO
===================================== */


header{

    background:#063970;

    height:80px;

    display:flex;

    align-items:center;

}



header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.logo{

    height:55px;

}



nav a{

    color:white;

    text-decoration:none;

    margin-left:20px;

    font-size:16px;

}



nav a:hover{

    opacity:.8;

}







/* =====================================
   HERO / TÍTULO
===================================== */


.titulo{

    background:white;

    text-align:center;

    padding:70px 0;

}



.titulo h1{

    color:#063970;

    font-size:42px;

    margin-bottom:20px;

}



.titulo p{

    max-width:900px;

    margin:auto;

    color:#555;

    font-size:19px;

}







/* =====================================
   BOTÃO
===================================== */


.botao{

    display:inline-block;

    background:#063970;

    color:white;

    text-decoration:none;

    padding:14px 35px;

    border-radius:30px;

    margin-top:25px;

    font-weight:bold;

    transition:.3s;

}



.botao:hover{

    transform:scale(1.05);

}







/* =====================================
   CONTEÚDO
===================================== */


.conteudo{

    padding:60px 0;

}



.bloco{

    background:white;

    padding:40px;

    border-radius:15px;

}



.bloco h2{

    color:#063970;

    font-size:32px;

    margin-bottom:20px;

}



.bloco p{

    margin-bottom:15px;

}







/* =====================================
   SEÇÕES
===================================== */


.solucoes,

.recursos,

.vantagens{

    padding:60px 0;

}



.solucoes h2,

.recursos h2,

.vantagens h2{

    text-align:center;

    color:#063970;

    font-size:32px;

    margin-bottom:40px;

}







/* =====================================
   CARDS
===================================== */


.cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.cards div{

    background:white;

    padding:35px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}



.cards div:hover{

    transform:translateY(-6px);

}



.cards div:first-letter{

    font-size:35px;

}



.cards h3{

    color:#063970;

    font-size:22px;

    margin:15px 0;

}



.cards p{

    color:#555;

}







/* =====================================
   RECURSOS
===================================== */


.recursos{

    background:white;

}



.recursos .cards{

    grid-template-columns:repeat(4,1fr);

}







/* =====================================
   VANTAGENS
===================================== */


.vantagens{

    text-align:center;

}



.vantagens ul{

    list-style:none;

    margin-top:30px;

}



.vantagens li{

    display:inline-block;

    background:#063970;

    color:white;

    padding:12px 20px;

    border-radius:25px;

    margin:8px;

}







/* =====================================
   CTA FINAL
===================================== */


.cta{

    background:#063970;

    color:white;

    text-align:center;

    padding:70px 0;

}



.cta h2{

    font-size:32px;

    margin-bottom:20px;

}



.cta p{

    margin-bottom:20px;

}



.cta .botao{

    background:white;

    color:#063970;

}







/* =====================================
   RODAPÉ
===================================== */


footer{

    background:#02254d;

    color:white;

    text-align:center;

    padding:20px;

}







/* =====================================
   ANIMAÇÃO
===================================== */


section{

    transition:.5s ease;

}







/* =====================================
   RESPONSIVO TABLET
===================================== */


@media(max-width:1000px){


    header{

        height:auto;

        padding:15px 0;

    }



    header .container{

        flex-direction:column;

        gap:15px;

    }



    .cards{

        grid-template-columns:repeat(2,1fr);

    }


}







/* =====================================
   RESPONSIVO CELULAR
===================================== */


@media(max-width:600px){


    .titulo h1{

        font-size:30px;

    }



    .titulo p{

        font-size:16px;

    }



    .cards{

        grid-template-columns:1fr;

    }



    .bloco{

        padding:25px;

    }



    nav a{

        font-size:14px;

        margin:0 6px;

    }



    .botao{

        width:90%;

    }


}