/* Bellavik — mobile first (carrusel) → tablet/desktop (rejilla tipo 1ª imagen) */



:root {
    --gradient-cta: linear-gradient(to right, #f2b08a, #d689ac);
    --pink-soft: #f8e8ee;
    --pink-mid: #e8b8cc;
    --pink-bullet: #d689ac;
    --text-dark: #1a1a1a;
    --white: #fff;
    --hero-overlay: rgba(0, 0, 0, 0.25);
    --font-sans: "Manrope", system-ui, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --radius-btn: 12px;
    --radius-card: 16px;
    --breakpoint-desktop: 900px;
    /* Sustituye por tus propias rutas locales si trabajas sin internet */

    --hero-image: url("images/header.png");

    --benefits-aspect: 1600 / 532;

}



*,

*::before,

*::after {

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    margin: 0;

    font-family: var(--font-sans);

    font-size: 16px;

    color: var(--text-dark);

    background: var(--white);

    line-height: 1.5;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}



body.modal-open {

    overflow: hidden;

}



.whatsapp-float {

    position: fixed;

    right: 1rem;

    bottom: 1rem;

    z-index: 50;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: #25d366;

    color: var(--white);

    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.whatsapp-float:hover {

    transform: translateY(-3px) scale(1.03);

    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42);

}



.payment-modal {

    position: fixed;

    inset: 0;

    z-index: 90;

    display: grid;

    place-items: center;

    padding: 1rem;

}



.payment-modal[hidden] {

    display: none;

}



.payment-modal__backdrop {

    position: absolute;

    inset: 0;

    background: rgba(17, 17, 17, 0.58);

    backdrop-filter: blur(4px);

}



.payment-modal__dialog {

    position: relative;

    z-index: 1;

    width: min(100%, 420px);

    padding: 1.4rem 1.2rem 1.25rem;

    border-radius: 24px;

    background: var(--white);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);

}



.payment-modal__close {

    position: absolute;

    top: 0.7rem;

    right: 0.8rem;

    border: none;

    background: transparent;

    font-size: 1.8rem;

    line-height: 1;

    color: #5d5d5d;

    cursor: pointer;

}



.payment-modal__badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 32px;

    padding: 0.35rem 0.8rem;

    border-radius: 999px;

    background: #f4dbe6;

    color: #9f4f74;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.02em;

}



.payment-modal__badge--success {

    background: rgba(37, 211, 102, 0.14);

    color: #178846;

}



.payment-modal__badge--pending {

    background: rgba(249, 168, 37, 0.16);

    color: #a35d00;

}



.payment-modal__badge--error {

    background: rgba(233, 93, 93, 0.14);

    color: #b13a3a;

}



.payment-modal__title {

    margin: 0.9rem 0 0.55rem;

    font-size: clamp(1.35rem, 4vw, 1.7rem);

    line-height: 1.2;

    color: var(--text-dark);

}



.payment-modal__message {

    margin: 0 0 1.1rem;

    color: #5a5a5a;

    line-height: 1.5;

}



.payment-modal__details {

    display: grid;

    gap: 0.8rem;

    margin-bottom: 1.2rem;

}



.payment-modal__detail {

    padding: 0.9rem 1rem;

    border-radius: 16px;

    background: #f8f4f6;

}



.payment-modal__label {

    display: block;

    margin-bottom: 0.25rem;

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    color: #8b7480;

}



.payment-modal__detail strong {

    font-size: 1rem;

    color: var(--text-dark);

}



.payment-modal__action {

    width: 100%;

    min-height: 48px;

    border: none;

    border-radius: 14px;

    background: var(--gradient-cta);

    color: var(--white);

    font-family: var(--font-sans);

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(214, 137, 172, 0.3);

}



.checkout-modal .checkout-form {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    width: 100%;

    margin: 0;

}



.checkout-modal .checkout-modal__dialog {

    width: min(100%, 440px);

    max-height: calc(100dvh - 2rem);

    overflow-x: hidden;

    overflow-y: auto;

    padding: 1.55rem 1.35rem 1.4rem;

    border: 1px solid rgba(214, 137, 172, 0.22);

    border-radius: 28px;

    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);

    box-shadow: 0 28px 70px rgba(84, 38, 58, 0.22);

    font-family: var(--font-sans);

    animation: checkoutModalIn 0.28s ease;

    scrollbar-width: none;

    -ms-overflow-style: none;

}



.checkout-modal .checkout-modal__dialog::-webkit-scrollbar {

    display: none;

    width: 0;

    height: 0;

}



.checkout-modal .checkout-modal__title {

    margin: 0.9rem 0 0.5rem;

    font-family: var(--font-serif);

    font-size: clamp(1.65rem, 5vw, 2rem);

    font-weight: 600;

    line-height: 1.1;

    color: var(--text-dark);

}



.checkout-modal .checkout-modal__subtitle {

    margin: 0 0 1.1rem;

    font-family: var(--font-sans);

    color: #6f6368;

    font-size: 0.94rem;

    line-height: 1.55;

}



@keyframes checkoutModalIn {

    from {

        opacity: 0;

        transform: translateY(12px) scale(0.98);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}



.checkout-modal .checkout-modal__close {

    color: #9f7f8d;

    transition: color 0.2s ease, transform 0.2s ease;

}



.checkout-modal .checkout-modal__close:hover {

    color: #d689ac;

    transform: scale(1.05);

}



.checkout-modal .checkout-modal__badge {

    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 0.35rem 0.85rem;

    border-radius: 999px;

    background: rgba(214, 137, 172, 0.14);

    color: #9f4f74;

    font-family: var(--font-sans);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}



.checkout-modal .checkout-modal__product {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 1.25rem;

    padding: 1rem 1.05rem;

    border-radius: 18px;

    background: linear-gradient(135deg, rgba(248, 232, 238, 0.98), rgba(255, 255, 255, 0.98));

    border: 1px solid rgba(214, 137, 172, 0.2);

}



.checkout-modal .checkout-modal__product-info {

    display: flex;

    flex-direction: column;

    gap: 0.2rem;

    min-width: 0;

}



.checkout-modal .checkout-modal__product-name {

    font-family: var(--font-sans);

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.25;

    color: var(--text-dark);

}



.checkout-modal .checkout-modal__product-brand {

    font-family: var(--font-serif);

    font-size: 1.08rem;

    font-style: italic;

    color: #9f4f74;

}



.checkout-modal .checkout-modal__product-price {

    flex-shrink: 0;

    padding: 0.45rem 0.7rem;

    border-radius: 12px;

    background: rgba(214, 137, 172, 0.12);

    font-family: var(--font-sans);

    font-size: 1.02rem;

    font-weight: 800;

    color: #9f4f74;

    white-space: nowrap;

}



.checkout-modal .checkout-form__field {

    display: flex;

    flex-direction: column;

    gap: 0.45rem;

    width: 100%;

}



.checkout-modal .checkout-form__label {

    display: block;

    font-family: var(--font-sans);

    font-size: 0.76rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.07em;

    color: #8b7480;

}



.checkout-modal .checkout-form__input-wrap {

    position: relative;

    display: block;

    width: 100%;

}



.checkout-modal .checkout-form__icon {

    position: absolute;

    top: 50%;

    left: 1rem;

    transform: translateY(-50%);

    font-size: 1.2rem;

    line-height: 1;

    color: #c995ad;

    pointer-events: none;

}



.checkout-modal .checkout-form__field input {

    display: block;

    width: 100%;

    min-height: 52px;

    padding: 0.75rem 1rem 0.75rem 2.85rem;

    border: 1.5px solid #e7d5dd;

    border-radius: 16px;

    font-family: var(--font-sans);

    font-size: 1rem;

    color: var(--text-dark);

    background: #fff;

    box-shadow: inset 0 1px 2px rgba(84, 38, 58, 0.04);

    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

}



.checkout-modal .checkout-form__field input::placeholder {

    color: #b7a7af;

}



.checkout-modal .checkout-form__field input:hover {

    border-color: #ddb8c8;

}



.checkout-modal .checkout-form__field input:focus {

    outline: none;

    border-color: #d689ac;

    background: #fffcfd;

    box-shadow: 0 0 0 4px rgba(214, 137, 172, 0.16);

}



.checkout-modal .checkout-form__submit {

    appearance: none;

    -webkit-appearance: none;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.55rem;

    width: 100%;

    min-height: 54px;

    margin-top: 0.25rem;

    padding: 0 1rem;

    border: none;

    border-radius: 16px;

    background: var(--gradient-cta);

    color: var(--white);

    font-family: var(--font-sans);

    font-size: 1.02rem;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    box-shadow: 0 12px 30px rgba(214, 137, 172, 0.38);

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;

}



.checkout-modal .checkout-form__submit:hover {

    transform: translateY(-2px);

    box-shadow: 0 16px 34px rgba(214, 137, 172, 0.45);

    filter: brightness(1.02);

}



.checkout-modal .checkout-form__submit:active {

    transform: translateY(0);

}



.checkout-modal .checkout-form__submit .mdi {

    font-size: 1.12rem;

}



.checkout-modal .checkout-modal__secure {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.45rem;

    margin: 1rem 0 0;

    padding-top: 0.85rem;

    border-top: 1px solid rgba(214, 137, 172, 0.14);

    font-family: var(--font-sans);

    color: #7d8a74;

    font-size: 0.84rem;

    font-weight: 600;

}



.checkout-modal .checkout-modal__secure .mdi {

    font-size: 1.05rem;

    color: #6f9b5c;

}







/* ---------- Hero ---------- */

.hero {

    position: relative;

    min-height: 100svh;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    padding: 1rem 1.25rem 2rem;

    overflow: hidden;

}



.hero__bg {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(to bottom, var(--hero-overlay), transparent 45%, rgba(0, 0, 0, 0.35)),

        var(--hero-image) center / cover no-repeat;

    z-index: 0;

}



.hero__nav {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 1rem;

    padding-top: 0.25rem;

}



.hero__logo {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    border-radius: 10px;

    color: var(--white);

    font-weight: 700;

    font-size: 0.95rem;

    letter-spacing: -0.02em;



}



.hero__logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.hero__logo-mark {

    line-height: 1;

}



.hero__slogan {

    margin: 0;

    margin-left: auto;

    max-width: none;

    font-size: clamp(0.72rem, 2.5vw, 1rem);

    font-weight: 700;

    line-height: 1.2;

    color: var(--white);

    text-align: right;

    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);

    opacity: 0.95;

    white-space: nowrap;

}



@media (min-width: 480px) {

    .hero__slogan {

        font-size: clamp(1.05rem, 2vw, 1.5rem);

    }

}



.hero__inner {

    position: relative;

    z-index: 1;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 0.7rem;

    padding-top: 0.9rem;

}



.hero__product-wrap {

    display: flex;

    justify-content: center;

    flex: 0 0 auto;

    align-self: center;

    margin-right: 0;

}



.hero__product-img {

    width: min(220px, 56vw);

    max-height: 330px;

    object-fit: contain;

    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));

}



.hero__panel {

    flex: 0 1 auto;

    width: min(100%, 360px);

    min-width: 0;

    max-width: 360px;



    /*background: rgba(232, 184, 204, 0.42);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border-radius: var(--radius-card);

    padding: 1.5rem 1.35rem 1.65rem;

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);*/

}



.hero__title {

    margin: 0 0 0.35rem;

    color: var(--white);

    font-weight: 600;

    line-height: 1.15;

}



.hero__title-serif {

    font-family: var(--font-serif);

    font-size: clamp(4rem, 20vw, 6rem);

    font-weight: 600;

    display: block;

}



.hero__title-sub {

    font-family: var(--font-sans);

    font-size: clamp(1.1rem, 5.5vw, 1.45rem);

    font-weight: 500;

    display: block;

    margin-top: 0.15rem;

}



.hero__brand {

    margin: 0 0 1.25rem;

    font-size: 0.8rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: var(--white);

    opacity: 0.95;

}



.hero__pricing {

    display: flex;

    flex-direction: column;

    gap: 0.45rem;

    margin: 0 0 1.15rem;

    color: var(--white);

}



.hero__pricing-top {

    display: flex;

    align-items: center;

    gap: 0.65rem;

    flex-wrap: wrap;

}



.hero__price-old {

    font-size: 0.95rem;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);

    text-decoration: line-through;

    text-decoration-thickness: 2px;

    text-decoration-color: rgba(255, 255, 255, 0.95);

}



.hero__discount-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0.25rem 0.7rem;

    border-radius: 999px;

    background: #e95d5d;

    color: var(--white);

    font-size: 0.78rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.03em;

    box-shadow: 0 6px 18px rgba(233, 93, 93, 0.28);

}



.hero__price-current {

    font-size: clamp(1.8rem, 8vw, 2.6rem);

    font-weight: 800;

    line-height: 1;

    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);

}



/* CTA */

.btn-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    padding: 0.9rem 1.5rem;

    border: none;

    border-radius: var(--radius-btn);

    background: var(--gradient-cta);

    color: var(--white);

    font-family: var(--font-sans);

    font-size: 0.95rem;

    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 4px 20px rgba(214, 137, 172, 0.45);

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.btn-cta:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 28px rgba(214, 137, 172, 0.55);

}



.btn-cta--large {

    max-width: 420px;

    margin-inline: auto;

    padding: 1rem 2rem;

    font-size: 1.05rem;

}



@media (max-width: 360px) {

    .hero__inner {

        flex-direction: column;

        justify-content: flex-end;

        gap: 0.35rem;

    }



    .hero__product-img {

        width: min(190px, 58vw);

    }



    .hero__panel {

        max-width: 100%;

    }

}



@media (max-width: 768px) {

    .hero {

        padding: 0.9rem 1rem 1.4rem;

    }



    .hero__nav {

        align-items: center;

    }



    .hero__panel {

        align-self: flex-start;

        margin-left: 0.1rem;

    }



    .hero__brand {

        margin-bottom: 0.95rem;

    }



    .btn-cta {

        min-height: 46px;

        font-size: 1.05rem;

    }



    .whatsapp-float {

        right: 0.8rem;

        bottom: 0.8rem;

        width: 62px;

        height: 62px;

    }



    .whatsapp-float svg {

        width: 34px;

        height: 34px;

    }

}



/* Hero desktop / laptop: layout horizontal como 1ª imagen */

@media (min-width: 900px) {

    .hero {

        min-height: min(100vh, 920px);

        padding: 2rem 4vw 3rem;

    }



    .hero__logo {

        width: 58px;

        height: 58px;

        font-size: 1rem;

    }



    .hero__slogan {

        font-size: clamp(1.15rem, 1.8vw, 1.65rem);

        text-align: right;

    }



    .hero__inner {

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;

        gap: clamp(0.4rem, 1.4vw, 1.1rem);

        padding-top: 2rem;

        padding-bottom: 2rem;

    }



    .hero__product-wrap {

        flex: 0 0 auto;

        justify-content: flex-start;

        margin-right: -0.45rem;

    }



    .hero__product-img {

        width: min(295px, 31vw);

        max-height: 440px;

    }



    .hero__panel {

        flex: 0 1 420px;

        align-self: center;

        padding: 2rem 2.25rem 2.25rem;

    }



    .btn-cta {

        width: auto;

        min-width: 220px;

        padding-left: 2rem;

        padding-right: 2rem;

    }

}



/* ---------- Videos / testimonios ---------- */

.section-videos {

    padding: 2.5rem 1rem 3rem;

}



.section-videos__title {

    margin: 0 auto 1.75rem;

    max-width: 520px;

    font-size: clamp(1.1rem, 4vw, 1.45rem);

    font-weight: 700;

    text-align: center;

    color: var(--text-dark);

    line-height: 1.35;

}



/* Móvil: carrusel con flechas (2ª imagen) */

.videos-shell {

    position: relative;

    display: flex;

    align-items: center;

    gap: 0.35rem;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 0.25rem;

}



.videos-track {

    display: flex;

    gap: 0.75rem;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    flex: 1;

    padding: 0.5rem 0.25rem 1rem;

    margin: 0 -0.25rem;

}



.videos-track::-webkit-scrollbar {

    display: none;

}



.video-card {

    flex: 0 0 72%;

    max-width: 280px;

    scroll-snap-align: center;

    border-radius: var(--radius-card);

    overflow: hidden;

    box-shadow:

        0 16px 48px rgba(0, 0, 0, 0.28),

        0 6px 18px rgba(0, 0, 0, 0.16);

}



.video-card__media {

    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    background: #000 var(--thumb) center / cover no-repeat;

}



.video-card__media video,

.video-card__media img {

    position: absolute;

    inset: 0;

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border: none;

    outline: none;

    background: #000;

}



.video-card__media iframe {

    position: absolute;

    inset: 0;

    display: block;

    width: 100%;

    height: 100%;

    border: none;

    background: #000;

}



.video-card__play {

    position: absolute;

    inset: 0;

    margin: auto;

    width: 56px;

    height: 56px;

    background: rgba(255, 255, 255, 0.92);

    clip-path: polygon(35% 28%, 35% 72%, 75% 50%);

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);

}



.video-card__name {

    margin: 0;

    padding: 0.65rem 0.75rem;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    color: var(--white);

    font-weight: 700;

    font-size: 0.95rem;

}



.video-card {

    position: relative;

}



.carousel-btn {

    flex-shrink: 0;

    width: 44px;

    height: 44px;

    border: none;

    border-radius: 50%;

    background: var(--gradient-cta);

    color: var(--white);

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 16px rgba(214, 137, 172, 0.45);

    transition: transform 0.15s ease, opacity 0.15s ease;

    z-index: 2;

}



.carousel-btn:active {

    transform: scale(0.96);

}



.carousel-dots {

    display: none;

}



.carousel-dots__dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(214, 137, 172, 0.35);

    cursor: pointer;

    transition: background 0.2s ease, transform 0.2s ease;

}



.carousel-dots__dot--active {

    background: var(--pink-mid);

    transform: scale(1.25);

}



@media (max-width: 899px) {

    .section-videos {
        padding: 1.75rem 0 2.25rem;
        overflow: hidden;
    }

    .section-videos__title {
        padding: 0 1rem;
        margin-bottom: 1.15rem;
        font-size: clamp(1rem, 4.2vw, 1.25rem);
        line-height: 1.3;
    }

    .videos-shell {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
        padding: 0 0.75rem;
        max-width: 100%;
        gap: 0;
    }

    .carousel-btn {
        display: flex;
        position: absolute;
        top: 42%;
        width: 40px;
        height: 40px;
        z-index: 3;
        box-shadow: 0 4px 14px rgba(214, 137, 172, 0.5);
    }

    .carousel-btn--prev {
        left: 0.35rem;
        transform: translateY(-50%);
    }

    .carousel-btn--next {
        right: 0.35rem;
        transform: translateY(-50%);
    }

    .carousel-btn--prev:active,
    .carousel-btn--next:active {
        transform: translateY(-50%) scale(0.96);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        width: 100%;
        padding: 0.85rem 0 0.25rem;
    }

    .videos-track {
        width: 100%;
        flex: none;
        gap: 0.65rem;
        padding: 0.35rem 0 0;
        scroll-padding-inline: 0;
        margin: 0;
    }

    .video-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: none;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        border: none;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    }

    .video-card__media {
        width: 100%;
        aspect-ratio: 9 / 16;
        height: auto;
        max-height: 78vh;
        min-height: min(68vw, 520px);
        border-radius: var(--radius-card);
        background: #000;
    }

    .video-card__media iframe,
    .video-card__media video {
        border-radius: inherit;
    }

    .video-card__media video {
        object-fit: cover;
        object-position: center;
    }

}



@media (max-width: 480px) {

    .section-videos {
        padding: 1.5rem 0 2rem;
    }

    .section-videos__title {
        margin-bottom: 1rem;
        font-size: 0.98rem;
    }

    .videos-shell {
        padding: 0 0.65rem;
    }

    .video-card__media {
        max-height: 76vh;
        min-height: min(70vw, 480px);
    }

}



/* Desktop: tres columnas, sin carrusel aparente (1ª imagen) */

@media (min-width: 900px) {

    .section-videos {
        padding: 3rem 4vw 4rem;
    }



    .videos-shell {
        display: grid;

        grid-template-columns: 1fr;

        gap: 0;

        padding: 0;

    }



    .carousel-btn {

        display: none;

    }



    .videos-track {

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 1.25rem;

        overflow: visible;

        scroll-snap-type: none;

        padding: 0;

        margin: 0;

    }

    .video-card {
        flex: none;
        max-width: none;
        width: 100%;
    }
}

/* ---------- Beneficios ---------- */
.section-benefits {
    width: 100%;
    padding: 0;
    background-color: var(--white);
}

.section-benefits__container {
    position: relative;
    width: 100%;
    aspect-ratio: var(--benefits-aspect);
    height: auto;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background-color: #e8d8c9;
}

.section-benefits__bg {
    position: absolute;
    inset: 0;
    line-height: 0;
    pointer-events: none;
}

.section-benefits__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.benefits {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    column-gap: clamp(0.25rem, 0.8vw, 0.65rem);
    align-items: center;
    padding: 1rem clamp(1rem, 2vw, 2rem) 1rem clamp(0.5rem, 1vw, 1rem);
}

.benefits__visual {
    display: none;
}

.benefits__content {
    grid-column: 2;
    justify-self: stretch;
    align-self: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    gap: 1rem;
    padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.35);
    isolation: isolate;
}

.benefits__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.12) 42%,
        transparent 68%
    );
    pointer-events: none;
}

.benefits__visual img {
    width: min(100%, 125px);
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(214, 137, 172, 0.25));
    transform: none;
}



.benefits__list {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 1rem !important;

    width: 100%;

}



.benefits__list li {

    position: relative;

    padding-left: 1.45rem;

    font-size: clamp(0.88rem, 2.6vw, 1.05rem);

    line-height: 1.3;

}



.benefits__list li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0.35em;

    width: 10px;

    height: 10px;

    background: var(--pink-bullet);

    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

}



.benefits__highlight {

    display: inline;

    padding: 0;

    background: transparent;

}



.benefits__cta {

    text-align: left;

    padding-top: 0.5rem;

    width: 100%;

}



.section-benefits .btn-cta--large {

    width: 100%;
    max-width: 360px;
    padding: 0.95rem 1.4rem;
    font-size: clamp(1.05rem, 4vw, 1.28rem);
}



@media (max-width: 899px) {

    .section-benefits__container {
        aspect-ratio: auto;
        min-height: clamp(280px, calc(100vw * 532 / 1600), 380px);
        height: clamp(280px, calc(100vw * 532 / 1600), 380px);
    }

    .section-benefits__bg img {
        object-fit: contain;
        object-position: left center;
    }

    .benefits {
        grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
        column-gap: 0.1rem;
        align-items: center;
        padding: 0.55rem 0.7rem 0.55rem 0.35rem;
    }

    .benefits__content {
        justify-self: end;
        width: 100%;
        padding: 0.65rem 0.7rem;
        border-radius: 16px;
        gap: 0.45rem;
    }

    .benefits__list {
        gap: 0.4rem !important;
    }

    .benefits__list li {
        font-size: clamp(0.7rem, 2.9vw, 0.8rem);
        line-height: 1.24;
        padding-left: 1.05rem;
    }

    .benefits__list li::before {
        width: 7px;
        height: 7px;
        top: 0.38em;
    }

    .benefits__cta {
        padding-top: 0.15rem;
    }

    .section-benefits .btn-cta--large {
        max-width: none;
        padding: 0.52rem 0.75rem;
        font-size: clamp(0.7rem, 3vw, 0.8rem);
    }

}



@media (max-width: 480px) {

    .section-benefits__container {
        min-height: clamp(270px, calc(100vw * 532 / 1600), 360px);
        height: clamp(270px, calc(100vw * 532 / 1600), 360px);
    }

    .benefits {
        grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
        padding: 0.45rem 0.55rem 0.45rem 0.25rem;
    }

    .benefits__content {
        padding: 0.55rem 0.6rem;
        border-radius: 14px;
    }

    .benefits__list li {
        font-size: 0.68rem;
        line-height: 1.22;
    }

    .section-benefits .btn-cta--large {
        padding: 0.48rem 0.6rem;
        font-size: 0.68rem;
    }

}



@media (min-width: 900px) {

    .benefits {
        grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
        column-gap: clamp(0.2rem, 0.45vw, 0.55rem);
        align-items: center;
        padding: 1.1rem clamp(1.25rem, 2.5vw, 2.75rem) 1.1rem clamp(0.65rem, 1.1vw, 1.35rem);
    }

    .benefits__content {
        justify-self: stretch;
        width: 100%;
        padding: clamp(1rem, 1.5vw, 1.65rem) clamp(1rem, 1.35vw, 1.45rem);
        gap: clamp(0.6rem, 0.9vw, 0.85rem);
        border-radius: 22px;
    }

    .benefits__list {
        gap: 0.55rem;
    }

    .benefits__list li {
        font-size: clamp(0.9rem, 1vw, 1.1rem);
        line-height: 1.32;
    }

    .benefits__cta {
        padding-top: 0.4rem;
        text-align: left;
    }

    .section-benefits .btn-cta--large {
        margin-inline: 0;
        max-width: 320px;
        padding: 0.8rem 1.2rem;
        font-size: clamp(0.92rem, 1vw, 1.05rem);
    }

}



@media (min-width: 1280px) {

    .benefits {
        grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
        column-gap: 0.5rem;
        padding: 1.25rem clamp(2rem, 3.2vw, 3.5rem) 1.25rem clamp(1rem, 1.6vw, 2rem);
    }

    .benefits__content {
        padding: 1.35rem 1.4rem;
    }

    .benefits__list li {
        font-size: clamp(0.98rem, 0.9vw, 1.12rem);
    }

}



@media (min-width: 1600px) {

    .benefits {
        grid-template-columns: 620px 1fr;
        column-gap: 0.65rem;
        padding: 1.35rem 4rem 1.35rem 2.25rem;
    }

    .benefits__content {
        padding: 1.5rem 1.45rem;
    }

    .benefits__list li {
        font-size: 1.1rem;
    }

}