/*
Theme Name: URSO 912
Description: Tema filho do Hello Elementor para o site URSO 912.
Author: TM Studio
Template: hello-elementor
Version: 1.0.0
Text Domain: urso912
*/


/* =========================================================
   HEADER URSO 912
   Referência: Figma Desktop 1440 px
   ========================================================= */

.urso912-header {
    width: 100%;
    height: 88px;
    background-color: #000000;
}

.urso912-header__inner {
    width: 100%;
    height: 88px;

    padding: 0 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.urso912-header__logo {
    width: 99px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

.urso912-header__logo .custom-logo-link {
    width: 99px;
    height: 78px;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.urso912-header__logo .custom-logo {
    display: block;

    width: 99px;
    height: 78px;

    max-width: 99px;
    max-height: 78px;

    object-fit: contain;
}

.urso912-header__logo-text {
    color: #ffffff;

    font-family: Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.urso912-header__nav {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.urso912-menu {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.urso912-menu li {
    margin: 0;
    padding: 0;
}

.urso912-menu a {
    display: block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.urso912-menu a:hover,
.urso912-menu a:focus {
    color: #ffffff;
    opacity: 0.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .urso912-header__inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .urso912-menu {
        gap: 20px;
    }

}


/* =========================================================
   MOBILE
   Menu mobile será desenvolvido posteriormente.
   ========================================================= */

@media (max-width: 767px) {

    .urso912-header {
        height: 72px;
    }

    .urso912-header__inner {
        height: 72px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .urso912-header__logo {
        width: 82px;
        height: 64px;
    }

    .urso912-header__logo .custom-logo-link {
        width: 82px;
        height: 64px;
    }

    .urso912-header__logo .custom-logo {
        width: 82px;
        height: 64px;

        max-width: 82px;
        max-height: 64px;
    }

    .urso912-header__nav {
        display: none;
    }

}