html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #fff9f0;
    color: #0a0a0a;
    font-family: "Neue Montreal", sans-serif;
    font-feature-settings: "kern";
    font-kerning: normal;
    font-optical-sizing: auto;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
    touch-action: manipulation;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

button,
a,
.what-is-item {
    touch-action: manipulation;
}

/* button,
a,
input,
textarea,
select {
    outline: none;
    box-shadow: none;
} */

h1,
h2,
h3 {
    font-family: "Neue Montreal", sans-serif;
}

em {
    font-family: "Libre Baskerville", serif;
}

.serif {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
}

.wrapper {
    position: relative;
    width: 100%;
}

.site-header,
.site-header-404 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.3s ease;
    will-change: transform;
}

.site-header.is-sticky {
    background: #fff9f0;
}

.site-header.is-sticky .menu-icon span {
    background: #996652;
}
.site-header.is-sticky .whatsapp-button {
    color: #996652;
}

.site-header.is-sticky .logo--default {
    opacity: 0;
}

.site-header.is-sticky .logo--menu {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: clamp(16px, 1.5vw, 20px);
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
}

.header-inner.header-404 {
    justify-content: center;
}

.header-logo {
    position: relative;
    display: flex;
    align-items: center;
}

.header-logo a {
    width: 118.72px;
    height: 32px;
    display: block;
    position: relative;
}

.header-logo a:focus-visible {
    outline: none;
}

.header-logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: auto;
    transition: opacity 1s ease;
}

.logo--default {
    opacity: 1;
    z-index: 2;
}

.logo--menu {
    opacity: 0;
    z-index: 1;
}

body.menu-open .logo--default {
    opacity: 0;
}

body.menu-open .logo--menu {
    opacity: 1;
}

.header-nav {
    flex: 1;
    justify-content: center;
    display: none;
}

.main-menu {
    display: flex;
    gap: 38px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    display: inline-block;
}

.main-menu a {
    color: #fdfdfd;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0.6;
    /* transition: opacity 200ms ease; */
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 14px 16px;
}

.main-menu a:hover {
    opacity: 1;
}

.main-menu a:active {
    color: #848b8c;
}

.main-menu a:focus-visible {
    color: #fdfdfd;
    border-color: #004650;
    border-width: 2px;
    border-radius: 4px;
    border-style: solid;
    outline: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 10001;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10001;
}

.menu-toggle .icon-hamburguer {
    width: 28px;
    font-size: 10px;
    color: #fdfdfd;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfdfd;
    text-decoration: none;
    transition:
        background-color 300ms ease-out,
        color 300ms ease-out,
        border-color 300ms ease-out;
}

.whatsapp-button:focus {
    outline: none;
}

.whatsapp-button span.icon-whatsapp {
    font-size: 24px;
}

.whatsapp-text {
    display: none;
}

.icon-whatsapp {
    display: inline-flex;
    align-items: center;
}

.hero {
    color: #fdfdfd;
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 23, 26, 1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #00000033, #000000b2);
    z-index: 3;
}

.hero-bg-fallback {
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    position: absolute;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.hero-video.is-loaded {
    opacity: 1;
    visibility: visible;
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
}

.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
}

.hero-copys {
    max-width: 680px;
}

.hero-copys h1,
.hero-copys p,
.hero-copys a {
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
}

.hero-copys h1 {
    font-size: clamp(48px, 4.5vw, 72px);
    line-height: clamp(52px, 4.8vw, 76px);
    font-weight: 500;
    margin-bottom: 24px;
    color: #fdfdfd;
}

.hero-copys p {
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: clamp(24px, 1.8vw, 28px);
    font-weight: 500;
    color: rgba(253, 253, 253, 0.7);
    margin-bottom: 32px;
    max-width: 765px;
}

.hero-copys a {
    padding: 16px 24px;
    background: #fdfdfd;
    color: #021e22;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: clamp(16px, 1.1vw, 18px);
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition:
        background-color 300ms ease-out,
        color 300ms ease-out;
    width: 175px;
    display: flex;
    justify-content: center;
}

.hero-copys a:hover {
    background-color: #004650;
    color: #fdfdfd;
}

.hero-copys a:active {
    background-color: #021e22;
    color: #fdfdfd;
}

.hero-copys a:focus-visible {
    background-color: #004650;
    color: #fdfdfd;
    outline: 2px solid #004650;
    outline-offset: 2px;
}

.hero-bottom {
    padding-bottom: 24px;
    overflow: hidden;
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
    flex-shrink: 0;
}

.hero-line {
    height: 1px;
    width: 100%;
    background: rgba(253, 253, 253, 0.3);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-benefits {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: 24px;
    position: relative;
}

.hero-benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(253, 253, 253, 0.3);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-benefits::-webkit-scrollbar {
    display: none;
}

.benefit {
    flex: 0 0 auto;
    min-width: 220px;
}

.benefit strong {
    display: block;
    font-size: 14px;
}

.benefit span {
    font-size: 13px;
    opacity: 0.75;
}

.benefit span,
.benefit strong {
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .hero-inner {
        min-height: 100vh;
    }

    .hero-benefits {
        justify-content: space-between;
    }

    .benefit {
        min-width: auto;
        max-width: 280px;
    }
}

@media (max-width: 991px) {
    .hero-bottom {
        padding-inline: 0;
    }

    .hero-benefits div:first-child {
        padding-left: clamp(20px, 6vw, 56px);
    }

    .hero-benefits div:last-child {
        padding-right: clamp(20px, 6vw, 56px);
    }
}

@media (min-width: 992px) {
    .whatsapp-button {
        gap: 8px;
        padding: 16px 24px;
        border: 1px solid #fdfdfd;
        border-radius: 9999px;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        color: #fdfdfd;
    }

    .whatsapp-button:hover {
        background-color: #fdfdfd;
        color: #021e22;
        border-color: #fdfdfd;
    }

    .whatsapp-button:active {
        background-color: #e0e2e2;
        color: #021e22;
    }

    .whatsapp-button:focus-visible {
        background-color: #fdfdfd;
        color: #021e22;
        outline: 2px solid #004650;
        outline-offset: 2px;
    }

    .whatsapp-button span.icon-whatsapp {
        font-size: inherit;
    }

    .whatsapp-text {
        display: inline;
    }

    .header-nav {
        display: flex;
    }

    .hero-copys a {
        width: 190px;
    }

    .menu-toggle {
        display: none;
    }

    .hero-bottom {
        border-top: none;
    }

    .hero-inner {
        min-height: 100vh;
    }

    .hero-center {
        padding-top: 0;
    }

    .header-logo a,
    .header-logo img {
        width: 148px;
        height: 40px;
    }
}

.problem-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: clamp(64px, 6vw, 144px);
    padding-right: clamp(20px, 5vw, 169px);
    padding-bottom: clamp(80px, 8vw, 184px);
    padding-left: clamp(20px, 4vw, 56px);
}

.problem-grid {
    display: grid;
}

.problem-eyebrow {
    margin-bottom: 48px;
}

.problem-eyebrow p {
    margin: 0;
    color: #004650;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.problem-eyebrow p + p {
    margin-top: 4px;
}

.problem-content {
    max-width: 787px;
}

.problem-title {
    color: #004650;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(48px, 5vw, 72px);
    line-height: clamp(52px, 5.2vw, 76px);
}

.problem-accent {
    color: #996652;
    font-weight: 500;
    font-size: clamp(48px, 5vw, 72px);
    line-height: clamp(56px, 5.4vw, 76px);
}

.problem-text {
    padding-block: clamp(48px, 6vw, 96px);
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    grid-column: 2;
}

.problem-text p {
    color: #666f70;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: 0;
}

.problem-text p:last-child {
    margin-bottom: 0;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.problem-number {
    color: #004650;
    font-weight: 400;
    font-size: clamp(
        120px,
        calc(120px + (494 - 120) * ((100vw - 375px) / 1065)),
        494px
    );

    line-height: clamp(
        112px,
        calc(112px + (440 - 112) * ((100vw - 375px) / 1065)),
        440px
    );
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    will-change: transform;
}

.problem-label {
    color: #996652;
    font-weight: 400;
    font-size: clamp(24px, 2vw, 28px);
    line-height: clamp(32px, 2.4vw, 36px);
}

@media (min-width: 992px) {
    .problem-grid {
        grid-template-columns: 300px 1fr;
        column-gap: 68px;
        align-items: start;
    }

    .problem-stat {
        grid-column: 1 / -1;
    }

    .problem-title,
    .problem-accent {
        font-size: 72px;
        line-height: 76px;
    }
}

.what-is-section {
    background-color: #004650;
    color: #fdfdfd;
}

.what-is-container {
    padding: clamp(80px, 10vw, 184px) clamp(20px, 5vw, 56px);
}

.what-is-layout {
    display: flex;
    flex-direction: column;
}

.section-title {
    order: 1;
    letter-spacing: -0.01em;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: clamp(40px, 4.6vw, 64px);
    font-weight: 500;
    margin: 0;
    display: inline;
}

.section-title em {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
}

.what-is-content {
    order: 2;
    display: flex;
    flex-direction: column;
    padding-top: clamp(48px, 8vw, 112px);
}

.what-is-layout p {
    order: 3;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    padding-top: 16px;
    margin-top: 32px;
    margin-bottom: 0;
    border-top: #fdfdfd 1px solid;
    max-width: 256px;
    align-self: start;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.section-eyebrow::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: #fdfdfd;
}

.what-is-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.what-is-item p {
    margin: 0;
    padding-top: 0;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: clamp(28px, 2vw, 32px);
    font-weight: 400;
    order: 3;
    border: none;
    max-width: 100%;
    align-self: inherit;
}

.item-mobile-media {
    order: 1;
    width: 100%;
    margin-bottom: 12px;
}

.item-number {
    order: 2;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #0a9bae;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    position: relative;
    padding-left: 84px;
}

.item-number::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 0.5px;
    background: #0a9bae;
}

.what-is-tabs {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.what-is-media {
    display: none;
    position: relative;
    z-index: 1;
}

.what-is-media img {
    width: 100%;
    max-width: 540px;
    height: auto;
    opacity: 0;
    transition: opacity 0.35s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#what-is-image-current {
    opacity: 1;
}

@media (max-width: 767px) {
    .section-title {
        max-width: 415px;
    }
}

@media (min-width: 768px) {
    .section-title span {
        display: block;
    }
}

@media (min-width: 992px) {
    .what-is-layout {
        display: grid;
        grid-template-columns: 1fr 256px;
        grid-template-areas:
            "title intro"
            "content content";
    }

    .what-is-layout p {
        grid-area: intro;
        margin-top: 0;
    }

    .what-is-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        grid-area: content;
    }

    .item-number {
        position: relative;
        padding-left: 96px;
        color: #6cc3ce;
        transition:
            color 0.35s ease,
            padding-left 0.35s ease;
    }

    .item-number::before {
        background: #0a9bae;
    }

    .item-number::after {
        content: "";
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%) scaleX(0);
        width: 72px;
        height: 1px;
        background: #6cc3ce;
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .what-is-tabs {
        padding: 20px 0;
    }

    .what-is-item {
        padding-top: 24px;
        margin-bottom: 0;
    }

    .what-is-item.active .item-number {
        color: #0a9bae;
        padding-left: 0px;
    }

    .what-is-item.active .item-number::before {
        transform: translateY(-50%) scaleX(0);
    }

    .what-is-item.active .item-number::after {
        transform: translateY(-50%) scaleX(1);
        height: 1px;
    }

    .what-is-item.active .item-number::marker {
        display: none;
    }

    .what-is-item.active .item-number::before {
        content: "";
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0a9bae;
    }

    .what-is-item:not(.active) p {
        color: rgba(253, 253, 253, 0.25);
    }

    .what-is-item:not(.active) .item-number {
        color: #087c8b;
    }

    .what-is-item:not(.active) .item-number::before {
        background: #087c8b;
    }

    .what-is-media {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .item-mobile-media {
        display: none;
    }
}

.how-it-works {
    overflow: hidden;
    padding-block: 80px;
    position: relative;
}

/* overlay */
.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #00000066, #000000cc);
    z-index: 1;
}

.how-it-works-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.how-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    align-items: center;
    padding-inline: 0;
}

.how-left {
    margin-bottom: 65px;
    padding-left: clamp(20px, 6vw, 56px);
    padding-right: clamp(20px, 6vw, 56px);
}

.how-eyebrow {
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #fdfdfd;
    margin-bottom: 5px;
}

.how-eyebrow::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;

    background: #fdfdfd;
}

.how-title {
    font-weight: 500;
    font-size: clamp(36px, 4vw, 60px);
    line-height: clamp(40px, 4.2vw, 64px);
    color: #fdfdfd;
    margin: 0;
    padding-bottom: 32px;
}

.how-title em {
    font-weight: 400;
    font-style: italic;
    font-size: inherit;
    line-height: inherit;
}

.how-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 9999px;
    max-width: clamp(175px, 14vw, 190px);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 24px;
    font-weight: 500;
    color: #021e22;
    background: #fdfdfd;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 300ms ease-out,
        color 300ms ease-out;
}

.how-cta:hover {
    background-color: #004650;
    color: #fdfdfd;
}

.how-cta:active {
    background-color: #021e22;
    color: #fdfdfd;
}

.how-cta:focus-visible {
    background-color: #004650;
    color: #fdfdfd;
    outline: 2px solid #004650;
}

.how-right {
    position: relative;
    overflow: hidden;
}

.how-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    touch-action: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

.how-cards article:first-child {
    margin-left: clamp(20px, 6vw, 56px);
}

.how-cards article:last-child {
    margin-right: clamp(20px, 6vw, 56px);
}

.how-cards::-webkit-scrollbar {
    display: none;
}

.how-card {
    display: flex;
    flex: 0 0 85%;
    height: 300px;
    max-width: 300px;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 16px;
    scroll-margin-top: 0;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: none;
    will-change: transform, opacity;
    scroll-snap-align: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.how-number {
    display: block;
    padding-bottom: 10px;
    color: #0a9bae;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: clamp(36px, 3vw, 44px);
    font-weight: 400;
}

.how-card h3 {
    color: #004650;
    padding-bottom: 24px;
    margin: 0;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: clamp(28px, 2vw, 32px);
    font-weight: 500;
}

.how-card p {
    color: #666f70;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 24px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 767px) {
    .how-title {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .how-it-works {
        height: 720px;
        min-height: unset;
    }

    .how-cards {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 768px) {
    .how-title span {
        display: block;
    }
}

@media (min-width: 992px) {
    .how-it-works {
        padding-block: 0;
    }

    .how-container {
        display: grid;
        grid-template-columns: 1fr 508px;
        gap: 80px;
        min-height: 100vh;
        align-items: stretch;
        padding-left: clamp(20px, 6vw, 56px);
        padding-right: clamp(20px, 6vw, 56px);
    }

    .how-left {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 0;
        padding-inline: 0;
    }

    .how-right {
        height: 100%;
        overflow: visible;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: y proximity;
        scroll-padding-top: 152px;
        will-change: scroll-position;
    }

    .how-right::-webkit-scrollbar {
        display: none;
    }

    .how-cards {
        flex-direction: column;
        gap: 24px;
        padding-top: 152px;
        align-items: center;
        overflow-x: visible;
        will-change: transform;
    }

    .how-cards article:first-child {
        margin-left: 0;
    }

    .how-cards article:last-child {
        margin-right: 0;
    }

    .how-card {
        flex: none;
        max-width: 340px;
        height: 340px;
        padding: 40px;
    }
}

.who-section {
    background: #00090a;
    color: #fdfdfd;
    padding-top: clamp(80px, 10vw, 184px);
}

.who-container {
    max-width: 1440px;
    margin: 0 auto;
}

.who-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fdfdfd;
}

.who-eyebrow::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: #fdfdfd;
}

.who-title span {
    font-size: clamp(36px, 4vw, 60px);
    line-height: clamp(40px, 4.2vw, 64px);
    font-weight: 500;
    margin: 0;
}

.who-title span em {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
}

.who-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 6vw, 32px);
    padding-top: clamp(48px, 6vw, 112px);
    padding-bottom: clamp(72px, 10vw, 185px);
    position: relative;
}

.who-left {
    order: 3;
}

.who-right {
    order: 1;
}

.who-name {
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 0.6vw, 8px);
    font-size: clamp(32px, calc(26px + 1.5vw), 48px);
    line-height: clamp(40px, calc(34px + 1.7vw), 56px);
    font-weight: 500;
    margin: 0;
}

.who-name em {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
}

.who-divider {
    width: 100%;
    height: 1px;
    background-color: #fdfdfd;
    margin-block: 24px;
    transform: scaleX(1);
    transform-origin: left;
}

.who-role {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.who-person {
    position: relative;
    overflow: hidden;
}

.who-person__inner {
    will-change: transform, opacity;
}

.who-description {
    display: flex;
    flex-direction: column;
}

.reveal-item {
    overflow: hidden;
    display: block;
    margin-bottom: 24px;
}

.reveal-item p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-block: 0;
}

.who-description .reveal-item:last-child {
    margin-bottom: 0;
}

.who-controls {
    margin-top: 90px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.who-slider-placeholder {
    width: 100%;
    border-radius: 20px;
}

.team-slider {
    width: 100%;
}

.team-slider__media {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
}

.team-card--main {
    max-width: 427px;
}

.team-card--preview {
    width: 312px;
    opacity: 0.5;
    display: none;
}

.team-card__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-card__track {
    display: flex;
    height: 100%;
    border-radius: 16px;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    touch-action: pan-y;
}

.team-card__track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: absolute;
    padding-inline: 16px;
    z-index: 99;
    max-width: 427px;
    margin: 0 auto;
    max-height: 56px;
    order: 2;
    width: 100%;
}

.team-prev,
.team-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.25);
}

.team-prev:hover,
.team-next:hover {
    background: #021e22;
}

.team-prev span,
.team-next span {
    color: #021e22;
    font-size: 12px;
    font-weight: 500;
}

.team-prev:hover span,
.team-next:hover span {
    color: #fdfdfd;
}

.team-count {
    color: #fdfdfd;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    font-weight: 400;
    min-width: 40px;
    display: none;
    justify-content: center;
    align-items: center;
}

.who-logos {
    padding-bottom: clamp(80px, 10vw, 184px);
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 100vw;
}

.who-logos__track {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 24px;
}

.who-logos__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    min-width: 100%;
    animation: logos-x 18s linear infinite;
}

@keyframes logos-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 24px));
    }
}

/* ==========================================
   CLIENT LOGOS
========================================== */

.who-logos__item {
    width: 207px;
    height: 112px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-logos__item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* .who-logos__track img {
    width: 147.86px;
    height: 80px;
    display: grid;
    place-items: center;
} */

/* .who-logos__track img {
    margin-right: 24px;
}

.who-logos__track img:last-child {
    margin-right: 0;
} */

@media (max-width: 767px) {
    .who-title {
        max-width: 500px;
    }

    .who-person {
        min-height: 505px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .who-person {
        min-height: 400px;
    }
}

@media (min-width: 768px) {
    .who-title span {
        display: block;
    }
}

@media (max-width: 991px) {
    .who-logos__item {
        width: 148px;
        height: 80px;
        padding: 16px 24px;
    }
}

@media (min-width: 992px) {
    .who-title {
        max-width: 700px;
    }

    .who-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .who-left {
        order: 1;
    }

    .who-right {
        order: 3;
    }

    .team-slider__controls {
        bottom: 186px;
        width: auto;
        padding-inline: 0;
    }

    .team-count {
        display: inline-flex;
    }

    /* .who-logos__track img {
        width: 207px;
        height: 112px;
    } */

    .who-person {
        padding-bottom: 120px;
    }

    .team-prev,
    .team-next {
        background: transparent;
        border: 1px solid #fdfdfd;
        box-shadow: none;
    }

    .team-prev:hover,
    .team-next:hover {
        background: #fdfdfd;
    }

    .team-prev:hover span,
    .team-next:hover span {
        color: #021e22;
    }

    .team-prev:active,
    .team-next:active {
        background-color: #e0e2e2;
        color: #021e22;
    }

    .team-prev:focus-visible,
    .team-next:focus-visible {
        background: #fdfdfd;
        border: none;
        outline: 2px solid #004650;
        outline-offset: 2px;
    }

    .team-prev:focus-visible span,
    .team-next:focus-visible span {
        color: #021e22;
    }

    .team-prev span,
    .team-next span {
        color: #fdfdfd;
        font-size: 12px;
        font-weight: 500;
    }

    .who-person__inner {
        max-width: 314px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-slider__controls {
        bottom: 100px;
    }

    .who-left,
    .who-right {
        flex: 1;
    }

    .who-person {
        min-height: 675px;
    }

    .hero-copys {
        max-width: 730px;
    }
}

@media (min-width: 1200px) {
    .team-card--preview {
        display: flex;
    }

    .who-left {
        width: 426px;
    }

    .who-right {
        width: 763px;
    }

    .who-person {
        min-height: 725px;
    }

    .hero-copys {
        max-width: 850px;
    }
}

@media (min-width: 1400px) {
    .who-left,
    .team-slider__controls {
        padding-left: 113px;
    }

    .hero-copys {
        max-width: 990px;
    }
}

.testimonials {
    padding: clamp(80px, 10vw, 184px) 0 clamp(40px, 6vw, 96px) 0;
}

.testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 48px;
}

.testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    color: #004650;
    font-weight: 500;
}

.testimonials__eyebrow::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background-color: #004650;
}

.testimonials__title {
    color: #004650;
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: clamp(40px, 5.5vw, 64px);
}

.testimonials__title span {
    display: block;
}

.testimonials__title span:last-child {
    color: #996652;
}

.testimonials__header-right {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.testimonials__avatars {
    display: flex;
    align-items: center;
    flex: 1;
}

.testimonials__avatars img:first-child {
    margin-left: 0;
    max-width: 128px;
}

.testimonials__rating {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.testimonials__rating .stars {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.testimonials__rating .icon {
    display: flex;
    gap: 2px;
}

.testimonials__rating .rate {
    color: #00171a;
    font-size: 14px;
    font-weight: 500;
}

.testimonials__rating strong {
    color: #004650;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.testimonials__rating .rating-text {
    color: #666f70;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.testimonials__slider {
    overflow: hidden;
    position: relative;
}

.testimonials__slider .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.testimonials__slider .swiper-slide-active {
    opacity: 1;
}

.testimonials__controls {
    display: none;
    align-items: center;
    gap: 22px;
    padding-top: 40px;
}

.testimonials__nav {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    max-width: 428px;
    margin: 0 auto;
    padding-inline: 16px;
    display: flex;
    gap: 22px;
    align-items: center;
}

.testimonials__nav button {
    pointer-events: all;
    display: flex;
    z-index: 9999;
}

.testimonials__prev,
.testimonials__next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.25);
}

.testimonials__prev:hover,
.testimonials__next:hover {
    background: #021e22;
}

.testimonials__prev:hover span,
.testimonials__next:hover span {
    color: #fdfdfd;
}

.testimonials__prev span,
.testimonials__next span {
    color: #021e22;
    font-size: 12px;
    font-weight: 500;
}

.testimonials__counter {
    color: #996652;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    font-weight: 700;
    min-width: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.testimonials__item {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonials__wrapper {
    display: flex;
    justify-content: center;
}

.testimonials__media {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.testimonials__image {
    max-width: 428px;
    border-radius: 16px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: start;
    position: relative;
    justify-content: center;
}

.testimonials__image img {
    max-height: 516px;
}

.testimonials__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials__content .icon-quote {
    color: #c1b096;
    font-size: 24px;
}

.testimonials__quote {
    position: relative;
    margin-block: 0;
    margin-inline: 0;
}

.testimonials__quote p {
    color: #666f70;
    font-size: clamp(18px, calc(15px + 1vw), 24px);
    line-height: clamp(24px, calc(20px + 1vw), 32px);
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 16px;
}

.testimonials__quote p:not(:only-of-type):last-of-type {
    margin-bottom: 0;
}

.testimonials__author {
    font-weight: 500;
    color: #996652;
    font-size: 20px;
    line-height: 28px;
}

.testimonials__role {
    color: #001012;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.testimonials__quote .client {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .testimonials__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
        margin-bottom: 92px;
    }

    .testimonials__item {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 24px;
        display: grid;
    }

    .testimonials__avatars img:first-child {
        max-width: 208px;
    }

    .testimonials__media {
        justify-content: start;
    }

    .testimonials__image {
        margin: 0;
    }

    .testimonials__quote {
        margin-inline: 24px;
    }

    .testimonials__nav {
        display: inline-flex;
        position: relative;
        padding-top: 40px;
        padding-bottom: 5px;
    }

    .testimonials__prev,
    .testimonials__next {
        border: 1px solid #d6c1b9;
        background: transparent;
        box-shadow: none;
    }

    .testimonials__prev:hover,
    .testimonials__next:hover {
        background: #996652;
    }

    .testimonials__prev:hover span,
    .testimonials__next:hover span,
    .testimonials__prev:focus-visible span,
    .testimonials__next:focus-visible span {
        color: #fdfdfd;
    }

    .testimonials__prev:active,
    .testimonials__next:active {
        background-color: #7a5141;
        color: #fdfdfd;
    }

    .testimonials__prev:focus-visible,
    .testimonials__next:focus-visible {
        background-color: #996652;
        color: #fdfdfd;
        border: none;
        outline: 2px solid #004650;
        outline-offset: 2px;
    }

    .testimonials__prev span,
    .testimonials__next span {
        color: #996652;
        font-size: 12px;
        font-weight: 500;
    }

    .testimonials__counter {
        color: #996652;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -1%;
        font-weight: 700;
        min-width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.price-section {
    padding: clamp(40px, 5vw, 96px) 0 clamp(80px, 10vw, 226px) 0;
    position: relative;
    z-index: 1;
}

.price-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    will-change: transform;
}

.price-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    color: #004650;
    font-weight: 500;
}

.price-eyebrow::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background-color: #004650;
}

.price-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: clamp(36px, 6vw, 60px);
    color: #0f3d3e;
    font-size: clamp(36px, 5vw, 60px);
    line-height: clamp(40px, 5.5vw, 64px);
    color: #004650;
}

.price-title span {
    display: block;
}

.price-title span:first-child {
    color: #004650;
    font-weight: 500;
}

.price-title span:last-child {
    color: #996652;
}

.price-lead {
    display: flex;
    justify-content: center;
}

.price-card {
    background: #021e22;
    border-radius: 16px;
    padding: clamp(40px, 4vw, 64px);
    max-width: 550px;
    color: #fdfdfd;
}

.price-card__title {
    font-size: clamp(28px, 2.8vw, 36px);
    line-height: clamp(36px, 3.2vw, 44px);
    margin: 0;
    padding-bottom: 24px;
    font-weight: 400;
}

.price-card p {
    font-size: 18px;
    line-height: 24px;
    color: #fdfdfd;
    font-weight: 400;
    margin: 0;
    padding-bottom: clamp(32px, 2.5vw, 48px);
}

.price-card__amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-bottom: clamp(32px, 2vw, 40px);
}

.price {
    font-size: clamp(40px, 6vw, 64px);
    line-height: clamp(44px, 6.5vw, 68px);
    font-weight: 400;
}

.currency {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: clamp(20px, 2vw, 24px);
    font-weight: 300;
}

.price-card__cta {
    display: inline-flex;
    width: 100%;
    padding: 16px 24px;
    border-radius: 9999px;
    border: none;
    background: #996652;
    color: #fdfdfd;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 24px;
    margin-bottom: clamp(32px, 2vw, 40px);
    text-decoration: none;
    justify-content: center;
}

.price-card__cta:hover {
    background: #004650;
}

.price-card__cta:active {
    background: #021e22;
}

.price-card__cta:focus-visible {
    border: none;
    background-color: #004650;
    outline: 2px solid #004650;
    outline-offset: 2px;
}

.price-card__list {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.price-card__list li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #fdfdfd;
    padding-bottom: clamp(8px, 1vw, 16px);
    display: flex;
    align-items: baseline;
}

.price-card__list li:last-child {
    padding-bottom: 0;
}

.price-card__list li span {
    color: #0a9bae;
    font-size: 14px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .price-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .price-card__cta {
        max-width: 190px;
    }
}

.cta {
    background-color: #00171a;
    display: flex;
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.cta-404 {
    background-color: #00171a;
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.cta-404-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 878px;
    overflow: hidden;
}

.cta-404-container p {
    color: rgba(253, 253, 253, 0.6);
    margin-bottom: 32px;
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: clamp(24px, 1.6vw, 28px);
}

.cta-404-content {
    position: relative;
    z-index: 1;
}

.not-found-404 {
    position: absolute;
    inset: 0;
    color: rgba(10, 155, 174, 0.03);
    font-family: "Libre Baskerville", serif;
    font-size: clamp(
        184px,
        calc(184px + 296 * ((100vw - 375px) / 1065)),
        480px
    );
    line-height: 0.5;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: start;
}

.cta__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta__logo {
    padding-bottom: 8px;
}

.cta__logo img {
    width: 55px;
    height: auto;
}

.cta__title {
    font-size: clamp(40px, 4vw, 64px);
    line-height: clamp(44px, 4.5vw, 68px);
    font-weight: 500;
    color: #fdfdfd;
    margin: 0;
    padding-bottom: 32px;
}

.cta__title em {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
}

.cta__title.cta-title-404 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: clamp(44px, 5.5vw, 76px);
    padding-bottom: 16px;
}

.cta__line {
    display: block;
}

.cta__button {
    display: inline-block;
    background-color: #996652;
    color: #fdfdfd;
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 24px;
    font-weight: 500;
}

.cta__button:hover {
    transform: translateY(-2px);
    background-color: #004650;
}

.cta__button:active {
    background-color: #021e22;
}

.cta__button:focus-visible {
    background-color: #004650;
    outline: 2px solid #004650;
    outline-offset: 2px;
    border: none;
}

.cta__button.cta-button-404 {
    margin-bottom: 48px;
}

.cta__button.cta-button-404 span {
    font-size: 12px;
    margin-left: 1rem;
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 992px) {
    .cta {
        min-height: 955px;
    }

    .cta-wrapper {
        position: relative;
        overflow: hidden;
    }

    .not-found-404 {
        align-items: center;
        line-height: normal;
    }
}

.footer {
    position: relative;
    background: #001012;
    color: #fff;
    overflow: hidden;
    padding-top: clamp(72px, 8vw, 112px);
    padding-inline: 0;
    z-index: 2;
    min-height: 812px;
    transform: translateY(0);
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__info {
    max-width: 335px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-size: clamp(28px, 2vw, 36px);
    line-height: clamp(36px, 2.6vw, 44px);
    text-decoration: none;
    color: #fdfdfd;
    font-weight: 400;
    border-radius: 4px;
}

.footer__nav a:active {
    color: #c1c5c5;
}

.footer__nav a:focus-visible {
    color: #fdfdfd;
    outline: 2px solid #004650;
    outline-offset: 2px;
    border: none;
}

.footer__nav p {
    color: #fdfdfd;
}

.footer__description p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: clamp(22px, 1.5vw, 24px);
    font-weight: 400;
    color: #fdfdfd99;
    margin: 0;
}

.footer__highlight {
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: clamp(24px, 1.6vw, 28px);
    font-weight: 500;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__social a {
    color: #0a9bae;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 4px;
    padding: 0px 4px;
}

.footer__social a:hover {
    color: #6cc3ce;
}

.footer__social a:active {
    color: #087c8b;
}

.footer__social a:focus-visible {
    color: #0a9bae;
    border: none;
    outline: 2px solid #004650;
    outline-offset: 2px;
}

.footer__brand {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: -16px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
}

.footer__brand-text {
    display: inline-block;
    /* line-height: 0.9;
    font-family: "Libre Baskerville", serif; */
    text-align: left;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.footer__brand-text img.desktop {
    display: none;
}

.footer__brand-copyright {
    margin: 0;
    width: 100%;
}

.footer__bottom {
    font-size: clamp(16px, 1.2vw, 16px);
    line-height: clamp(20px, 1.6vw, 24px);
    font-weight: 400;
    color: #fdfdfd99;
}

.footer__bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer__brand-text {
        white-space: normal;
        font-size: 77px;
    }

    .footer__brand-text .line {
        display: block;
    }
}

@media (min-width: 992px) {
    .footer {
        height: 850px;
    }

    .footer__container {
        display: grid;
        grid-template-columns: 1.6fr 1fr 0.2fr;
        align-items: start;
        gap: 40px;
    }

    .footer__info {
        order: 1;
        max-width: 420px;
    }

    .footer__nav {
        order: 2;
        align-items: flex-start;
    }

    .footer__nav a {
        display: inline-block;
    }

    .footer__nav a span {
        display: inline-block;
        transform: translateX(0);
        transition:
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            color 0.2s ease;
        will-change: transform;
    }

    .footer__nav a:hover span {
        transform: translateX(20px);
    }

    .footer__social {
        order: 3;
        align-items: flex-end;
    }

    .footer__brand {
        align-items: center;
        bottom: 0;
        /* bottom: clamp(
            -30px,
            calc(-18px + (-10 * ((100vw - 1400px) / 520))),
            -18px
        ); */
    }

    .footer__brand-text {
        white-space: nowrap;
        text-align: center;
        padding-inline: 0;
    }

    .footer__brand-text img.mobile {
        display: none;
    }

    .footer__brand-text img.desktop {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .footer__brand-text .line {
        display: inline;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: #fff9f0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 136px 20px 0 20px;
}

@media (max-width: 991px) and (orientation: portrait) {
    .mobile-menu {
        padding: 136px 20px 0 20px;
    }
}

@media (max-width: 991px) and (orientation: landscape) {
    .mobile-menu {
        padding: 75px 20px 0 20px;
    }
}

.mobile-menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu__logo img {
    height: 32px;
}

.mobile-menu__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu__whatsapp {
    font-size: 24px;
    color: #996652;
    display: flex;
    text-decoration: none;
}

.mobile-menu__body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu__nav a {
    font-size: clamp(36px, 8vw, 48px);
    line-height: 1.1;
    color: #004650;
    text-decoration: none;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    display: block;
}

.mobile-menu__nav a:active {
    color: #996652;
}

.mobile-menu__social {
    display: flex;
    gap: 16px;
    padding-block: 40px;
}

.mobile-menu__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d6c1b9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #996652;
    font-size: 16px;
    text-decoration: none;
}

.menu-icon {
    width: 24px;
    height: 10px;
    position: relative;
    display: block;
}

.menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fdfdfd;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:last-child {
    bottom: 0;
}

body.menu-open .site-header {
    box-shadow: none;
}

body.menu-open .menu-icon span {
    background: #996652;
}

body.menu-open .whatsapp-button {
    color: #996652;
}

.menu-toggle.is-active .menu-icon span:first-child,
.menu-close.is-active .menu-icon span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.menu-toggle.is-active .menu-icon span:last-child,
.menu-close.is-active .menu-icon span:last-child {
    top: 50%;
    transform: rotate(-45deg);
}

.section-reveal {
    position: fixed;
    inset: 0;
    background: rgba(253, 253, 253, 0.2);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    z-index: 8000;
    transition: opacity 0.3s ease;
}

.section-reveal.is-active {
    opacity: 1;
}

@media (min-width: 992px) {
    .site-header.is-sticky .header-nav a {
        color: #004650;
        font-weight: 500;
        opacity: 1;
        transition: all 0.3s ease;
        will-change: transform;
    }

    .site-header.is-sticky .header-nav a:hover {
        color: #996652;
    }

    .site-header.is-sticky .header-nav a:active {
        color: #7a5141;
    }

    .site-header.is-sticky .header-nav a.is-active {
        color: #996652;
        opacity: 1;
    }

    /* whatsapp button*/
    .site-header.is-sticky .header-cta a {
        color: #004650;
    }

    .site-header.is-sticky .header-cta a:hover {
        border-color: transparent;
        background-color: transparent;
        color: #996652;
    }

    .site-header.is-sticky .header-cta a:active {
        border-color: transparent;
        background-color: transparent;
        color: #7a5141;
    }
}

.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: none;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

@media (min-width: 992px) {
    .floating-cta {
        display: inline-flex;
    }
}

.floating-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta__panel {
    position: relative;
    z-index: 1;
    width: 275px;
    background: #fdfdfd;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    display: flex;
    gap: 12px;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.floating-cta__panel p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.floating-cta__panel em {
    font-family: "Libre Baskerville";
    font-style: italic;
    font-weight: 400;
}

.floating-cta__panel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
    background: #996652;
    color: #fdfdfd;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.floating-cta__toggle {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #996652;
    color: #fffcf7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -24px;
    margin-top: -13px;
    flex-shrink: 0;
    cursor: pointer;
    transform: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        margin-left 0.28s ease;
}

.floating-cta__toggle span.icon-close {
    font-size: 10px;
}

/* cerrado */
.floating-cta.is-collapsed .floating-cta__panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-cta__icon {
    width: 24px;
    height: 24px;
    display: block;
}

::-moz-selection {
    background-color: #00090a;
    color: #fdfdfd;
}

::selection {
    background-color: #00090a;
    color: #fdfdfd;
}

body.error404 {
    background-color: #00171a;
}
