/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    min-height:76px;

    padding:0 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:transparent;

    border-bottom:1px solid transparent;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        border-color .4s ease;

    z-index:1000;

}


.navbar.scrolled{

    background:rgba(255,255,255,.86);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border-bottom-color:rgba(0,0,0,.05);

}


.logo{

    color:#111;

    font-size:13px;
    font-weight:500;

    letter-spacing:4px;

    text-decoration:none;

    user-select:none;

}


.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

}


.nav-links a{

    position:relative;

    color:#777;

    font-size:11px;
    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    text-decoration:none;

    transition:
        color .3s ease,
        transform .3s ease;

}


.nav-links a:hover{

    color:#111;

    transform:translateY(-1px);

}


.nav-contact{

    display:flex;

    align-items:center;
    justify-content:center;

    width:30px;
    height:30px;

    padding-bottom:2px;

    border:1px solid rgba(0,0,0,.10);
    border-radius:50%;

    font-size:13px !important;
    letter-spacing:0 !important;

}


.nav-contact:hover{

    border-color:rgba(0,0,0,.25);

}


.menu-toggle{

    display:none;

    color:#111;

    font-size:26px;
    line-height:1;

    cursor:pointer;
    user-select:none;

}


/* ==================================================
   FOOTER
================================================== */

.footer{

    padding:80px 40px;

    border-top:1px solid #eee;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer p{

    font-size:15px;

}

.footer a{

    text-decoration:none;

    color:#666;

    transition:.3s;

}

.footer a:hover{

    color:#111;

}


/* ==================================================
   ANIMAÇÕES
================================================== */

.fade{

    opacity:1;

    transform:translateY(50px);

     transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

.stories-grid img:nth-child(2){

    transition-delay:.15s;

}


.stories-grid img:nth-child(3){

    transition-delay:.30s;

}


.stories-grid img:nth-child(4){

    transition-delay:.45s;

}


@keyframes scrollMove{

    0%{

        transform:translateY(0);

        opacity:.5;

    }


    50%{

        transform:translateY(10px);

        opacity:1;

    }


    100%{

        transform:translateY(0);

        opacity:.5;

    }

}


/* ==================================================
   RESPONSIVE — GLOBAL
================================================== */

@media (max-width:900px){

    .navbar{
        padding:0 28px;
    }

    .nav-links{
        gap:20px;
    }

    .footer{
        padding:60px 28px;
    }

}


/* ==================================================
   MOBILE — GLOBAL
================================================== */

@media (max-width:600px){

    .navbar{
        min-height:66px;
        padding:0 18px;
    }

    .logo{
        font-size:11px;
        letter-spacing:3px;
        white-space:nowrap;
    }

    .nav-links{
        gap:14px;
    }

    .nav-links a{
        font-size:9px;
        letter-spacing:1.2px;
        white-space:nowrap;
    }

    .nav-contact{
        width:28px;
        height:28px;
        flex-shrink:0;
    }

    .footer{
        padding:50px 22px;

        flex-direction:column;
        justify-content:center;

        gap:14px;

        text-align:center;
    }

}


/* Celulares muito pequenos */

@media (max-width:390px){

    .navbar{
        padding:0 14px;
    }

    .logo{
        font-size:10px;
        letter-spacing:2.2px;
    }

    .nav-links{
        gap:10px;
    }

    .nav-links a{
        font-size:8px;
        letter-spacing:1px;
    }

}