:root {
    --zs-blue: #116836;
    --zs-light-blue: #2f8dc8;
    --zs-dark: #0f1f2a;
    --zs-gray-bg: #edf1f4;
    --zs-text: #1f2b36;
    --zs-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    color: var(--zs-text);
    background: #fff;
}

body.zs-no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.zs-container {
    width: min(1320px, 92%);
    margin: 0 auto;
}

.zs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.zs-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.zs-header-inner {
    display: flex;
    align-items: center;
    min-height: 128px;
    gap: 18px;
}

.zs-logo-title {
    margin: 0;
    line-height: 1;
}

.zs-logo-title img {
    width: 120px;
}

.zs-menu-toggle {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}

.zs-nav {
    margin-left: 160px;
}

.zs-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.zs-nav-item > a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #252f38;
    letter-spacing: -0.01em;
    height: 128px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.zs-nav-item:hover > a,
.zs-nav-item:focus-within > a {
    color: #fff;
    background: #116836;
}

.zs-nav-item {
    position: relative;
}

.zs-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 332px;
    background: #116836;
    color: #fff;
    padding: 18px 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 26px rgba(17, 104, 54, 0.28);
    min-height: auto;
    height: auto;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.zs-nav-item:hover .zs-nav-submenu,
.zs-nav-item:focus-within .zs-nav-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.zs-nav-subgroup + .zs-nav-subgroup {
    margin-top: 16px;
}

.zs-nav-subgroup-heading {
    margin: 0;
    padding: 0 0 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.zs-nav-subgroup-title {
    display: block;
    padding: 0;
    border: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-decoration: none;
    background: transparent;
}

.zs-nav-subgroup-title:hover {
    padding-left: 0;
    background: transparent;
}

.zs-nav-subgroup ul {
    margin: 0;
    padding: 6px 0 0;
    list-style: none;
    display: grid;
    gap: 2px;
}

.zs-nav-subgroup ul a {
    display: block;
    padding: 8px 10px 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
}

.zs-nav-subgroup ul a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    padding-left: 16px;
}

.zs-nav-subgroup li:last-child a {
    border-bottom: 0;
}

.zs-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.zs-language-switcher {
    position: relative;
    flex: 0 0 auto;
}

.zs-nav-icon {
    width: 96px;
    height: 128px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #252f38;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.zs-nav-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zs-search-toggle.is-active,
.zs-nav-icon:hover {
    background: #116836;
    color: #fff;
}

.zs-language-switcher:hover .zs-language-toggle,
.zs-language-switcher:focus-within .zs-language-toggle {
    background: #116836;
    color: #fff;
}

.zs-language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    padding: 12px 0;
    background: #fff;
    border: 1px solid #e2e4e7;
    box-shadow: 0 18px 50px rgba(17, 104, 54, 0.14);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.zs-language-switcher:hover .zs-language-menu,
.zs-language-switcher:focus-within .zs-language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.zs-language-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #252f38;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.zs-language-link:hover,
.zs-language-link:focus-visible {
    background: #f3f8f5;
    color: #116836;
}

.zs-language-flag {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #d7dce0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.zs-language-flag.is-en {
    background:
        linear-gradient(#b22234 0 14.28%, #fff 14.28% 28.56%, #b22234 28.56% 42.84%, #fff 42.84% 57.12%, #b22234 57.12% 71.4%, #fff 71.4% 85.68%, #b22234 85.68% 100%);
}

.zs-language-flag.is-en::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 56%;
    background: #3c3b6e;
}

.zs-language-flag.is-es {
    background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.zs-language-flag.is-pt-br {
    background: #009739;
}

.zs-language-flag.is-pt-br::before {
    content: "";
    position: absolute;
    inset: 4px 8px;
    background: #ffdf00;
    transform: rotate(45deg);
}

.zs-language-flag.is-pt-br::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #002776;
}

.zs-language-flag.is-fr {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.zs-language-flag.is-de {
    background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.zs-language-name {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.zs-search-panel {
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #116836;
    color: #fff;
    z-index: 25;
    min-height: calc(100vh - 128px);
    overflow-y: auto;
    transform-origin: top;
    transform: scaleY(0.02);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.zs-header.is-search-open .zs-search-panel {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.zs-search-inner {
    min-height: calc(100vh - 128px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.zs-search-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: min(940px, 100%);
    margin-bottom: 80px;
}

.zs-search-head h3 {
    margin: 0;
    font-size: 46px;
    line-height: 1;
    font-weight: 200;
    letter-spacing: -0.01em;
    grid-column: 1;
    grid-row: 1;
}

.zs-search-close {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.zs-search-close span {
    margin-left: 8px;
    text-decoration: none;
}

.zs-search-form {
    display: flex;
    align-items: center;
    gap: 28px;
    width: min(940px, 100%);
}

.zs-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 8px;
}

.zs-search-field span {
    font-size: 34px;
}

.zs-search-field input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 36px;
}

.zs-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.64);
}

.zs-search-form button {
    border: 0;
    height: 44px;
    min-width: 118px;
    padding: 0 18px;
    background: #fff;
    color: #116836;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.zs-menu-toggle {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    font-weight: 700;
    cursor: pointer;
}

.zs-footer {
    background: var(--zs-blue);
    color: #fff;
    padding: 54px 0 38px;
}

.zs-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.zs-footer-logo img {
    width: 180px;
    filter: brightness(0) invert(1);
}

.zs-social-links {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.zs-social-links a {
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--zs-blue);
    border-radius: 999px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.zs-social-links a:hover {
    transform: translateY(-2px);
}

.zs-social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.zs-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.zs-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.zs-footer-grid h4 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
}

.zs-footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.zs-footer-grid a {
    color: #d7e5f0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    font-size: 18px;
    line-height: 1.45;
    display: block;
    width: 100%;
    padding-bottom: 4px;
}

.zs-footer-grid a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.zs-footer-bottom {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.zs-footer-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.zs-footer-bottom a {
    color: #eef6fc;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.2;
}

.zs-footer-bottom p {
    margin: 0;
    color: #eef6fc;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 1312px) {
    .zs-header-inner {
        flex-wrap: nowrap;
        align-items: center;
        min-height: 96px;
        gap: 8px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .zs-logo-title {
        flex: 0 0 auto;
    }

    .zs-logo-title img {
        width: 96px;
    }

    .zs-nav {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 18px;
    }

    .zs-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .zs-nav-item > a {
        height: 96px;
        padding: 0 14px;
        font-size: 15px;
    }

    .zs-nav-actions {
        margin-left: auto;
        flex: 0 0 auto;
    }

    .zs-nav-icon {
        width: 64px;
        height: 96px;
    }

    .zs-nav-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 1200px) {
    .zs-nav ul {
        gap: 0;
    }

    .zs-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .zs-header .zs-container {
        width: 100%;
        padding-left: 16px;
        padding-right: 0;
    }

    .zs-header-inner {
        min-height: 82px;
        gap: 0;
    }

    .zs-logo-title img {
        width: 90px;
    }

    .zs-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        position: relative;
        width: 86px;
        height: 82px;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: transparent;
        transition: background-color 0.2s ease;
    }

    .zs-menu-toggle::before,
    .zs-menu-toggle::after {
        content: "";
        position: absolute;
        left: 27px;
        right: 27px;
        height: 2px;
        border-radius: 999px;
        background: #252f38;
        transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
    }

    .zs-menu-toggle::before {
        top: 27px;
        box-shadow: 0 12px 0 #252f38;
    }

    .zs-menu-toggle::after {
        bottom: 27px;
    }

    .zs-menu-toggle[aria-expanded="true"]::before {
        top: 40px;
        box-shadow: none;
        background: #fff;
        transform: rotate(45deg);
    }

    .zs-menu-toggle[aria-expanded="true"]::after {
        bottom: 40px;
        background: #fff;
        transform: rotate(-45deg);
    }

    .zs-menu-toggle[aria-expanded="true"] {
        background: #116836;
    }

    .zs-language-menu {
        right: 0;
        min-width: 200px;
    }

    .zs-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        margin-left: 0;
        height: calc(100vh - 82px);
        background: #116836;
        border-bottom: 0;
        overflow-y: auto;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .zs-nav.is-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .zs-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 24px 20px;
    }

    .zs-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .zs-nav-item > a {
        position: relative;
        height: auto;
        width: 100%;
        padding: 22px 44px 22px 0;
        font-size: 20px;
        line-height: 1.15;
        font-weight: 400;
        color: #fff;
    }

    .zs-nav-item:hover > a,
    .zs-nav-item:focus-within > a {
        color: #fff;
        background: transparent;
    }

    .zs-nav-item-has-sub > a::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 50%;
        width: 11px;
        height: 11px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-65%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .zs-nav-item-has-sub.is-sub-open > a::after {
        transform: translateY(-35%) rotate(225deg);
    }

    .zs-nav-submenu {
        position: static;
        width: 100%;
        min-height: 0;
        padding: 2px 0 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .zs-nav-item-has-sub.is-sub-open .zs-nav-submenu {
        display: block;
    }

    .zs-nav-subgroup + .zs-nav-subgroup {
        margin-top: 10px;
    }

    .zs-nav-subgroup-heading {
        padding: 10px 0 12px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.42);
        font-size: 14px;
        color: #fff;
    }

    .zs-nav-subgroup-title {
        padding: 0;
        border: 0;
    }

    .zs-nav-subgroup ul {
        padding: 0;
    }

    .zs-nav-subgroup ul a {
        padding: 14px 0 14px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 14px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.98);
        background: transparent;
    }

    .zs-nav-subgroup ul a:hover {
        padding-left: 28px;
        background: transparent;
    }

    .zs-nav-actions {
        display: none;
    }

    .zs-search-panel {
        display: none;
    }

    .zs-footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 34px;
    }

    .zs-footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .zs-footer-grid > div {
        width: 100%;
    }

    .zs-footer-grid h4 {
        position: relative;
        margin: 0;
        padding: 0 34px 12px 0;
        font-size: 18px;
        line-height: 1.25;
        cursor: pointer;
    }

    .zs-footer-grid h4::after {
        content: "";
        position: absolute;
        right: 6px;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .zs-footer-grid > div.is-open h4::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .zs-footer-grid ul {
        display: none;
        gap: 0;
        padding-top: 10px;
    }

    .zs-footer-grid > div.is-open ul {
        display: grid;
    }

    .zs-footer-grid a {
        padding: 9px 0;
        font-size: 15px;
        line-height: 1.35;
    }

    .zs-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
