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

html{
    scroll-behavior:smooth;
}

body{
    background:#101010;
    color:#f5f5f5;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=====================================
            CONTAINER
=====================================*/
.container{
    width:min(1400px,92%);
    margin:0 auto;
}

/*=====================================
            HEADER
=====================================*/
header{
    position:fixed;
    inset:0 0 auto 0;
    z-index:1000;
    background:rgba(10,10,10,.45);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    width:min(1400px,92%);
    height:86px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-site img{
    height:58px;
    width:auto;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    color:#f2f2f2;
    font-size:.95rem;
    letter-spacing:1px;
    transition:.25s;
    position:relative;
}

.menu a:hover,
.menu a.active{
    color:var(--gold,#d8b35a);
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gold,#d8b35a);
    transition:.25s;
}

.menu a:hover::after,
.menu a.active::after{
    width:100%;
}

/*=====================================
            BOUTONS
=====================================*/
.btn-gold,
.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:40px;
    border:2px solid var(--gold,#d8b35a);
    transition:.3s;
}

.btn-gold{
    background:rgba(255,255,255,.03);
    color:#fff;
}

.btn-gold:hover,
.btn-light:hover{
    background:var(--gold,#d8b35a);
    color:#111;
    transform:translateY(-3px);
}

.btn-light{
    background:#fff;
    color:#111;
}

/*=====================================
            FOOTER
=====================================*/
footer{
    background:#0a0a0a;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:100px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding:70px 0;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

footer h4{
    color:var(--gold,#d8b35a);
    margin-bottom:18px;
}

footer li{
    margin-bottom:10px;
}

footer a:hover{
    color:var(--gold,#d8b35a);
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#aaa;
    font-size:.9rem;
}

/*=====================================
            SCROLLBAR
=====================================*/
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--gold,#d8b35a);
    border-radius:20px;
}

::selection{
    background:var(--gold,#d8b35a);
    color:#111;
}

/*=====================================
            RESPONSIVE
=====================================*/
@media (max-width:900px){

    .navbar{
        height:auto;
        padding:18px 0;
        flex-direction:column;
        gap:18px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:0 auto 20px;
    }
}
