*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Arial, sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#F8F8F5;
    color:#222;
    line-height:1.6;

}


/* CORES DA MARCA

Preto Grafite #111111
Azul Petróleo #0F4C5C
Dourado #C8A951
Branco Suave #F8F8F5
Cinza Técnico #666666

*/


/* CABEÇALHO */


header{

    background:#111111;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    position:sticky;

    top:0;

    z-index:1000;

}



.logo img{

    width:150px;

    max-height:70px;

    object-fit:contain;

}



nav{

    display:flex;

    gap:25px;

}



nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}



nav a:hover{

    color:#C8A951;

}





/* BOTÕES */


.btn{

    background:#C8A951;

    color:#111;

    padding:12px 25px;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    display:inline-block;

    border:none;

    cursor:pointer;

    transition:.3s;

}



.btn:hover{

    transform:translateY(-3px);

}



.btn-outline{

    border:2px solid #C8A951;

    color:#C8A951;

    padding:12px 25px;

    border-radius:30px;

    text-decoration:none;

    display:inline-block;

    margin-left:10px;

}




/* HERO */


.hero{

    min-height:90vh;

    padding:70px 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    background:

    linear-gradient(
    135deg,
    #111111,
    #0F4C5C
    );

    color:white;

}



.hero-content{

    max-width:650px;

}



.hero h1{

    font-size:55px;

    color:#C8A951;

}



.hero h2{

    font-size:32px;

    margin-bottom:20px;

}



.hero p{

    font-size:18px;

    margin-bottom:20px;

}



.hero-image img{

    width:350px;

    border-radius:20px;

    border:4px solid #C8A951;

}





/* SEÇÕES */


section{

    padding:70px 8%;

}



section h1{

    text-align:center;

    font-size:42px;

    color:#0F4C5C;

    margin-bottom:35px;

}



section h2{

    text-align:center;

    color:#0F4C5C;

    margin:35px 0 20px;

}



section p{

    max-width:950px;

    margin:15px auto;

    font-size:18px;

}





/* PÁGINAS INTERNAS */


.pagina{

    text-align:center;

}



.foto-perfil{

    width:280px;

    border-radius:20px;

    border:4px solid #C8A951;

    margin:25px;

}





/* CARDS */


.cards{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    margin-top:40px;

}



.card{

    background:white;

    padding:30px;

    border-radius:18px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

    border-top:5px solid #C8A951;

    transition:.3s;

}



.card:hover{

    transform:translateY(-8px);

}



.card h2,

.card h3{

    color:#0F4C5C;

    margin-bottom:15px;

}





/* FORMAÇÃO */


ul{

    max-width:600px;

    margin:30px auto;

    text-align:left;

    font-size:18px;

}



li{

    margin:12px;

}





/* CONTATO */


.contato{

    text-align:center;

}



.formulario{

    max-width:600px;

    margin:40px auto;

    display:flex;

    flex-direction:column;

    gap:15px;

}



.formulario input,

.formulario textarea{

    padding:15px;

    border-radius:10px;

    border:1px solid #ccc;

    font-size:16px;

}



.formulario textarea{

    height:150px;

}







/* CHAMADAS */


.chamada{

    background:#111111;

    color:white;

    border-radius:20px;

    margin-top:40px;

}



.chamada h2{

    color:#C8A951;

}





/* RODAPÉ */


footer{

    background:#0F4C5C;

    color:white;

    text-align:center;

    padding:30px;

}







/* WHATSAPP FLUTUANTE */


.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    background:#25D366;

    color:white;

    padding:15px 22px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    box-shadow:0 5px 20px rgba(0,0,0,.3);

    animation:pulsar 2s infinite;

}



@keyframes pulsar{


50%{

    transform:scale(1.08);

}


}







/* CELULAR */


@media(max-width:768px){


header{

    flex-direction:column;

    gap:20px;

}



nav{

    flex-wrap:wrap;

    justify-content:center;

}



.hero{

    flex-direction:column;

    text-align:center;

}



.hero h1{

    font-size:40px;

}



.hero h2{

    font-size:25px;

}



.hero-image img{

    width:250px;

}



.btn-outline{

    margin-top:15px;

}



section{

    padding:50px 5%;

}


}