/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

@import url("assets/css/schedule.css");

body {
    font-family: "urbane", sans-serif;
}

h1,
h2,
h3,
a {
    font-family: "urbane", sans-serif;
}

a {
    text-decoration: none;
}

/* TOP BAR */

.top-bar {
    background: #000;
    color: white;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-family: "urbane", sans-serif;
    letter-spacing: 1px;
}

.top-center {
    font-weight: 500;
    text-transform: uppercase;
    color: #c8a27a;
    font-size: 18px;
}

.top-left{
    text-transform: uppercase;
}



/* MAIN HEADER */

.site-header {
    background: white;
    border-bottom: 1px solid #eee;
    max-width: 1300px !important;
    margin: auto;
    
}

.site-header .header-inner{
    flex-wrap: nowrap;
    max-width: 1300px !important;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
}

.header-main {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
    width: 100%;
}

.header-menu{
    display: flex;
    align-items: center;
}

.header-cta{
    display: flex;
    align-items: center;
}


/* LOGO */

.header-logo{
    flex-basis: 20%;
}

.header-logo img {
    height: 50px;
}



/* MENU */

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a{
    color: black !important;
}

.nav-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-family: "urbane", sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* DROPDOWN */

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #c8a27a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 15px 0;
    min-width: 150px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
}

.nav-menu .sub-menu li {
    padding: 8px 20px;
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* CTA BUTTON */

.btn-header {
    background: #c8a27a;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 700;
    font-family: "urbane", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: black !important;
    text-transform: uppercase;
}

.btn-header:hover {
    background: #b78e66;
}


/* =========================================
   RESPONSIVIDADE HEADER / TOP BAR
   ========================================= */

@media (max-width: 1200px) {
    .site-header {
        max-width: 1200px;
        margin: auto;
        padding: 0 30px;
    }

    .site-header:not(.dynamic-header){
        max-width: 1200px !important;
        margin: auto;
        padding: 20px 30px;
    }

    .site-header .header-inner{
        flex-wrap: nowrap !important;
        max-width: 1200px !important;
        margin: 0;
        padding: 0 ;
    }
}

/* Tablets e telas médias */
@media (max-width: 1019px) {
    .top-bar-container {
        padding: 8px 16px;
        font-size: 12px;
    }

    .header-container {
        padding: 16px 16px;
        gap: 16px;
    }

    .header-logo img {
        height: 42px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .btn-header {
        padding: 10px 18px;
        font-size: 12px;
    }

    .header-main{
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .site-header .header-inner{
        flex-direction: row;
    }

    .site-header .header-inner{
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .site-header .header-inner .mobile-toggle {
        order: 1;
        /* margin-right: auto; */
    }

    .site-header .header-inner .header-logo {
        order: 2;
        position: absolute;
        left: 56%;
        transform: translateX(-50%);
        flex-basis: auto;
    }

    .site-header .header-inner .header-menu,
    .site-header .header-inner .header-cta {
        order: 3;
    }
}

@media (max-width: 768px) {
    .site-header {
        max-width: 768px;
        margin: auto;
        padding: 0 16px;
        justify-content: flex-end;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-bar {
        font-size: 11px;
    }

    .site-header .header-inner .header-logo{
        left: 52%;
    }

    .top-bar-container {
        display: none;
    }

    .header-main{
       
        padding: 0 !important;
        margin: 0 !important;
    }

    .site-header .header-inner{
        flex-wrap: nowrap;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        gap: 12px;
    }

    .header-logo {
        /* width: 100%; */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo img {
        height: 40px;
    }

    .header-cta {
        width: 100%;
        margin-top: 4px;
    }

    .btn-header {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .nav-menu a {
        font-size: 12px;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: black;
    display: block;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
    background: white;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
    list-style: none;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 18px;
    color: black !important;
}


/* RESPONSIVE */

@media (max-width:1023px) {

    .header-menu {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        justify-content: center;
    }

    .mobile-menu.active {
        display: block;
    }

}