/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f2ede7;
    color:#222;
    line-height:1.6;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:999;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#0B2A63;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#D8A116;
}

.btn-header{
    background:#D8A116;
    color:#fff;
    padding:14px 24px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    background:#0B2A63;
}

/* ===========================
   HERO
=========================== */

.hero{
    padding:160px 0 100px;
    background:linear-gradient(135deg,#0B2A63,#18489d);
    color:#fff;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:center;
    justify-items:center;
}

.hero-text{
    max-width:700px;
    width:100%;
}

.experiencia{
    display:inline-block;
    background:#D8A116;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:19px;
    margin-bottom:35px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#D8A116;
    color:#fff;
    padding:16px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#fff;
    color:#0B2A63;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:16px 30px;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#0B2A63;
}

.hero-image img{
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

/* ===========================
   TÍTULOS
=========================== */

.titulo{
    text-align:center;
    margin-bottom:60px;
}

.titulo h2{
    font-size:42px;
    color:#0B2A63;
    margin-bottom:15px;
}

.titulo p{
    color:#666;
    font-size:18px;
}

/* ===========================
   SOBRE
=========================== */

.sobre{
    padding:100px 0;
    background:#f2ede7;
}

.sobre-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:48px;
    color:#D8A116;
    margin-bottom:20px;
}

.card h3{
    color:#0B2A63;
    margin-bottom:15px;
}

/* ===========================
   SERVIÇOS
=========================== */

.servicos{
    padding:100px 0;
    background:#f7f9fc;
}

.servicos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.servico-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.servico-card:hover{
    transform:translateY(-8px);
}

.servico-card i{
    font-size:45px;
    color:#D8A116;
    margin-bottom:18px;
}

.servico-card h3{
    color:#0B2A63;
}

/* ===========================
   CTA
=========================== */

.cta{
    background:#0B2A63;
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    font-size:18px;
}

/* ===========================
   LOCALIZAÇÃO
=========================== */

.localizacao{
    padding:100px 0;
    background:#f2ede7;
}

.local-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.info-local h3{
    color:#0B2A63;
    font-size:30px;
    margin-bottom:20px;
}

.info-local p{
    margin-bottom:18px;
    font-size:18px;
}

.info-local i{
    color:#D8A116;
    margin-right:10px;
}

.mapa img{
    width:100%;
    border-radius:20px;
    object-fit:contain;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#081f48;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.footer-logo{
    width:130px;
    margin:0 auto 20px;
}

.footer-contatos{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:30px 0;
    flex-wrap:wrap;
}

.footer-contatos a{
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.footer-contatos a:hover{
    color:#D8A116;
}

.copyright{
    opacity:.7;
}

/* ===========================
   WHATSAPP FIXO
=========================== */

.whatsapp-fixo{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.whatsapp-fixo:hover{
    transform:scale(1.1);
}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:991px){

.hero-content,
.local-box,
.sobre-grid{
    grid-template-columns:1fr;
}

header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

.hero{
    padding-top:220px;
    text-align:center;
}

.hero h1{
    font-size:38px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.titulo h2{
    font-size:34px;
}

.cta h2{
    font-size:34px;
}

}

@media(max-width:768px){
    .hero{
        padding-top:180px;
    }

    .hero h1{
        font-size:32px;
    }

    .titulo h2,
    .cta h2{
        font-size:30px;
    }

    .hero p,
    .titulo p,
    .cta p,
    .info-local p,
    .footer-contatos a{
        font-size:16px;
    }

    .hero-buttons,
    .footer-contatos{
        gap:15px;
    }
}

@media(max-width:576px){
    .container{
        width:95%;
    }

    header .container{
        padding:15px 0;
    }

    nav ul{
        gap:15px;
    }

    .hero h1{
        font-size:24px;
        line-height:1.3;
    }

    .hero p,
    .titulo p,
    .cta p,
    .info-local p,
    .footer-contatos a,
    .servico-card h3,
    .card h3{
        font-size:15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-header{
        width:100%;
        text-align:center;
        padding:14px 18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
}
