/*
|--------------------------------------------------------------------------
| CABEÇALHO GLOBAL
|--------------------------------------------------------------------------
*/

.site-header {

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at top,
            rgba(242, 201, 76, 0.08),
            transparent 50%
        ),

        #080808;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);

    z-index: 1000;

}


.site-header__link {

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}


.site-header__logo {

    display: block;

    width: auto;

    height: auto;

    max-height: 50px;

    max-width: 250px;

}


/*
|--------------------------------------------------------------------------
| RODAPÉ GLOBAL
|--------------------------------------------------------------------------
*/

.site-footer {

    width: 100%;

    flex-shrink: 0;

    margin-top: auto;

    padding: 25px 20px;

    text-align: center;

    background: #050505;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    color: #aaa;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.6;

}


.site-footer__developer {

    margin-bottom: 10px;

    color: #ddd;

}


.site-footer__socials {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 12px;

}


.site-footer__socials a {

    color: #ddd;

    text-decoration: none;

    transition: color 0.2s ease;

}


.site-footer__socials a:hover {

    color: #f2c94c;

}


.site-footer__socials span {

    color: #555;

}


.site-footer__copyright {

    color: #777;

    font-size: 13px;

}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 700px) {

    .site-header {

        height: 65px;

    }


    .site-header__logo {

        max-height: 42px;

        max-width: 200px;

    }


    .site-footer {

        padding: 22px 15px;

    }

}