@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --yathon-green: #FFC107;
    --yathon-green-strong: #FFC107;
    --yathon-lime: #FFC107;
    --yathon-ink: #FFC107;
    --yathon-cream: #FFF8E1;
    --yathon-header-height: 76px;
    --yathon-logo-space: 220px;
    --yathon-header-padding: 20px;
    --yathon-container-width: 1230px;
}

body.yathon-nav-locked {
    overflow: hidden;
}

.yathon-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--yathon-header-height);
    z-index: 1000;
    background: transparent;
    color: #fff;
    font-family: "Mukta", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.yathon-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 10, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 0;
}

.yathon-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.yathon-header--green {
    background: #000000;
    color: #fff;
}

.yathon-header.is-open {
    background: #000000;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.yathon-header.is-scrolled {
    background: #000000;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.yathon-header__inner {
    max-width: var(--yathon-container-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--yathon-header-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.yathon-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: var(--yathon-logo-space);
}

.yathon-logo__link {
    display: inline-flex;
    align-items: center;
    height: var(--yathon-header-height);
    position: relative;
    max-width: 80%;
}

.yathon-logo__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--yathon-green);
}

.yathon-logo__img {
    height: 10px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: opacity 0.2s ease;
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 992px) {
    .yathon-logo__img {
        height: 6px;
    }
}

.yathon-logo__img--color {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.yathon-header.is-open .yathon-logo__img--white,
.yathon-header.is-scrolled .yathon-logo__img--white {
    opacity: 0;
}

.yathon-header.is-open .yathon-logo__img--color,
.yathon-header.is-scrolled .yathon-logo__img--color {
    opacity: 1;
}

.yathon-logo a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.yathon-logo__text {
    font-size: 22px;
}

.yathon-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
    height: var(--yathon-header-height);
}

.yathon-nav {
    position: static;
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 0;
    margin-left: auto;
    font-family: "Montserrat", sans-serif;
}

.yathon-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.yathon-nav__toggle:hover,
.yathon-nav__toggle:focus-visible,
.yathon-nav__toggle[aria-expanded="true"] {
    background: var(--yathon-green);
    border-color: var(--yathon-green);
    color: #fff;
}

.yathon-nav__hamburger {
    width: 16px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: relative;
}

.yathon-nav__hamburger::before,
.yathon-nav__hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
}

.yathon-nav__hamburger::before {
    top: -5px;
}

.yathon-nav__hamburger::after {
    top: 5px;
}

.yathon-nav__hamburger,
.yathon-nav__hamburger::before,
.yathon-nav__hamburger::after {
    transition: transform 0.3s ease, top 0.3s ease, background 0.3s ease;
}

.yathon-nav__toggle[aria-expanded="true"] .yathon-nav__hamburger {
    background: transparent;
}

.yathon-nav__toggle[aria-expanded="true"] .yathon-nav__hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.yathon-nav__toggle[aria-expanded="true"] .yathon-nav__hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.yathon-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.yathon-nav__list--mobile {
    display: none;
}

.yathon-nav__item {
    display: flex;
    align-items: center;
    height: 100%;
}

.yathon-nav__link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    height: 100%;
    line-height: 1;
    position: relative;
}

.yathon-nav__item--search .yathon-nav__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
}

.yathon-nav__search-icon {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.yathon-nav__search-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: currentColor;
    right: -5px;
    bottom: -2px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.yathon-mega__search {
    max-width: 520px;
}

.yathon-mega__search-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.yathon-mega__search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 999px;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(255, 193, 7, 0.35);
    box-shadow: 0 10px 26px rgba(255, 193, 7, 0.12);
}

.yathon-mega__search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    background-image: none;
    font-size: 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
}

.yathon-mega__search-input::-webkit-search-decoration,
.yathon-mega__search-input::-webkit-search-cancel-button,
.yathon-mega__search-input::-webkit-search-results-button,
.yathon-mega__search-input::-webkit-search-results-decoration {
    display: none;
}

.yathon-mega__search-input:focus {
    border: none;
    outline: none;
}

.yathon-mega__search-form:focus-within {
    border-color: var(--yathon-green);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.35);
}

.yathon-mega__search-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    border: none;
    background: var(--yathon-green);
    background-image: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.2);
}

.yathon-mega__search-button-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.yathon-mega__search-button-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.yathon-mega__search-button-icon::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: currentColor;
    right: -1px;
    bottom: 2px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.yathon-nav__link:hover,
.yathon-nav__link:focus,
.yathon-nav__link:active,
.yathon-nav__link:visited {
    background: transparent;
}

.yathon-nav__link:hover,
.yathon-nav__link:focus {
    color: var(--yathon-green);
}

.yathon-header.is-open .yathon-nav__link:hover,
.yathon-header.is-open .yathon-nav__link:focus,
.yathon-header.is-scrolled .yathon-nav__link:hover,
.yathon-header.is-scrolled .yathon-nav__link:focus {
    color: var(--yathon-green);
}

.yathon-nav__item--search .yathon-nav__link:hover,
.yathon-nav__item--search .yathon-nav__link:focus {
    color: inherit;
}

.yathon-btn:hover,
.yathon-btn:focus,
.yathon-btn:active {
    background: #FFC107;
}

.yathon-nav__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.yathon-nav__caret {
    width: 6px;
    height: 6px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.yathon-nav__mega-toggle[aria-expanded="true"] .yathon-nav__caret {
    transform: rotate(-135deg);
}

.yathon-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    margin-left: 0;
}

.yathon-btn {
    background: var(--yathon-green);
    color: #fff;
    padding: 0 18px;
    height: 44px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    position: relative;
}

.yathon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.25);
}

.yathon-btn--contato {
    padding: 0 22px;
}

.yathon-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    height: 100%;
}

.yathon-lang.is-custom .gtranslate_wrapper,
.yathon-lang.is-custom #gtranslate_wrapper,
.yathon-lang.is-custom .gt_float_switcher,
.yathon-lang.is-custom .gt_float_wrapper,
.yathon-lang.is-custom .switcher,
.yathon-lang.is-custom .gt_switcher,
.yathon-lang.is-custom .gt_container,
.yathon-lang.is-custom .gt_link,
.yathon-lang.is-custom .gt_flag,
.yathon-lang.is-custom > :not(.yathon-lang__custom) {
    display: none !important;
}

.yathon-lang__custom {
    position: relative;
}

.yathon-lang__button {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 193, 7, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.yathon-header.is-open .yathon-lang__button,
.yathon-header.is-scrolled .yathon-lang__button {
    border-color: rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

.yathon-lang__flag {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.yathon-lang__list {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    list-style: none;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    display: none;
    z-index: 20;
}

.yathon-lang__custom.is-open .yathon-lang__list {
    display: block;
}

.yathon-lang__item + .yathon-lang__item {
    margin-top: 6px;
}

.yathon-lang__option {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--yathon-green);
    text-align: left;
}

.yathon-lang__option:hover {
    background: rgba(255, 193, 7, 0.08);
    border-radius: 8px;
}

.yathon-lang a {
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.yathon-lang img {
    border: 0;
    box-shadow: none;
    display: block;
}

.yathon-nav__item--mega {
    position: static;
}

.yathon-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    border-top: 1px solid rgba(255, 193, 7, 0.15);
    border-bottom: 10px solid var(--yathon-green);
    background: #000000;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.yathon-nav__item.is-active .yathon-nav__link::after,
.yathon-nav__mega-toggle[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--yathon-green);
}

.yathon-nav__item--search .yathon-nav__link::after {
    display: none;
}

.yathon-mega.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yathon-mega__wrap {
    max-width: var(--yathon-container-width);
    margin: 0 auto;
    padding: 0 var(--yathon-header-padding);
    display: grid;
    grid-template-columns: var(--yathon-logo-space) 1fr;
    gap: 16px;
    align-items: stretch;
    min-height: 320px;
}

.yathon-mega__media {
    background-image: var(--yathon-mega-image, linear-gradient(135deg, #000000 0%, #FFC107 100%));
    background-size: cover;
    background-position: center;
    border-radius: 0;
    min-height: 320px;
    height: 100%;
    margin-left: calc((100vw - var(--yathon-container-width)) / -2 - var(--yathon-header-padding));
    max-width: var(--yathon-logo-space);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.yathon-mega__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 193, 7, 0.82) 0%, rgba(255, 193, 7, 0.42) 42%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.yathon-mega__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    padding: 32px 0 32px;
    justify-content: center;
}

.yathon-mega__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 32px;
}

.yathon-mega__columns--compact {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 24px;
}

.yathon-mega__column h4 {
    margin: 0 0 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.yathon-mega__title-link {
    color: #ffffff;
    text-decoration: none;
}

.yathon-mega__title-link:hover,
.yathon-mega__title-link:focus {
    color: var(--yathon-green);
}

.yathon-mega__column a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.yathon-mega__column a:hover {
    color: var(--yathon-green);
}

.yathon-mega__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.55);
    border-left: 4px solid #FFC107;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.yathon-mega__cta span {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}

.yathon-mega__cta-link {
    color: #fff;
    background: #FFC107;
    border-radius: 6px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.yathon-mega__cta-link:hover,
.yathon-mega__cta-link:focus {
    color: #fff;
    background: #FFC107;
    transform: translateY(-1px);
}


@media (max-width: 991px) {
    .yathon-header {
        height: auto;
    }

    .yathon-header__inner {
        height: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .yathon-nav__toggle {
        display: inline-flex;
    }

    .yathon-nav {
        position: static;
    }

    .yathon-nav__list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        max-height: none;
        flex-direction: column;
        align-items: stretch;
        background: #000000;
        color: #fff;
        padding: 16px 18px 24px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
        z-index: 1;
    }

    .yathon-nav__list.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
    }

    .yathon-nav__list--desktop {
        display: none !important;
    }

    .yathon-nav__list > .yathon-nav__item {
        padding: 0;
    }

    .yathon-nav__mobile-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex: 0 0 auto;
        margin-bottom: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .yathon-nav__mobile-logo {
        display: inline-flex;
        align-items: center;
    }

    .yathon-nav__mobile-logo .yathon-logo__img--color {
        opacity: 1;
        position: static;
        height: 22px;
    }

    .yathon-nav__close {
        background: transparent;
        border: none;
        font-size: 30px;
        line-height: 1;
        color: #fff;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .yathon-nav__item {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .yathon-nav__list--mobile > li {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .yathon-nav__list--mobile > li.menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .yathon-nav__list--mobile > li.menu-item:last-of-type {
        border-bottom: 0;
    }

    .yathon-nav__link {
        width: 100%;
        height: auto;
        padding: 13px 2px;
        justify-content: space-between;
        font-size: 14px;
    }

    .yathon-nav__list--mobile a {
        width: 100%;
        height: auto;
        padding: 13px 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .yathon-nav__list--mobile a:active {
        color: var(--yathon-green);
    }

    .yathon-nav__list--mobile .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0 0 0 14px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .yathon-nav__list--mobile .sub-menu a {
        font-size: 13.5px;
        padding: 10px 0;
    }

    .yathon-nav__list--mobile .menu-item-has-children.is-open > .sub-menu {
        max-height: 600px;
        opacity: 1;
    }

    .yathon-submenu-toggle {
        position: absolute;
        right: 0;
        top: 6px;
        width: 36px;
        height: 36px;
        border: 0;
        background: transparent;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        flex-shrink: 0;
    }

    .yathon-submenu-toggle::after {
        content: "";
        width: 12px;
        height: 12px;
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transform: rotate(0deg);
        transition: transform 0.25s ease;
    }

    .yathon-submenu-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .yathon-nav__list--mobile .menu-item-has-children {
        position: relative;
    }

    .yathon-nav__list--mobile .menu-item-has-children > a {
        padding-right: 40px;
    }

    .yathon-nav__list--mobile .yathon-btn {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .yathon-nav__item--mega {
        position: relative;
    }

    .yathon-mega {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        order: 2;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .yathon-mega.is-open {
        display: block;
    }

    .yathon-mega__wrap {
        gap: 0;
    }

    .yathon-mega__wrap {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .yathon-mega__content {
        padding: 0;
        justify-content: flex-start;
    }

    .yathon-mega__column h4 {
        display: none;
    }

    .yathon-mega__column a {
        margin-bottom: 0;
        font-size: 13px;
        padding: 3px 0 3px 12px;
        position: relative;
    }

    .yathon-mega__media {
        min-height: 180px;
        border-radius: 16px;
        margin-left: 0;
        display: none;
    }

    .yathon-mega__columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .yathon-mega__cta {
        display: none;
    }

    .yathon-mega__column a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 3px;
        height: 3px;
        border-radius: 999px;
        background: rgba(255, 193, 7, 0.4);
        transform: translateY(-50%);
    }

    .yathon-nav__item.is-active .yathon-nav__link::after {
        display: none;
    }

    .yathon-header__actions {
        display: none;
    }
}

@media (min-width: 1600px) {
    :root {
        --yathon-logo-space: 300px;
    }
}

@media (min-width: 992px) {
    .yathon-nav__list {
        position: static;
    }

    .yathon-nav__list--mobile {
        display: none;
    }
}

.yathon-header.yathon-header--green,
.yathon-header.is-open,
.yathon-header.is-scrolled {
    background: #000000 !important;
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.34) !important;
}

.yathon-header .yathon-logo__link::after {
    background: #FFC107 !important;
}

.yathon-header .yathon-btn,
.yathon-header .yathon-btn--contato {
    background: #FFC107 !important;
    color: #fff !important;
}

.yathon-header .yathon-btn:hover,
.yathon-header .yathon-btn:focus,
.yathon-header .yathon-btn:active {
    background: #FFC107 !important;
    color: #fff !important;
}

.yathon-header .yathon-mega,
.yathon-header .yathon-mega__wrap,
.yathon-header .yathon-mega__content {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.yathon-header .yathon-mega__cta {
    color: #ffffff !important;
}

.yathon-header .yathon-mega__media {
    background-color: #000000 !important;
}

.yathon-header .yathon-mega {
    border-bottom-color: #FFC107 !important;
}

.yathon-header .yathon-nav__item.is-active .yathon-nav__link::after,
.yathon-header .yathon-nav__mega-toggle[aria-expanded="true"]::after,
.yathon-header .yathon-mega__search-button {
    background: #FFC107 !important;
}

@media (min-width: 992px) {
    .yathon-header .yathon-nav__item.is-active .yathon-nav__link::after,
    .yathon-header .yathon-nav__mega-toggle[aria-expanded="true"]::after {
        display: block !important;
    }
}

.yathon-header .yathon-nav__link,
.yathon-header .yathon-mega__column a {
    color: inherit !important;
}

.yathon-header.is-open .yathon-nav__link:hover,
.yathon-header.is-open .yathon-nav__link:focus,
.yathon-header.is-scrolled .yathon-nav__link:hover,
.yathon-header.is-scrolled .yathon-nav__link:focus,
.yathon-header .yathon-mega__column a:hover {
    color: #FFC107 !important;
}

@media (max-width: 991px) {
    .yathon-header .yathon-nav__list {
        background: #000000 !important;
        color: #ffffff !important;
    }
}

body.elementor-editor-active .yathon-header,
body.elementor-editor-preview .yathon-header {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
}

body.elementor-editor-active .yathon-mega,
body.elementor-editor-preview .yathon-mega {
    display: none !important;
}

