:root {
    --amop-blue-dark: #071a4a;
    --amop-blue: #0b2560;
    --amop-blue-soft: #102d73;
    --amop-lime: #db222a;
    --amop-white: #ffffff;
    --amop-text: #0f1f3d;
    --amop-text-soft: #67748e;
    --amop-border: rgba(255, 255, 255, 0.12);
    --amop-shadow: 0 18px 40px rgba(5, 19, 50, 0.18);
}

body.amop-menu-open {
    overflow: hidden;
}

.amop-header {
    position: relative;
    z-index: 50;
    background: var(--amop-blue-dark);
}

/* TOPO */
.amop-utility-bar {
    background: #f4f5f7;
    border-bottom: 1px solid rgba(15, 31, 61, 0.08);
}

.amop-utility-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.amop-utility-left,
.amop-utility-center,
.amop-utility-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amop-utility-date,
.amop-utility-center a {
    font-size: 11px;
    font-weight: 400;
    color: #56637d;
    text-decoration: none;
}

.amop-utility-center a:hover {
    color: var(--amop-blue);
}

.amop-utility-center .sep {
    color: #9aa5bb;
}

.amop-utility-right a {
    color: var(--amop-text);
    font-size: 11px;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease;
}

.amop-utility-right a:hover {
    color: var(--amop-blue);
}

/* BARRA PRINCIPAL */
.amop-main-bar {
    background: linear-gradient(90deg, #06163f 0%, #0a2157 100%);
    border-bottom: 1px solid var(--amop-border);
}

.amop-main-grid {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.amop-main-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.amop-main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.amop-main-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.amop-logo img {
    max-height: 120px;
    width: auto;
    display: block;
}

.amop-main-social a,
.amop-icon-btn,
.amop-mobile-search-btn,
.amop-mobile-close {
    color: #fff;
    background: transparent;
    border: 0;
    text-decoration: none;
    transition: all 0.25s ease;
}

.amop-main-social a {
    font-size: 20px;
}

.amop-main-social a:hover {
    color: var(--amop-lime);
    transform: translateY(-2px);
}

.amop-icon-btn i,
.amop-mobile-search-btn i,
.amop-mobile-close i {
    font-size: 20px;
    line-height: 1;
}

/* MENU DESKTOP */
.amop-nav-bar {
    background: #071a4a;
    border-bottom: 1px solid var(--amop-border);
}

.amop-desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.amop-menu-item {
    position: relative;
}

.amop-menu-item>a {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

.amop-menu-item>a:hover,
.amop-menu-item.active>a {
    color: var(--amop-lime);
}

.amop-menu-item.has-dropdown>a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) translateY(-1px);
    transition: 0.25s ease;
}

.amop-menu-item.has-dropdown:hover>a::after,
.amop-menu-item.active>a::after {
    border-color: var(--amop-lime);
}

.amop-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--amop-shadow);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
}

.amop-menu-item:hover .amop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.amop-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amop-dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--amop-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

.amop-dropdown li a:hover {
    background: rgba(11, 37, 96, 0.06);
    color: var(--amop-blue);
}

/* TÍTULO */
.amop-section-bar {
    background: linear-gradient(90deg, #05163e 0%, #071f57 100%);
}

.amop-section-title-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.amop-section-marker {
    width: 3px;
    height: 32px;
    border-radius: 3px;
    background: var(--amop-lime);
}

.amop-section-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* BUSCA DESKTOP */
.amop-desktop-search {
    background: #091d4d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.amop-desktop-search.is-open {
    max-height: 120px;
}

.amop-search-form {
    display: flex;
    align-items: center;
    padding: 16px 0;
}

.amop-search-form input {
    width: 100%;
    height: 50px;
    border: 0;
    outline: 0;
    border-radius: 8px 0 0 8px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 400;
    color: var(--amop-text);
}

.amop-search-form button {
    width: 58px;
    height: 50px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--amop-lime);
    color: #ffffff;
    font-size: 22px;
}

/* OVERLAY */
.amop-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 44, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 98;
}

.amop-mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* MENU MOBILE */
.amop-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100vh;
    background: linear-gradient(180deg, #081a49 0%, #07143a 100%);
    transform: translateX(-100%);
    transition: 0.32s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.28);
}

.amop-mobile-drawer.is-open {
    transform: translateX(0);
}

.amop-mobile-header {
    min-height: 74px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.amop-mobile-logo img {
    max-height: 40px;
}

.amop-mobile-search {
    display: none;
    padding: 14px 16px 0;
}

.amop-mobile-search.is-open {
    display: block;
}

.amop-mobile-panels {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.amop-mobile-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 0 0 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.amop-mobile-panel.is-active {
    transform: translateX(0);
}

.amop-mobile-panel-title {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px 14px;
}

.amop-mobile-subheader {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 0;
}

.amop-mobile-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
}

.amop-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
}

.amop-mobile-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.amop-mobile-list a,
.amop-mobile-list button {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    background: transparent;
    border: 0;
    text-align: left;
}

.amop-mobile-list span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.amop-mobile-list a:hover,
.amop-mobile-list button:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
    .amop-utility-bar {
        display: none;
    }

    .amop-main-grid {
        min-height: 70px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .amop-main-logo {
        justify-content: flex-start;
    }

    .amop-main-social {
        display: none;
    }

    .amop-logo img {
        max-height: 80px;
        margin: 20px 10px 0px 30px;
    }

    .amop-section-title-wrap {
        min-height: 62px;
    }

    .amop-section-title {
        font-size: 19px;
    }
}

.amop-section-bar {
    background: linear-gradient(90deg, #05163e 0%, #071f57 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.amop-section-bar {
    background: linear-gradient(90deg, #05163e 0%, #071f57 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.amop-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.amop-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
}

.amop-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.25s ease;
}

.amop-breadcrumb li a:hover {
    color: var(--amop-lime);
}

.amop-breadcrumb li.is-current span {
    color: #ffffff;
    font-weight: 500;
}

.amop-breadcrumb li i {
    font-size: 12px;
    color: var(--amop-lime);
}

@media (max-width: 991.98px) {
    .amop-breadcrumb {
        padding: 16px 0;
        gap: 8px;
    }

    .amop-breadcrumb li {
        font-size: 15px;
    }

    .amop-breadcrumb li i {
        font-size: 10px;
    }
}

.amop-dropdown li {
    position: relative;
}

.amop-dropdown li.has-submenu>a::after {
    content: "›";
    float: right;
    font-size: 16px;
}

.amop-submenu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(5, 19, 50, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: .25s ease;
}

.amop-dropdown li.has-submenu:hover>.amop-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.amop-submenu li a {
    display: block;
    padding: 10px 16px;
    color: #0f1f3d;
    text-decoration: none;
    font-size: 14px;
}

.amop-submenu li a:hover {
    background: rgba(11, 37, 96, 0.06);
    color: #0b2560;
}