/* Vista contacto — misma base visual que about (views/contacto.html) */

/*
 * Ritmo vertical entre bloques: el hueco entre dos secciones = --section-padding-y.
 */
/* Banner Home — sube el gráfico (menos hueco bajo la barra fija) */
.banner-home {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    margin: 0;
    margin-top: clamp(-3rem, -8vw, -1.5rem);
    height: auto;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}

/* Degradado inferior: más alto y suave para fundir con la sección siguiente */
.banner-home::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(120px, 26vw, 260px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 14%,
        rgba(255, 255, 255, 0.35) 36%,
        rgba(255, 255, 255, 0.62) 58%,
        rgba(255, 255, 255, 0.90) 80%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about-section,
.categories-section,
.arrivals-section {
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.banner-home__bg {
    position: relative;
    top: 0;
    transform: translateY(clamp(-2rem, -5vw, -0.75rem));
    width: fit-content;
    max-width: 100%;
    height: auto;
    z-index: 0;
}

.banner-home__bg picture {
    display: block;
    width: fit-content;
    max-width: 100%;
    height: auto;
    line-height: 0;
}

.banner-home__bg img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

/* Destinos de ancla; respeta header fijo */
.nav-scroll-anchor {
    scroll-margin-top: var(--site-header-height, 120px);
}

#contacto {
    scroll-margin-top: var(--site-header-height, 120px);
}

/* Separación uniforme entre hero-operaciones, sobre-collage, services-cards y contacto */
.hero-operaciones,
.sobre-collage,
.sobre-como-trabajamos,
.services-cards,
.sobre-contact {
    --index-section-gap: clamp(3.5rem, 7.5vw, 5.5rem);
    /* Mismo padding lateral en home-intro, services-cards y contacto */
    --index-home-intro-inset-inline: clamp(4rem, 9.5vw, 7.75rem);
}

/* Título superpuesto al banner (index): sube por encima de .banner-home */
.hero-operaciones {
    --hero-navy: #010066;
    --hero-text-muted: #5f6778;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    margin-top: clamp(-13rem, -28vw, -6.5rem);
    scroll-margin-top: var(--site-header-height, 120px);
}

/* Degradado bajo el título para legibilidad sobre la imagen del banner */
.hero-operaciones::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(-9rem, -20vw, -4.5rem);
    height: clamp(220px, 48vw, 400px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.42) 22%,
        rgba(255, 255, 255, 0.78) 48%,
        rgba(255, 255, 255, 0.96) 72%,
        #ffffff 88%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-operaciones__inner {
    max-width: min(96vw, var(--layout-content-max, 72rem));
    margin: 0 auto;
    padding: clamp(1.35rem, 3.25vw, 2.15rem) clamp(1rem, 4vw, 2rem) var(--index-section-gap);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-operaciones__heading {
    position: relative;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 0 clamp(1.25rem, 3.5vw, 1.85rem);
    padding-bottom: clamp(0.75rem, 2.2vw, 1.15rem);
    font-family: 'Kufam ExtraBold', sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-align: center;
}

/* Subrayado degradado (mismo estilo que terms-hero__title-wrap) */
.hero-operaciones__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(32rem, 94vw);
    height: 2px;
    box-shadow: none;
    filter: none;
    transform: translateX(-50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(1, 0, 102, 0.1) 10%,
        rgba(1, 0, 102, 0.5) 22%,
        var(--hero-navy) 34%,
        var(--hero-navy) 66%,
        rgba(1, 0, 102, 0.5) 78%,
        rgba(1, 0, 102, 0.1) 90%,
        #ffffff 100%
    );
}

.hero-operaciones__line {
    display: inline;
    font-size: clamp(1.05rem, 2.55vw, 2.85rem);
    text-shadow:
        0 1px 10px rgba(255, 255, 255, 0.9),
        0 0 22px rgba(255, 255, 255, 0.65);
}

.hero-operaciones__line--navy {
    color: var(--hero-navy);
}

.hero-operaciones__line--muted {
    color: var(--hero-text-muted);
}

.hero-operaciones__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0.7rem 2rem;
    border-radius: 999px;
    background: var(--hero-navy);
    color: #ffffff;
    font-family: 'kufam SemiBold Italic', sans-serif;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-operaciones__cta:hover {
    background: #020080;
}

.hero-operaciones__cta:focus-visible {
    outline: 2px solid var(--hero-navy);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .banner-home {
        margin-top: 0;
        min-height: clamp(240px, 48vw, 480px);
    }

    .banner-home__bg {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .banner-home__bg picture,
    .banner-home__bg img {
        width: 100%;
        max-width: 100%;
        min-height: clamp(240px, 48vw, 480px);
        object-fit: cover;
        object-position: center top;
    }

    .banner-home::after {
        height: clamp(64px, 12vw, 100px);
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 45%,
            rgba(255, 255, 255, 0.85) 85%,
            #ffffff 100%
        );
    }

    .hero-operaciones {
        margin-top: clamp(-2.5rem, -6vw, -1rem);
    }

    .hero-operaciones::before {
        top: clamp(-1.5rem, -4vw, -0.25rem);
        height: clamp(100px, 22vw, 160px);
    }
}

@media (max-width: 768px) {
    .hero-operaciones,
    .sobre-collage,
    .sobre-como-trabajamos,
    .home-intro,
    .services-cards,
    .sobre-contact {
        --index-mobile-inset-inline: clamp(0.375rem, 2vw, 0.625rem);
        --index-mobile-body-fs: clamp(0.95rem, 1.18vw, 1.2rem);
    }

    .banner-home {
        min-height: clamp(300px, 68vh, 520px);
        padding-inline: 0;
    }

    .banner-home__bg {
        border-radius: 0;
        overflow: hidden;
    }

    .banner-home__bg picture,
    .banner-home__bg img {
        min-height: clamp(300px, 68vh, 520px);
        object-position: center 12%;
        border-radius: 0;
    }

    .banner-home::after {
        height: clamp(36px, 7vw, 52px);
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 55%,
            #ffffff 100%
        );
    }

    /* Sin solapar el banner: el título va debajo de la imagen */
    .hero-operaciones {
        margin-top: 0;
        background: #ffffff;
    }

    .hero-operaciones::before {
        display: none;
    }

    .hero-operaciones__inner {
        padding: clamp(1rem, 3vw, 1.5rem) var(--index-mobile-inset-inline) var(--index-section-gap);
    }

    .home-intro__content,
    .sobre-collage__copy {
        padding-inline: var(--index-mobile-inset-inline);
    }

    .services-cards,
    .sobre-como-trabajamos {
        padding-inline: var(--index-mobile-inset-inline);
    }

    .sobre-contact {
        padding-inline: var(--index-mobile-inset-inline);
    }

    .sobre-contact__inner {
        padding-inline: 0;
    }
}

@media (max-width: 600px) {
    .banner-home {
        min-height: clamp(320px, 72vh, 480px);
    }

    .banner-home__bg picture,
    .banner-home__bg img {
        min-height: clamp(320px, 72vh, 480px);
        object-position: center 10%;
    }

    .hero-operaciones__heading {
        letter-spacing: 0.03em;
    }

    .hero-operaciones__line {
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
    }
}

@media (max-width: 480px) {
    .banner-home {
        min-height: clamp(340px, 75vh, 460px);
    }

    .banner-home__bg picture,
    .banner-home__bg img {
        min-height: clamp(340px, 75vh, 460px);
    }

    .banner-home::after {
        height: clamp(28px, 6vw, 44px);
    }
}

/* Collage + texto (misma estructura de padding que home-intro en index) */
.sobre-collage {
    background: #ffffff;
    padding: var(--index-section-gap) 0 calc(var(--index-section-gap) * 2);
    box-sizing: border-box;
    overflow-x: clip;
}

.sobre-collage__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--index-home-intro-inset-inline) 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 4.75rem);
    align-items: center;
}

.sobre-collage__visual {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
    max-width: min(100%, 540px);
}

.sobre-collage__photo--main {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sobre-collage__copy {
    min-width: 0;
}

.sobre-collage__text {
    margin: 0 0 clamp(1rem, 2.2vw, 1.35rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.3;
    color: #333333;
}

.sobre-collage__text:last-child {
    margin-bottom: 0;
}

.sobre-collage__text strong {
    font-weight: 700;
    color: #2b303a;
}

.sobre-collage .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;
}

/* Tablet / desktop hasta 1999px: layout centrado de collage (no el de home-intro a sangre) */
@media (min-width: 901px) and (max-width: 1999.98px) {
    .sobre-collage {
        padding: 0 var(--index-home-intro-inset-inline) clamp(3rem, 7vw, 4.5rem);
        overflow-x: clip;
    }

    .sobre-collage__inner {
        padding: clamp(3.25rem, 9vw, 5.5rem) 0 0;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: clamp(1.5rem, 4vw, 3rem);
    }

    .sobre-collage__visual {
        width: 100%;
        max-width: min(100%, clamp(540px, 36vw, 720px));
        justify-self: center;
        margin-inline: auto;
    }

    .sobre-collage__photo--main {
        width: 100%;
        max-width: 100%;
    }

    .sobre-collage__copy {
        max-width: min(36rem, 100%);
    }
}

/* Banda azul: ¿Cómo trabajamos? */
.sobre-como-trabajamos {
    background: #010066;
    color: #ffffff;
    padding: clamp(2.5rem, 6vw, 4.25rem) var(--index-home-intro-inset-inline);
    box-sizing: border-box;
    text-align: center;
}

.sobre-como-trabajamos__inner {
    width: 100%;
    max-width: min(96vw, 72rem);
    margin: 0 auto;
}

.sobre-como-trabajamos__title {
    margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
    padding-bottom: clamp(0.85rem, 2vw, 1.1rem);
    font-family: 'kufam ExtraBold', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 3.8vw, 2.15rem);
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sobre-como-trabajamos__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(14rem, 55%);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 8%,
        #ffffff 22%,
        #ffffff 78%,
        rgba(255, 255, 255, 0.35) 92%,
        transparent 100%
    );
    border-radius: 1px;
}

.sobre-como-trabajamos__lead {
    margin: clamp(1.35rem, 3vw, 1.85rem) auto 0;
    max-width: min(62rem, 100%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
}

.sobre-como-trabajamos__goal {
    margin: clamp(1.15rem, 2.5vw, 1.5rem) auto 0;
    max-width: min(62rem, 100%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}

.sobre-como-trabajamos__goal strong {
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

/* Bloque imagen + texto (index — no usado en about, conservado por herencia del CSS) */
.home-intro {
    background: #ffffff;
    /* Abajo doble: compensa que services-cards empieza en gris, no en blanco */
    padding: var(--index-section-gap) 0 calc(var(--index-section-gap) * 2);
    box-sizing: border-box;
    overflow-x: clip;
}

.home-intro__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--index-home-intro-inset-inline) 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 4.75rem);
    align-items: center;
}

.home-intro__media {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
    border-radius: 0 clamp(2.5rem, 9vw, 5.5rem) clamp(2.5rem, 9vw, 5.5rem) 0;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 12px 40px rgba(1, 0, 102, 0.08);
}

.home-intro__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-intro__content {
    min-width: 0;
    max-width: min(36rem, 100%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #333333;
}

.home-intro__text {
    margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
    font-size: clamp(1rem, 1.22vw, 1.05rem);
    line-height: 1.3;
}

.home-intro__text:last-child {
    margin-bottom: 0;
}

.home-intro__text strong {
    font-weight: 700;
}

.home-intro__highlight {
    margin: clamp(1rem, 2.2vw, 1.35rem) 0 clamp(1rem, 2.2vw, 1.35rem);
    font-size: clamp(1.05rem, 1.32vw, 1.05rem);
    font-weight: 700;
    line-height: 1.45;
    color: #333333;
}

@media (max-width: 900px) {
    .hero-operaciones,
    .home-intro,
    .sobre-collage,
    .services-cards {
        --index-home-intro-inset-inline: clamp(2.25rem, 7vw, 4.15rem);
    }

    .home-intro,
    .sobre-collage {
        padding-inline: 0;
        overflow-x: visible;
    }

    .home-intro__inner,
    .sobre-collage__inner {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 2.85rem);
        padding: 0;
    }

    /* Imagen a ancho completo: sin padding del contenedor */
    .home-intro__media {
        width: 100vw;
        max-width: 100vw;
        margin-inline: calc(50% - 50vw);
        border-radius: 0;
        box-shadow: none;
    }

    .home-intro__img {
        width: 100%;
        border-radius: 0;
    }

    .home-intro__content,
    .sobre-collage__copy {
        max-width: none;
    }

    .sobre-collage__visual {
        width: 100vw;
        max-width: 100vw;
        margin-inline: calc(50% - 50vw);
    }

    .sobre-collage__photo--main {
        width: 100%;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .home-intro__content,
    .sobre-collage__copy {
        padding-inline: var(--index-home-intro-inset-inline);
    }
}

/* Index — pantallas muy anchas (2000px+): banner full bleed, tipografía mayor, layout al borde */
@media (min-width: 2000px) {
    .hero-operaciones,
    .sobre-collage,
    .sobre-como-trabajamos,
    .home-intro,
    .services-cards,
    .sobre-contact {
        --index-type-bump: 1.2;
        --index-home-intro-inset-inline: clamp(4rem, 5.25vw, 9rem);
        --index-body-fs: clamp(1.2rem, 1.2vw, 1.4rem);
        --index-emphasis-fs: clamp(1.3rem, 1.35vw, 1.5rem);
    }

    .banner-home__bg {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        transform: translateY(-1.25rem);
        display: block;
    }

    .banner-home__bg picture {
        display: block;
        width: 100%;
        max-width: none;
    }

    .banner-home__bg img {
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: cover;
        object-position: center top;
    }

    .banner-home::after {
        height: clamp(140px, 14vw, 280px);
    }

    .hero-operaciones {
        margin-top: clamp(-11rem, -9vw, -7.5rem);
    }

    .hero-operaciones::before {
        top: -5.5rem;
        height: clamp(220px, 22vw, 400px);
    }

    .hero-operaciones__inner {
        width: 100%;
        max-width: calc(100vw - 2 * var(--index-home-intro-inset-inline));
        padding-inline: clamp(1rem, 2vw, 2rem);
    }

    .hero-operaciones__line {
        font-size: clamp(1.85rem, 2.45vw, 3.35rem);
    }

    .hero-operaciones__cta {
        font-size: calc(1.1rem * var(--index-type-bump));
        padding: 0.85rem 2.35rem;
    }

    .sobre-collage {
        padding: var(--index-section-gap) var(--index-home-intro-inset-inline) calc(var(--index-section-gap) * 2);
    }

    .sobre-collage__inner {
        width: 100%;
        max-width: none;
        margin: 0;
        padding-inline: 0;
    }

    .sobre-collage__visual {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .sobre-collage__photo--main {
        width: 100%;
        max-width: none;
    }

    .sobre-collage__copy {
        max-width: 100%;
    }

    .sobre-collage__text,
    .sobre-contact__text {
        font-size: var(--index-body-fs);
        line-height: 1.4;
    }

    .sobre-como-trabajamos__title {
        font-size: clamp(1.75rem, 2.8vw, 2.75rem);
    }

    .sobre-como-trabajamos__lead,
    .sobre-como-trabajamos__goal {
        font-size: var(--index-body-fs);
        line-height: 1.4;
        max-width: min(72rem, 100%);
    }

    .home-intro {
        padding: var(--index-section-gap) var(--index-home-intro-inset-inline) calc(var(--index-section-gap) * 2);
    }

    .home-intro__inner {
        width: 100%;
        max-width: none;
        margin: 0;
        padding-inline: 0;
    }

    .home-intro__media {
        border-radius: clamp(2.5rem, 9vw, 5.5rem);
    }

    .home-intro__content {
        max-width: 100%;
    }

    .home-intro__text {
        font-size: var(--index-body-fs);
        line-height: 1.4;
    }

    .home-intro__highlight {
        font-size: var(--index-emphasis-fs);
    }

    .services-cards__inner {
        gap: clamp(1.25rem, 1.5vw, 2rem);
    }

    .services-cards__top-decor {
        left: 0;
    }

    .services-cards__top-img {
        width: min(92vw, 820px);
    }

    .services-card__main {
        padding: clamp(0.5rem, 0.75vw, 0.85rem) clamp(1.5rem, 1.75vw, 2.15rem) clamp(1.75rem, 2vw, 2.5rem);
        row-gap: clamp(0.5rem, 0.65vw, 0.85rem);
    }

    .services-card__brand-icon {
        width: clamp(64px, 4vw, 88px);
    }

    .services-card__heading {
        line-height: 1.4;
    }

    .services-card__text,
    .services-card__list {
        line-height: 1.4;
    }

    .services-card--lead .services-card__text {
        max-width: min(44ch, 100%);
    }

    .services-card__btn {
        padding: calc(0.7rem * var(--index-type-bump)) calc(2rem * var(--index-type-bump));
    }

    .sobre-contact {
        padding: var(--index-section-gap) var(--index-home-intro-inset-inline) clamp(3rem, 7vw, 4.5rem);
    }

    .sobre-contact__inner {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        padding-inline: 0;
    }

    .sobre-contact__headline {
        font-size: clamp(2.05rem, 2.7vw, 3.25rem);
        line-height: 1.15;
    }

    .sobre-contact__text {
        font-size: var(--index-body-fs);
        line-height: 1.4;
        max-width: min(42rem, 100%);
    }

    .sobre-contact__field input,
    .sobre-contact__field textarea {
        font-size: var(--index-body-fs);
    }

    .sobre-contact__field input::placeholder,
    .sobre-contact__field textarea::placeholder {
        font-size: var(--index-body-fs);
    }

    .sobre-contact__submit {
        font-size: calc(0.95rem * var(--index-type-bump));
    }

    .sobre-contact__float-card {
        width: min(54%, 23rem);
        bottom: 20%;
        left: 50%;
        transform: translate(-50%, 10%);
    }

    .sobre-contact__float-title {
        font-size: var(--index-emphasis-fs);
        line-height: 1.4;
    }

    .sobre-contact__panel-wrap {
        --sobre-contact-panel-pad-top: 6%;
        --sobre-contact-panel-pad-left: 10.75%;
        --sobre-contact-panel-pad-right: 7.25%;
        --sobre-contact-panel-pad-bottom: 2.5%;
    }

    .sobre-contact__panel {
        aspect-ratio: 841.62 / 365;
    }

    .sobre-contact__panel-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top left;
    }

    .sobre-contact__form {
        gap: clamp(0.35rem, 0.45vw, 0.5rem);
        padding:
            var(--sobre-contact-panel-pad-top)
            var(--sobre-contact-panel-pad-right)
            var(--sobre-contact-panel-pad-bottom)
            var(--sobre-contact-panel-pad-left);
    }

    .sobre-contact__field--message {
        flex: 0 0 auto;
    }

    .sobre-contact__field--message textarea {
        flex: none;
        min-height: 3rem;
        max-height: 3.35rem;
    }

    .sobre-contact__actions {
        margin-top: 0.3rem;
        padding-top: 0;
    }
}

/* Tarjetas de servicios (después de home-intro) */
.services-cards {
    --services-navy: #010066;
    /* Tipografía fluida (escala en 1400px y 2000px) */
    --services-fs-heading: clamp(1.08rem, 1.75vw, 1.35rem);
    --services-fs-body: clamp(0.95rem, 1.18vw, 1.2rem);
    --services-fs-list: clamp(0.9rem, 1.12vw, 1.15rem);
    --services-fs-lead-title: clamp(1.4rem, 2.5vw, 2.25rem);
    --services-fs-num: clamp(2.75rem, min(18vw, 22vh), 7rem);
    --services-fs-btn: clamp(0.78rem, 0.95vw, 1rem);
    position: relative;
    background: #eef1f4;
    padding: 0 var(--index-home-intro-inset-inline) clamp(3rem, 7vw, 4.5rem);
    overflow: clip;
    scroll-margin-top: var(--site-header-height, 120px);
}

.services-cards__top-decor {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.services-cards__top-img {
    display: block;
    width: min(92vw, 760px);
    height: auto;
}

.services-cards__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: clamp(3.25rem, 9vw, 5.5rem) 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.services-card {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 3px 14px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.services-card__corner-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(360px, 175%, 1280px);
    max-width: none;
    height: auto;
    display: block;
    pointer-events: none;
    z-index: 0;
    transform: scale(1.12, 1.28);
    transform-origin: 100% 100%;
}

.services-card__main {
    position: relative;
    z-index: 1;
    /* Menos aire arriba (zona señalada en la referencia) */
    padding: clamp(0.35rem, 0.9vw, 0.65rem) clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.65rem, 3vw, 2.15rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    flex: 1;
    gap: clamp(0.4rem, 0.95vw, 0.65rem);
    text-align: left;
}

.services-card--lead .services-card__main {
    /* Bloque logo + título + texto centrado en vertical dentro de la card */
    display: grid;
    grid-template-rows: 1fr auto auto auto 1fr;
    row-gap: clamp(0.4rem, 0.95vw, 0.65rem);
    column-gap: 0;
    align-content: start;
    align-items: start;
    justify-items: center;
    text-align: center;
}

.services-card--lead .services-card__brand-icon {
    grid-row: 2;
    justify-self: center;
    align-self: center;
}

.services-card--lead .services-card__lead-title {
    grid-row: 3;
    align-self: stretch;
}

.services-card--lead .services-card__text {
    margin-top: 1rem;
    margin-bottom: 1rem;
    grid-row: 4;
    grid-column: 1;
    justify-self: center;
    text-align: left;
    max-width: 38ch;
}

.services-card__brand-icon {
    grid-row: 1;
    grid-column: 1;
    width: clamp(56px, 7vw, 72px);
    height: auto;
    margin: 0;
    margin-bottom: clamp(1.05rem, 2.5vw, 1.65rem);
    display: block;
    align-self: start;
    justify-self: start;
}

.services-card__num {
    grid-row: 1;
    grid-column: 1;
    margin: 0;
    margin-bottom: clamp(1.05rem, 2.5vw, 1.65rem);
    font-family: 'Aspire SC Black', sans-serif;
    font-weight: 900;
    font-style: oblique;
    /* Máximo 7rem: el término central debe crecer lo bastante antes del tope (6vw quedaba corto en escritorio) */
    font-size: var(--services-fs-num);
    line-height: 1;
    color: #F0F0F2;
    letter-spacing: 0.02em;
    align-self: start;
    justify-self: center;
}

.services-card__lead-title {
    grid-row: 2;
    grid-column: 1;
    margin: 0;
    font-family: 'Aspire SC Black', sans-serif;
    font-weight: 900;
    font-style: oblique;
    font-size: var(--services-fs-lead-title);
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.services-card__lead-title-line {
    display: block;
}

.services-card__lead-navy {
    color: var(--services-navy);
}

.services-card__lead-muted {
    color: #6b7288;
}

.services-card__heading {
    grid-row: 2;
    grid-column: 1;
    margin: 0;
    font-family: 'kufam SemiBold Italic', sans-serif;
    font-weight: 900;
    font-style: oblique;
    font-size: var(--services-fs-heading);
    line-height: 1.25;
    letter-spacing: 0.015em;
    color: var(--services-navy);
}

.services-card__text {
    margin: 0 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: var(--services-fs-body);
    line-height: 1.25;
    color: #333333;
    flex-shrink: 0;
}

.services-card__list {
    margin: 0;
    flex: 0 1 auto;
    padding: 0 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--services-fs-list);
    line-height: 1.15;
    color: #333333;
}

.services-card--lead .services-card__list {
    display: none;
}

.services-card__list li {
    margin-bottom: 0.35rem;
}

.services-card__list li:last-child {
    margin-bottom: 0;
}

.services-card__actions {
    margin: 0;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding-top: clamp(0.65rem, 1.5vw, 1rem);
    position: relative;
    z-index: 2;
}

.services-card--lead .services-card__actions {
    display: none;
}

.services-card__btn {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.85rem;
    border-radius: 999px;
    background: var(--services-navy);
    color: #ffffff;
    font-family: 'kufam Medium Italic', sans-serif;
    font-weight: 500;
    font-size: var(--services-fs-btn);
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-card__btn:hover {
    background: #020080;
}

.services-card__btn:focus-visible {
    outline: 2px solid var(--services-navy);
    outline-offset: 3px;
}

@media (min-width: 1400px) {
    .services-cards {
        --services-fs-heading: clamp(1.15rem, 1.3vw, 1.65rem);
        --services-fs-body: clamp(1rem, 1.15vw, 1.45rem);
        --services-fs-list: clamp(0.95rem, 1.1vw, 1.4rem);
        --services-fs-lead-title: clamp(1.5rem, 2.2vw, 2.5rem);
        --services-fs-btn: clamp(0.85rem, 0.95vw, 1.15rem);
    }
}

@media (min-width: 2000px) {
    .services-cards {
        --services-fs-body: var(--index-body-fs);
        --services-fs-list: var(--index-body-fs);
        --services-fs-heading: var(--index-emphasis-fs);
        --services-fs-lead-title: clamp(1.4rem, 1.35vw, 1.75rem);
        --services-fs-num: clamp(3.5rem, 4vw, 6.5rem);
        --services-fs-btn: clamp(0.85rem, 0.9vw, 1rem);
    }
}

@media (max-width: 960px) and (min-width: 769px) {
    .services-cards,
    .sobre-como-trabajamos {
        padding-inline: var(--index-home-intro-inset-inline);
    }
}

@media (max-width: 960px) {
    .hero-operaciones,
    .home-intro,
    .services-cards,
    .sobre-contact {
        --index-mobile-body-fs: clamp(0.95rem, 1.18vw, 1.2rem);
    }

    /* Párrafos y descripciones: mismo tamaño en todas las secciones */
    .home-intro__text,
    .home-intro__highlight,
    .services-card__text,
    .services-card__list,
    .services-card--lead .services-card__text,
    .sobre-contact__text {
        font-size: var(--index-mobile-body-fs);
        line-height: 1.3;
    }

    .sobre-contact__field input,
    .sobre-contact__field textarea,
    .sobre-contact__field input::placeholder,
    .sobre-contact__field textarea::placeholder {
        font-size: var(--index-mobile-body-fs);
    }

    .services-cards {
        --services-fs-body: var(--index-mobile-body-fs);
        --services-fs-list: var(--index-mobile-body-fs);
        --services-fs-num: clamp(2.5rem, min(14vw, 18vh), 7rem);
        --services-card-mobile-height: clamp(22rem, 108vw, 28rem);
    }

    .services-cards__inner {
        grid-template-columns: 1fr;
        max-width: none;
        align-items: stretch;
    }

    .services-cards__top-img {
        width: min(96vw, 500px);
    }

    .services-card {
        min-height: var(--services-card-mobile-height);
        height: auto;
    }

    .services-card__main {
        height: auto;
        min-height: 0;
        box-sizing: border-box;
        overflow: visible;
    }

    .services-card--lead .services-card__main {
        height: auto;
        min-height: var(--services-card-mobile-height);
    }

    .services-card__actions {
        padding-top: clamp(0.75rem, 2vw, 1.15rem);
    }
}

/* Search Section: un poco más arriba respecto al banner */
.search-section {
    background-color: #033E8A;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: -1rem;
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.search-container {
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0 7rem;
}

.search-title {
    color: #ffffff;
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.search-title .bold {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
}

.search-form {
    flex: 1;
    max-width: 900px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    padding: 0.8rem 1.25rem;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1.1rem;
    color: #333;
}

.search-input::placeholder {
    color: #A0AEC0;
}

.search-button {
    background: none;
    border: none;
    border-left: 1px solid #E2E8F0;
    padding-left: 1.25rem;
    margin-left: 0.5rem;
    color: #718096;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.search-button:hover {
    color: #033E8A;
}

@media (max-width: 1024px) {
    .search-section {
        margin-top: 0;
    }

    .search-container {
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .search-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .search-form {
        width: 100%;
    }
}

/* About Section */
.about-section {
    margin: 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 9rem;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2rem;
    color: #033E8A;
    margin: 0 0 0.2rem 0;
}

.about-underline {
    width: 100px;
    height: 8px;
    background-color: #033E8A;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.about-right {
    padding-top: 2.6rem;
}

.about-subtitle {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin: 0 0 1rem 0;
}

.about-content p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.about-content p + p {
    margin-top: 2rem;
}

/* Categories Section */
.categories-section {
    margin: 0;
    background-color: #ffffff;
}

.categories-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 9rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.category-item {
    display: flex;
    flex-direction: column;
}

.category-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-title {
    position: absolute;
    top: 1.5rem;
    left: 3rem;
    z-index: 2;
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1.8rem;
    color: #033E8A;
    margin: 0;
}

.category-btn {
    position: absolute;
    top: 4.5rem;
    left: 3rem;
    z-index: 2;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 1.15rem;
    padding: 0.2rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.category-link:hover .category-btn {
    transform: translateY(-3px);
    background-color: #033E8A;
}

.category-img,
.category-link picture {
    width: 100%;
    height: auto;
    display: block;
}

.category-link picture .category-img {
    width: 100%;
}



@media (max-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }

    .about-content {
        gap: 4rem;
    }

    .categories-container {
        padding: 0 4rem;
        gap: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
        top: 1.5rem;
        left: 2rem;
    }

    .category-btn {
        top: 4.5rem;
        left: 2rem;
        font-size: 0.95rem;
        padding: 0.5rem 1.8rem;
    }
}

@media (max-width: 900px) {
    .categories-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 3rem;
    }

    .category-title {
        font-size: 1.3rem;
        top: 1.25rem;
        left: 1.5rem;
    }

    .category-btn {
        top: 3.75rem;
        left: 1.5rem;
        font-size: 0.85rem;
        padding: 0.45rem 1.5rem;
    }



    .about-title {
        font-size: 1.75rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-right {
        padding-top: 0;
    }


    .about-content p {
        font-size: 1rem;
    }
}

/* Responsividad para pantallas ultra anchas (2000px+) */
@media (min-width: 2000px) {
    .about-title {
        font-size: 2.8rem;
    }

    .about-underline {
        width: 165px;
        height: 10px;
    }

    .about-subtitle {
        font-size: 1.35rem;
    }

    .about-content p {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .aboutus-title {
        font-size: 3.5rem;
    }

    .aboutus-underline {
        width: 165px;
        height: 10px;
    }

    .aboutus-content p {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .aboutus-section {
        background-image: none !important;
    }

    .aboutus-container {
        background-image: url('../../res/img/flechas-about-us-8.png');
        background-position: right 9rem center;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-origin: border-box;
    }

    .btn-aboutus {
        font-size: 1.35rem;
        padding: 1rem 3.5rem;
    }

    .whatsapp-title {
        font-size: 3.2rem;
    }

    .whatsapp-underline {
        width: 150px;
        height: 10px;
    }

    .whatsapp-info p {
        font-size: 1.25rem;
        line-height: 1.6;
        max-width: 700px;
    }

    .btn-whatsapp {
        font-size: 1.35rem;
        padding: 1rem 3.5rem;
    }

    .whatsapp-phone-img {
        max-width: 650px;
    }
}

/* Arrivals Section */
.arrivals-section {
    margin: 0;
    color: #ffffff;
}

.arrivals-card {
    background-color: #033E8A;
    background-image: linear-gradient(rgba(3, 62, 138, 0.2), rgba(3, 62, 138, 0.2)), url('../../res/img/flechas-new-arrivals-8.png');
    background-position: top center;
    background-size: auto;
    background-repeat: no-repeat;
    padding: 2.25rem 0;
    border-radius: 40px;
    overflow: hidden;
}

.arrivals-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 4rem;
    padding: 0 4.5rem;
}

.arrivals-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 5.5rem;
    line-height: 0.9;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.arrivals-info {
    max-width: 600px;
}

.arrivals-subtitle {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.arrivals-info p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.arrivals-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.arrivals-slider {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.arrivals-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.product-card {
    flex: 0 0 calc((100% - 6rem) / 4);
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    color: #000000;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-10px);
}

.slider-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.slider-arrow:hover {
    transform: scale(1.2);
}


.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background-color: #033E8A;
    color: #ffffff;
    padding: 0.2rem 1.2rem;
    border-radius: 999px;
    font-family: 'Poppins Bold', sans-serif;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    margin-top: 1.5rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.product-details {
    padding: 1.2rem;
}

.product-details h4 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.product-cat {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}


.product-sku {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.arrivals-footer {
    display: flex;
    justify-content: center;
}

.btn-view-all {
    display: inline-block;
    background-color: #ffffff;
    color: #033E8A;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.5rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

/* About Us Section: margen superior para separar la tarjeta de Arrivals del bloque blanco;
   el aire del título respecto al borde va en el contenedor */
.aboutus-section {
    position: relative;
    margin: 0;
    margin-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-top: 0;
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
    background-color: #ffffff;
    background-image: url('../../res/img/flechas-about-us-8.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.aboutus-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: calc(var(--section-padding-y, 5rem) / 2) 9rem 0;
}

.aboutus-content {
    max-width: 600px;
}

.aboutus-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2.8rem;
    color: #033E8A;
    margin: 0 0 0.2rem 0;
}

.aboutus-underline {
    width: 120px;
    height: 8px;
    background-color: #033E8A;
    margin-bottom: 1.5rem;
}

.aboutus-content p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.btn-aboutus {
    display: inline-block;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.8rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-aboutus:hover {
    background-color: #033E8A;
    transform: translateY(-3px);
}

/* WhatsApp Section: separación respecto a About Us; ritmo vertical propio */
.whatsapp-section {
    margin: 0;
    margin-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-top: 0;
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.whatsapp-section > .about-container {
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
}

.whatsapp-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 40px;
    overflow: hidden;
    min-height: 520px;
}

.whatsapp-left {
    flex: 0.9;
    padding: 2.25rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-right {
    flex: 0.9;
    background-color: #033E8A;
    background-image: linear-gradient(rgba(3, 62, 138, 0), rgba(3, 62, 138, 0)), url('../../res/img/flechas-whatsapp-8.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.whatsapp-phone-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: none;
    z-index: 10;
}

.whatsapp-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2.2rem;
    color: #033E8A;
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
}

.whatsapp-underline {
    width: 100px;
    height: 7px;
    background-color: #033E8A;
    margin-bottom: 3rem;
}

.whatsapp-info p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.whatsapp-info p strong {
    font-family: 'Poppins Bold', sans-serif;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.8rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background-color: #033E8A;
    transform: translateY(-3px);
}

/* Strategic partners (logos) */
.partners-section {
    margin: 0;
    background-color: #ffffff;
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.partners-heading-wrap {
    width: fit-content;
    max-width: 100%;
}

.partners-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2rem;
    color: #033E8A;
    margin: 0;
    line-height: 1.15;
}

.partners-underline {
    width: 100%;
    height: 7px;
    background-color: #033E8A;
    margin-top: 0.4rem;
}

.partners-logos {
    margin-top: 3rem;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2.75rem 2.25rem;
    align-items: center;
    justify-items: center;
}

.partners-row--bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    row-gap: 2.25rem;
    margin-top: 2.75rem;
}

.partners-row--bottom .partners-cell {
    width: auto;
    flex: 0 1 auto;
    min-height: 5.25rem;
}

.partners-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.partners-link:focus-visible {
    outline: 2px solid #033E8A;
    outline-offset: 4px;
    border-radius: 4px;
}

.partners-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.partners-logo-grid .partners-cell {
    min-height: 6.5rem;
}

.partners-cell img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.92;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.partners-logo-grid .partners-cell img {
    max-height: 7rem;
}

.partners-row--bottom .partners-cell img {
    max-height: 5.5rem;
}

.partners-cell img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stay Updated / formulario (después de partners) */
.stay-updated-section {
    margin: 0;
    position: relative;
    background-color: #ffffff;
    background-image: url('../../res/img/fondo_formulario.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.stay-updated-inner {
    max-width: 2000px;
    margin: 0 auto;
    padding: calc(var(--section-padding-y, 5rem) * 0.38) 9rem;
    box-sizing: border-box;
}

.stay-updated-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.25rem 3rem;
    align-items: center;
}

.stay-updated-form-col {
    color: #ffffff;
}

.stay-updated-heading-wrap {
    width: fit-content;
    max-width: 100%;
}

.stay-updated-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.stay-updated-underline {
    width: 100%;
    height: 6px;
    background-color: #ffffff;
    margin-top: 0.35rem;
}

.stay-updated-kicker {
    font-family: 'Poppins Bold', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0.75rem 0 0.4rem 0;
}

.stay-updated-lead {
    font-family: 'Poppins Regular', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    line-height: 1.45;
    color: #ffffff;
    margin: 0 0 0.85rem 0;
    max-width: 32rem;
}

.stay-updated-lead strong {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
}

.stay-updated-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 32rem;
}

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

.stay-updated-input,
.stay-updated-textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.95rem;
    color: #1a202c;
    background-color: #ffffff;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.stay-updated-input::placeholder,
.stay-updated-textarea::placeholder {
    color: #A0AEC0;
}

.stay-updated-textarea {
    min-height: 4.5rem;
    resize: vertical;
}

.stay-updated-input:focus,
.stay-updated-textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.stay-updated-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.15rem;
}

.stay-updated-submit {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #033E8A;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.62rem 2.1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.stay-updated-submit:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stay-updated-submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.stay-updated-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.stay-updated-visual img {
    width: 100%;
    max-width: min(100%, 720px);
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: auto;
    margin-right: 0;
}

@media (max-height: 820px) and (min-width: 901px) {
    .stay-updated-inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .stay-updated-textarea {
        min-height: 3.75rem;
    }
}

@media (max-width: 900px) {
    .stay-updated-inner {
        padding-top: calc(var(--section-padding-y, 5rem) * 0.35);
        padding-bottom: calc(var(--section-padding-y, 5rem) * 0.35);
    }

    .stay-updated-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stay-updated-form {
        max-width: none;
    }

    .stay-updated-lead {
        max-width: none;
    }

    .stay-updated-visual {
        align-items: center;
    }

    .stay-updated-visual img {
        margin-left: auto;
        margin-right: auto;
        max-width: min(100%, 520px);
    }
}

@media (max-width: 1400px) {
    .arrivals-title {
        font-size: 4rem;
    }

    .arrivals-container {
        padding: 0 3rem;
    }
}

@media (max-width: 1024px) {
    .arrivals-container {
        padding: 0 2rem;
    }



    .arrivals-header {
        flex-direction: column;
        gap: 2rem;
    }

    .product-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .aboutus-container {
        padding: calc(var(--section-padding-y, 5rem) / 2) 4rem 0;
    }

    .aboutus-section {
        background-size: 65% auto;
        background-position: calc(100% + 250px) center;
    }

    .aboutus-content {
        max-width: 480px;
    }

    .aboutus-title {
        font-size: 2.2rem;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .partners-logos {
        margin-top: 2.25rem;
    }

    .partners-row--bottom {
        margin-top: 2rem;
        column-gap: 2.5rem;
    }

    .stay-updated-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .whatsapp-card {
        flex-direction: column;
        min-height: auto;
    }

    .whatsapp-left {
        padding: 2.25rem 3rem;
        text-align: left;
        align-items: flex-start;
    }

    .whatsapp-underline {
        margin: 0 0 2.5rem 0;
    }

    .btn-whatsapp {
        white-space: nowrap;
        font-size: clamp(0.82rem, 1.9vw, 1.05rem);
        padding: 0.75rem 1.35rem;
    }

    .whatsapp-right {
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .banner-home {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .arrivals-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .arrivals-container {
        padding: 0 1rem;
    }

    .arrivals-header {
        align-items: center;
        margin-bottom: 2rem;
    }

    .arrivals-info {
        display: none;
    }

    .arrivals-footer {
        display: none;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .arrivals-title {
        font-size: 3rem;
        text-align: center;
    }

    .aboutus-container {
        background-image: none;
        padding: calc(var(--section-padding-y, 5rem) / 2) 2rem 0;
    }

    .aboutus-section {
        background-image: none;
        text-align: left;
    }

    .aboutus-content {
        max-width: 100%;
    }

    .aboutus-title {
        font-size: 2rem;
        text-align: center;
    }

    .aboutus-underline {
        margin: 0 auto 2rem auto;
    }

    .btn-aboutus {
        font-size: 1.1rem;
        padding: 0.7rem 2rem;
        text-align: center;
        align-items: center;
    }

    .whatsapp-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .whatsapp-card {
        flex-direction: column;
        min-height: auto;
    }

    .whatsapp-left {
        padding: 2.25rem 1.5rem;
        text-align: left;
        align-items: flex-start;
    }

    .whatsapp-title {
        font-size: 1.8rem;
    }

    .whatsapp-underline {
        margin: 0 0 2rem 0;
    }

    .whatsapp-info p {
        font-size: 1rem;
    }

    .btn-whatsapp {
        white-space: nowrap;
        font-size: clamp(0.7rem, 3.4vw, 0.95rem);
        padding: 0.65rem 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .whatsapp-right {
        min-height: 300px;
    }

    .whatsapp-phone-img {
        max-width: 100%;
    }

    .stay-updated-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .stay-updated-visual img {
        max-width: 100%;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1rem;
    }

    .partners-logos {
        margin-top: 1.75rem;
    }

    .partners-row--bottom {
        margin-top: 1.5rem;
        column-gap: 1.75rem;
        row-gap: 1.5rem;
    }

    .partners-title {
        font-size: 1.65rem;
    }

    .partners-logo-grid .partners-cell {
        min-height: 5.25rem;
    }

    .partners-row--bottom .partners-cell {
        min-height: 4.5rem;
    }

    .partners-logo-grid .partners-cell img {
        max-height: 5.25rem;
    }

    .partners-row--bottom .partners-cell img {
        max-height: 4.35rem;
    }
}

/* Debajo de 2000px: cuerpo unificado collage + contacto */
@media (max-width: 1999.98px) {
    .sobre-collage__text,
    .sobre-contact__text {
        font-size: clamp(0.95rem, 1.15vw, 1.05rem);
        line-height: 1.3;
    }
}

/* ==========================================================================
   Vista contacto — formulario (mockup fondo navy, dos columnas)
   ========================================================================== */
.page-contacto .sobre-contact {
    --sobre-contact-navy: #010066;
    --sobre-contact-muted: #8b93a8;
    background: var(--sobre-contact-navy);
    padding: clamp(3rem, 8vw, 5.25rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 7vw, 4.5rem);
}

.page-contacto .sobre-contact__inner {
    max-width: min(96vw, 78rem);
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.page-contacto .sobre-contact__row {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.25rem, 5.5vw, 4.5rem);
    align-items: start;
}

.page-contacto .sobre-contact__headline {
    color: #ffffff;
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.page-contacto .sobre-contact__headline::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 8%,
        rgba(255, 255, 255, 0.85) 22%,
        #ffffff 38%,
        #ffffff 62%,
        rgba(255, 255, 255, 0.85) 78%,
        rgba(255, 255, 255, 0.15) 92%,
        transparent 100%
    );
}

.page-contacto .sobre-contact__headline-line {
    color: #ffffff;
}

.page-contacto .sobre-contact__text {
    color: rgba(255, 255, 255, 0.95);
    max-width: 36rem;
}

.page-contacto .sobre-contact__channels {
    list-style: none;
    margin: clamp(1.35rem, 3vw, 1.85rem) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.45rem, 1.2vw, 0.65rem);
}

.page-contacto .sobre-contact__channel {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.35;
    transition: opacity 0.2s ease;
}

.page-contacto .sobre-contact__channel:hover {
    opacity: 0.88;
}

.page-contacto .sobre-contact__channel-icon {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

.page-contacto .sobre-contact__channel-globe {
    flex-shrink: 0;
    width: 17px;
    font-size: 17px;
    line-height: 1;
    text-align: center;
    color: #ffffff;
}

.page-contacto .sobre-contact__aside {
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 1.6vw, 0.9rem);
    min-width: 0;
}

.page-contacto .sobre-contact__form-card-head {
    background: #ffffff;
    border-radius: clamp(1rem, 2.2vw, 1.35rem);
    padding: clamp(1.15rem, 2.6vw, 1.55rem) clamp(1.35rem, 3vw, 1.85rem);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.page-contacto .sobre-contact__form-title {
    margin: 0;
    font-family: 'aspire sc black', 'Kufam', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.page-contacto .sobre-contact__form-title-line {
    display: block;
}

.page-contacto .sobre-contact__form-title-line--navy {
    color: var(--sobre-contact-navy);
}

.page-contacto .sobre-contact__form-title-line--muted {
    color: var(--sobre-contact-muted);
}

.page-contacto .sobre-contact__panel-wrap,
.page-contacto .sobre-contact__panel,
.page-contacto .sobre-contact__panel-bg,
.page-contacto .sobre-contact__float-card {
    display: none !important;
}

.page-contacto .sobre-contact__form {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 1.6vw, 0.9rem);
    min-height: 0;
    padding: 0;
    overflow: visible;
    line-height: normal;
}

.page-contacto .sobre-contact__field input,
.page-contacto .sobre-contact__field textarea {
    border: 1px solid rgba(1, 0, 102, 0.08);
    border-radius: clamp(0.85rem, 1.8vw, 1.15rem);
    padding: clamp(0.85rem, 1.8vw, 1.05rem) clamp(1rem, 2vw, 1.2rem);
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.page-contacto .sobre-contact__field input::placeholder,
.page-contacto .sobre-contact__field textarea::placeholder {
    color: #6b7280;
}

.page-contacto .sobre-contact__field input:focus,
.page-contacto .sobre-contact__field textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.page-contacto .sobre-contact__field--message {
    flex: none;
    min-height: 0;
}

.page-contacto .sobre-contact__field--message textarea {
    flex: none;
    min-height: clamp(5.5rem, 14vw, 7rem);
    max-height: none;
    resize: vertical;
}

.page-contacto .sobre-contact__actions {
    margin-top: clamp(0.15rem, 0.5vw, 0.35rem);
    padding-top: 0;
    justify-content: flex-end;
}

.page-contacto .sobre-contact__submit {
    background: #ffffff;
    color: var(--sobre-contact-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    letter-spacing: 0.05em;
    padding: 0.55rem clamp(1.75rem, 4vw, 2.35rem);
    border-radius: 9999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.page-contacto .sobre-contact__submit:hover {
    background: #f3f4f6;
}

.page-contacto .sobre-contact__submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .page-contacto .sobre-contact__row {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 4vw, 2.5rem);
    }

    .page-contacto .sobre-contact__intro {
        padding-top: 0;
    }

    .page-contacto .sobre-contact__form-card-head {
        max-width: 100%;
    }
}

/* 2000px+: anular reglas del index que alinean el contacto a la izquierda */
@media (min-width: 2000px) {
    .page-contacto .sobre-contact {
        padding: clamp(3rem, 8vw, 5.25rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 7vw, 4.5rem);
    }

    .page-contacto .sobre-contact__inner {
        width: 100%;
        max-width: min(96vw, 78rem);
        margin-inline: auto;
        padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    }

    .page-contacto .sobre-contact__row {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .page-contacto .sobre-contact__text {
        max-width: 36rem;
    }

    .page-contacto .sobre-contact__headline {
        font-size: clamp(2.05rem, 2.7vw, 3.25rem);
        line-height: 1.15;
    }

    .page-contacto .sobre-contact__text,
    .page-contacto .sobre-contact__channel {
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
        line-height: 1.4;
    }

    .page-contacto .sobre-contact__field input,
    .page-contacto .sobre-contact__field textarea,
    .page-contacto .sobre-contact__field input::placeholder,
    .page-contacto .sobre-contact__field textarea::placeholder {
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
    }

    .page-contacto .sobre-contact__form-title {
        font-size: clamp(1.35rem, 1.75vw, 1.85rem);
    }

    .page-contacto .sobre-contact__submit {
        font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    }

    .page-contacto .sobre-contact__field--message textarea {
        min-height: clamp(5.5rem, 14vw, 7rem);
        max-height: none;
    }
}

/* Sección informativa tras el formulario */
.contacto-gracias {
    --contacto-gracias-navy: #010066;
    --contacto-gracias-muted: #7a8499;
    --contacto-gracias-body: #4a5568;
    --contacto-gracias-max: min(72rem, 94vw);
    background: #ffffff;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem) clamp(4rem, 10vw, 6rem);
    text-align: center;
    box-sizing: border-box;
}

.contacto-gracias__inner {
    width: 100%;
    max-width: var(--contacto-gracias-max);
    margin: 0 auto;
}

.contacto-gracias__heading {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
    padding-bottom: clamp(0.85rem, 2vw, 1.15rem);
    font-family: 'Kufam ExtraBold', 'kufam ExtraBold', sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.12;
    box-sizing: border-box;
}

.contacto-gracias__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(14rem, 52%);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(1, 0, 102, 0.12) 10%,
        rgba(1, 0, 102, 0.55) 24%,
        var(--contacto-gracias-navy) 38%,
        var(--contacto-gracias-navy) 62%,
        rgba(1, 0, 102, 0.55) 76%,
        rgba(1, 0, 102, 0.12) 90%,
        transparent 100%
    );
    border-radius: 1px;
}

.contacto-gracias__heading-line {
    display: block;
}

.contacto-gracias__heading-line--navy {
    color: var(--contacto-gracias-navy);
    font-size: clamp(1.35rem, 3.6vw, 2.15rem);
}

.contacto-gracias__heading-line--muted {
    color: var(--contacto-gracias-muted);
    font-size: clamp(1.5rem, 4.2vw, 2.45rem);
    margin-top: 0.12em;
}

.contacto-gracias__text {
    margin: 0 auto clamp(1.1rem, 2.5vw, 1.45rem);
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    line-height: 1.3;
    color: #333333;
    text-align: justify;
}

.contacto-gracias__text:last-child {
    margin-bottom: 0;
}

.contacto-gracias__text strong {
    font-weight: 700;
    color: #333333;
}

@media (max-width: 600px) {
    .contacto-gracias__heading-line--navy {
        font-size: clamp(1.2rem, 5.5vw, 1.65rem);
    }

    .contacto-gracias__heading-line--muted {
        font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    }

    .contacto-gracias__text {
        line-height: 1.5;
    }
}

/* 2000px+: tipografía alineada con el bloque de contacto */
@media (min-width: 2000px) {
    .page-contacto .contacto-gracias {
        --contacto-gracias-max: min(78rem, 94vw);
        padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2rem) clamp(4.5rem, 10vw, 6.5rem);
    }

    .page-contacto .contacto-gracias__inner {
        max-width: min(96vw, 78rem);
    }

    .page-contacto .contacto-gracias__heading {
        margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
        padding-bottom: clamp(1rem, 2vw, 1.25rem);
    }

    .page-contacto .contacto-gracias__heading::after {
        width: min(18rem, 48%);
    }

    .page-contacto .contacto-gracias__heading-line--navy {
        font-size: clamp(2.05rem, 2.7vw, 3.25rem);
    }

    .page-contacto .contacto-gracias__heading-line--muted {
        font-size: clamp(2.25rem, 3vw, 3.55rem);
    }

    .page-contacto .contacto-gracias__text {
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
        line-height: 1.4;
        max-width: min(72rem, 100%);
        margin-bottom: clamp(1.25rem, 2vw, 1.65rem);
    }
}
