/* Estilos específicos para la vista New Arrivals (views/new_arrivals.html) */

/* ============================================
   Layout base de la página
   El <header> es position: fixed con min-height 95px (120px en >=2000px),
   así que empujamos el <main> para que el banner empiece debajo de la navbar.
   ============================================ */
main {
    padding-top: 95px;
}

@media (min-width: 2000px) {
    main {
        padding-top: 120px;
    }
}

/* ============================================
   Banner
   ============================================ */
.new-arrivals-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #F2F2F2;
    padding: 0 0 clamp(0.4rem, 1vw, 0.8rem);
    overflow: hidden;
    box-sizing: border-box;
}

.new-arrivals-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(0.4rem, 1vw, 0.8rem);
    height: 9px;
    background: #033E8A;
    pointer-events: none;
}

/* Search section (misma implementación que index.html / css/views/index.css) */

.search-section {

    background-color: #033E8A;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: -1rem;
    padding-top: clamp(0.85rem, 2vw, 1.35rem);
    padding-bottom: clamp(0.85rem, 2vw, 1.35rem);

}



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

}



.search-title {
    color: #ffffff;
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    font-size: 1.85rem;
    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.55rem 1.1rem;

}



.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.15rem;

    }



    .search-title {

        font-size: 1.3rem;

    }

}



@media (max-width: 768px) {

    .search-container {

        flex-direction: column;
        gap: 0.95rem;
        text-align: center;

    }



    .search-form {

        width: 100%;

    }

}



/* ============================================
   Spotlight
   ============================================ */

.new-arrivals-spotlight {

    background: #ffffff;
    padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
    box-sizing: border-box;

}



.new-arrivals-spotlight__inner {

    max-width: 2000px;
    margin: 0 auto;
    padding-inline: 9rem;
    box-sizing: border-box;

}



.new-arrivals-spotlight__pretitle-wrap {

    display: inline-block;
    margin: 0 0 clamp(1rem, 2.2vw, 1.75rem);

}



.new-arrivals-spotlight__pretitle {

    margin: 0;
    font-family: 'Poppins Bold', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.1vw, 1.65rem);
    color: #033E8A;
    letter-spacing: 0.01em;
    line-height: 1.2;

}



.new-arrivals-spotlight__pretitle-line {

    display: block;
    height: 7px;
    margin-top: 0.4rem;
    margin-left: -0.15em;
    width: calc(100% + 0.85rem);
    background: #033E8A;
    border-radius: 1px;

}



.new-arrivals-spotlight__card {

    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 14px 44px rgba(3, 62, 138, 0.14),
        0 4px 18px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;

}



.new-arrivals-spotlight__body {

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1.02fr);
    gap: clamp(1.25rem, 3.5vw, 3.25rem);
    align-items: center;
    padding: clamp(0.95rem, 2vw, 1.6rem) clamp(1.5rem, 3vw, 2.65rem) clamp(1.1rem, 2.2vw, 1.85rem);
    box-sizing: border-box;
}



.new-arrivals-spotlight__heading {

    margin: 0 0 clamp(0.75rem, 1.5vw, 1.1rem);
    font-family: 'Poppins Bold', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2.3rem, 4.2vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #033E8A;

}



.new-arrivals-spotlight__text {

    margin: 0;
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.15vw, 1rem);
    line-height: 1.55;
    color: #000000;

}



.new-arrivals-spotlight__text strong {

    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;

}



.new-arrivals-spotlight__visual-col {

    min-width: 0;

}



.new-arrivals-spotlight__figure {

    position: relative;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

}



.new-arrivals-spotlight__img {

    width: 160%;
    max-width: 1400px;
    height: auto;
    display: block;

}



.new-arrivals-spotlight__footer {

    background: #033E8A;
    margin-top: clamp(-4.9rem, -7.8vw, -7.25rem);
    padding: clamp(2.15rem, 4.4vw, 3.25rem) clamp(1.5rem, 3vw, 2.65rem) clamp(1.6rem, 3.2vw, 2.35rem);
    position: relative;
    z-index: 1;
    box-sizing: border-box;

}



.new-arrivals-spotlight__footer-text {

    margin: 0;
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.2vw, 2.65rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;

}



.new-arrivals-spotlight__footer-strong {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;

}



.new-arrivals-spotlight__visual-col {

    position: relative;
    z-index: 2;

}



.new-arrivals-spotlight__figure {

    margin-bottom: clamp(-7.75rem, -10.2vw, -5.6rem);

}



.new-arrivals-spotlight__img {

    position: relative;
    z-index: 2;
    transform: translate(clamp(5.75rem, 10.5vw, 11.5rem), clamp(1.55rem, 2.9vw, 2.35rem));

}



@media (max-width: 1024px) {

    .new-arrivals-spotlight__inner {

        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));

    }



    .new-arrivals-spotlight__footer {

        margin-top: clamp(-3.7rem, -6.2vw, -5.1rem);
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));

    }

}



@media (max-width: 480px) {

    .new-arrivals-spotlight__pretitle-line {
        width: calc(100% + 0.55rem);

    }

}



@media (max-width: 768px) {

    .new-arrivals-spotlight__body {
        grid-template-columns: 1fr;
        padding: clamp(1.05rem, 3.2vw, 1.5rem) clamp(1.35rem, 4vw, 2rem) clamp(0.95rem, 3vw, 1.35rem);
    }

    .new-arrivals-spotlight__figure {
        justify-content: center;
        max-width: 420px;
        margin-inline: auto;
    }

    .new-arrivals-spotlight__figure {
        margin-bottom: 0;

    }



    .new-arrivals-spotlight__img {
        width: 100%;
        max-width: 640px;
        transform: none;

    }

    .new-arrivals-spotlight__footer {
        margin-top: clamp(-2.6rem, -4.4vw, -3.6rem);
    }

}



/* ============================================
   Banner (continuación)
   ============================================ */

.new-arrivals-banner__inner,
.new-arrivals-content__inner {
    max-width: 2000px;
    margin-inline: auto;
    padding-inline: 9rem;
    box-sizing: border-box;
}

.new-arrivals-banner__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding-block: 0;
    min-height: clamp(5.5rem, 12vw, 9rem);
}

.new-arrivals-banner__title {
    color: #033E8A;
    font-family: 'Poppins Bold', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 6.25vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
    text-transform: none;
    min-width: 0;
    flex: 1 1 0;
    overflow-wrap: anywhere;
    display: flex;
    align-items: center;
}

.new-arrivals-banner__arrows {
    display: block;
    align-self: stretch;
    width: auto;
    max-width: min(520px, 46%);
    height: 100%;
    max-height: none;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: right top;
}

/* (Bloque anterior se normalizó; se eliminó CSS suelto que rompía el archivo) */

/* ============================================
   Contenido principal
   ============================================ */
.new-arrivals-content {
    background: #ffffff;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.25rem, 7vw, 5.5rem);
}

.new-arrivals-content__inner {
    color: #000000;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.new-arrivals-content__updated {
    font-family: 'Poppins Bold', sans-serif;
    margin: 2.75rem 0 1.35rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #000000;
}

.new-arrivals-content__updated strong {
    font-weight: 700;
}

.new-arrivals-content__intro-wrap {
    margin: 0 0 3rem;
}

.new-arrivals-content__lead {
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    margin: 0 0 1.15rem;
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
}

.new-arrivals-content__lead:last-child {
    margin-bottom: 0;
}

.new-arrivals-block {
    margin: 0;
}

.new-arrivals-block__title {
    margin: 2.75rem 0 1.35rem;
    padding: 0;
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
}

.new-arrivals-content .new-arrivals-block__title {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: clamp(1rem, 1.45vw, 1.125rem);
    line-height: 1.38;
}

.new-arrivals-block:first-of-type .new-arrivals-block__title {
    margin-top: 0;
}

.new-arrivals-block p {
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
}

.new-arrivals-block p + p {
    margin-top: 1.05rem;
}

.new-arrivals-block p + .new-arrivals-list {
    margin-top: 0.65rem;
}

.new-arrivals-list {
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    margin: 0.65rem 0 1.15rem;
    padding: 0 0 0 1.35rem;
    list-style-type: disc;
    color: #000000;
    line-height: 1.4;
}

.new-arrivals-list li + li {
    margin-top: 0.4rem;
}

.new-arrivals-block .new-arrivals-list + p {
    margin-top: 1.05rem;
}

.new-arrivals-contact-block {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #000000;
}

.new-arrivals-link {
    color: #111111;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-arrivals-link:hover,
.new-arrivals-link:focus-visible {
    color: #000000;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .new-arrivals-banner {
        width: 100%;
        max-width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        overflow: visible;
        border-bottom: none;
        box-sizing: border-box;
    }

    .new-arrivals-banner::after {
        display: none;
    }

    .new-arrivals-banner__inner,
    .new-arrivals-content__inner {
        max-width: 100%;
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }

    .new-arrivals-banner__inner {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 0.5rem;
        padding-block: 0;
        min-height: 0;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
        border-bottom: 10px solid #033E8A;
    }

    .new-arrivals-banner__title {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        min-width: 0;
        display: flex;
        align-items: center;
        font-size: clamp(1.65rem, 5.85vw, 2.45rem);
        line-height: 1.08;
        padding: 0;
    }

    .new-arrivals-banner__arrows {
        flex: 0 0 auto;
        align-self: stretch;
        width: auto;
        max-width: min(46%, 220px);
        height: 100%;
        min-height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: right bottom;
    }

    .new-arrivals-content {
        padding: 2.25rem 0 2.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .new-arrivals-content__updated {
        margin-bottom: 2.25rem;
    }

    .new-arrivals-content__intro-wrap {
        margin-bottom: 2.5rem;
    }

    .new-arrivals-block__title {
        margin: 2.25rem 0 1.1rem;
        font-size: 0.9375rem;
    }

    .new-arrivals-block:first-of-type .new-arrivals-block__title {
        margin-top: 0;
    }

    .new-arrivals-list {
        padding-left: 1.15rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet: subir un poco el monitor (manteniendo desktop layout) */
    .new-arrivals-spotlight__img {
        transform: translate(clamp(7.25rem, 13vw, 14.5rem), clamp(1.15rem, 2.2vw, 1.85rem));
    }
}

@media (max-width: 480px) {
    .new-arrivals-banner__inner,
    .new-arrivals-content__inner {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }

    .new-arrivals-banner__inner {
        gap: 0.4rem;
        border-bottom-width: 8px;
    }

    .new-arrivals-banner__title {
        font-size: clamp(1.5rem, 6.4vw, 2.05rem);
    }

    .new-arrivals-banner__arrows {
        max-width: min(44%, 168px);
    }

    .new-arrivals-block__title {
        font-size: 0.9rem;
    }

    .new-arrivals-block p,
    .new-arrivals-content__lead {
        font-size: 0.95rem;
    }
}

@media (min-width: 2000px) {
    .new-arrivals-content {
        padding-top: clamp(3rem, 5vw, 4.75rem);
        padding-bottom: clamp(3.5rem, 6vw, 5.75rem);
    }

    .new-arrivals-banner__inner {
        min-height: clamp(6rem, 10vw, 10rem);
    }

    .new-arrivals-content__lead,
    .new-arrivals-block p,
    .new-arrivals-list,
    .new-arrivals-contact-block {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .new-arrivals-content .new-arrivals-block__title {
        font-size: clamp(1.08rem, 1.1vw, 1.22rem);
        line-height: 1.45;
    }

    .new-arrivals-content__updated {
        font-size: 1.05rem;
    }
}

/* ============================================
   Grid de arrivals (cards desde API)
   ============================================ */
.arrivals-grid-section {
    background: #ffffff;
    padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
    box-sizing: border-box;
}

.arrivals-grid-section__inner {
    max-width: 2000px;
    margin: 0 auto;
    padding-inline: 9rem;
    box-sizing: border-box;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.arrival-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(3, 62, 138, 0.06);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    min-height: 0;
}

.arrival-card__media {
    position: relative;
    background: #e8eaef;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.arrival-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.arrival-card__dims {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(45, 45, 45, 0.92);
    color: #ffffff;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.7rem;
    line-height: 1.35;
    padding: 0.5rem 0.65rem;
    border-top: 2px solid #f5a623;
}

.arrival-card__dims-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.15rem;
}

.arrival-card__body {
    padding: 1.1rem 1rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-height: 0;
}

.arrival-card__title {
    margin: 0;
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #000000;
    line-height: 1.25;
}

.arrival-card__sku {
    margin: 0;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.85rem;
    color: #555555;
}

.arrival-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.2rem 1.5rem;
    border-radius: 999px;
    border: 1px solid #033e8a;
    box-sizing: border-box;
    background: #ffffff;
    color: #033e8a !important;
    font: inherit;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.arrival-card__cta:hover,
.arrival-card__cta:focus-visible {
    background: #033e8a;
    color: #ffffff !important;
    border-color: #033e8a;
}

.arrival-card__cta:active {
    background: #022a5e;
    border-color: #022a5e;
    color: #ffffff !important;
}

.arrivals-grid__actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.arrivals-grid__more {
    cursor: pointer;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 2.5rem;
    background: #033e8a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.arrivals-grid__more:hover,
.arrivals-grid__more:focus-visible {
    background: #022a5e;
}

.arrivals-grid__more[hidden] {
    display: none;
}

.arrivals-grid__error,
.arrivals-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Poppins Regular', sans-serif;
    color: #555555;
    margin: 0;
    padding: 1rem;
}

.arrivals-grid__error {
    color: #b00020;
}

@media (max-width: 1024px) {
    .arrivals-grid-section__inner {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }

    .arrivals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .arrivals-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal: solicitar cotización (GET NOW) */
.arrival-quote-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 18px;
    max-width: 520px;
    width: min(520px, calc(100vw - 2rem));
    max-height: min(90vh, calc(100vh - 2rem));
    overflow-y: auto;
    background: #ffffff;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.16),
        0 8px 24px rgba(3, 62, 138, 0.08);
}

.arrival-quote-dialog::backdrop {
    background: rgba(255, 255, 255, 0.6);
}

.arrival-quote-dialog__inner {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-sizing: border-box;
}

.arrival-quote-dialog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.arrival-quote-dialog__title-block {
    flex: 1;
    min-width: 0;
}

.arrival-quote-dialog__title {
    margin: 0;
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.3vw, 1.35rem);
    color: #033e8a;
    line-height: 1.2;
}

.arrival-quote-dialog__title-accent {
    display: block;
    width: 100%;
    max-width: 12rem;
    height: 4px;
    margin-top: 0.5rem;
    background: #033e8a;
    border-radius: 2px;
}

.arrival-quote-dialog__close {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #888888;
    font-size: 1.75rem;
    line-height: 1;
    padding: 0.15rem 0.35rem;
    cursor: pointer;
    border-radius: 4px;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}

.arrival-quote-dialog__close:hover,
.arrival-quote-dialog__close:focus-visible {
    color: #333333;
    background: rgba(0, 0, 0, 0.05);
}

.arrival-quote-dialog__divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0;
}

.arrival-quote-dialog__intro {
    margin: 0 0 1.25rem;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.45;
}

.arrival-quote-dialog__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.arrival-quote-dialog__label {
    display: block;
    margin: 0;
}

.arrival-quote-dialog__field {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d0d4dc;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.9rem;
    color: #222222;
    background: #ffffff;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.arrival-quote-dialog__field::placeholder {
    color: #999999;
}

.arrival-quote-dialog__field:focus {
    outline: none;
    border-color: #033e8a;
    box-shadow: 0 0 0 2px rgba(3, 62, 138, 0.15);
}

.arrival-quote-dialog__field--message {
    min-height: 120px;
    resize: vertical;
    vertical-align: top;
}

.arrival-quote-dialog__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
}

.arrival-quote-dialog__submit {
    cursor: pointer;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.75rem;
    background: #033e8a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.arrival-quote-dialog__submit:hover,
.arrival-quote-dialog__submit:focus-visible {
    background: #033E8A;
}

/* Stay Updated (misma sección que index.html) */
.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);
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }

    .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);
    }
}
