/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(90deg,#062a31,#103d46,#154c55);
    color:#fff;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   HEADER
========================= */

.nav{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(11,35,41,.92);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-inner{
    height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.brand-mark{
    width:38px;
    height:38px;
    border-radius:12px;
    background:#d4b06a;
    color:#0f2f35;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:rgba(255,255,255,.80);
    transition:.3s;
}

.nav-links a:hover{
    color:#d4b06a;
}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .nav-inner{
        height:75px;
    }

}

/* =========================
   FOOTER
========================= */

.footer-wrap{
    margin-top:80px;
    padding:60px 0 25px;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(11,35,41,.35);
}

.footer-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2.5fr 1fr 1fr;
    gap:80px;
}

.footer-desc{
    margin-top:16px;
    max-width:340px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
}

.footer-title{
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-bottom:18px;
}

/* LINKS FOOTER */

.footer-menu{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

.footer-menu a{
    display:block;
    text-decoration:none;
    color:rgba(255,255,255,.75);
    transition:.3s;
}

.footer-menu a:hover{
    color:#d4b06a;
}

/* CONTATOS */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.contact-info a{
    text-decoration:none;
    color:rgba(255,255,255,.75);
}

/* COPYRIGHT */

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:rgba(255,255,255,.60);
}

/* RESPONSIVO */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}