/* =========================================================
   U21 HOME
   ========================================================= */
.u21-home {
    --u21-blue: #426b82;
    --u21-blue-dark: #214e69;
    --u21-green: #5e8d69;
    --u21-green-light: #edf5eb;
    --u21-text: #323b40;
    --u21-border: #e9e9e5;
    --u21-light: #f7f7f5;
    width: 100%;
    overflow: hidden;
    color: var(--u21-text);
    background: #fff;
}
.u21-home *,
.u21-home *::before,
.u21-home *::after {
    box-sizing: border-box;
}
.u21-home img {
    display: block;
    max-width: 100%;
}
.u21-home a {
    color: inherit;
    text-decoration: none;
}
.u21-container {
    width: 100vw;
    margin: 0 auto;
}
/* =========================================================
   HERO
   ========================================================= */
.u21-hero {
    background: #f5f5f4;
}
.u21-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(270px, 1fr);
}
.u21-hero-main {
    overflow: hidden;
}
.u21-hero-main img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}
.u21-hero-promos {
    display: grid;
    grid-template-rows: 1fr 1fr;
}
.u21-promo {
    min-height: 12.5vw;
    padding: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fafafa;
    box-shadow: inset 0px 0px 6px #214e6959;
}
.u21-promo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.u21-promo-number {
    color: var(--u21-blue-dark);
    font-size: clamp(42px, 4vw, 68px);
    line-height: 1;
}
.u21-promo-title {
    color: var(--u21-blue-dark);
    font-size: clamp(20px, 2vw, 30px);
    line-height: .95;
    text-align: left;
}
.u21-promo small {
    margin-top: 15px;
    color: #888;
}
.u21-promo-shipping {
    color: var(--u21-blue-dark);
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1;
}
.u21-promo-subtitle {
    margin-top: 8px;
    color: var(--u21-blue-dark);
    font-size: 18px;
}
/* =========================================================
   UGC / VIDEOS DE PRODUCTOS
   ========================================================= */

.u21-ugc {
    padding: 50px 0;
    background: #ffffff;
}


.u21-section-title {
    margin-bottom: 30px;
    text-align: center;
}


.u21-section-title h2 {
    margin: 0;

    color: #426b82;

    font-size: clamp(22px, 2vw, 31px);

    font-weight: 400;

    line-height: 1.15;
}


.u21-section-title h2 strong {
    font-weight: 700;
}



/* =========================================================
   GRID
   ========================================================= */

.u21-ugc-grid {
    width: min(900px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}



/* =========================================================
   CARD
   ========================================================= */

.u21-ugc-card {
    min-width: 0;

    text-align: center;
}



/* =========================================================
   VIDEO
   ========================================================= */

.u21-ugc-video {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeec;
}


.u21-ugc-video iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}



/* =========================================================
   INFORMACION
   ========================================================= */

.u21-ugc-card > strong {
    display: block;

    margin-top: 11px;

    color: #333333;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 600;
}


.u21-ugc-product-link {
    display: inline-block;

    margin-top: 6px;

    padding: 5px 14px;

    border-radius: 5px;

    background: #edf5eb;

    color: #568161 !important;

    font-size: 12px;

    line-height: 1;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.u21-ugc-product-link:hover {
    background: #568161;

    color: #ffffff !important;
}



/* =========================================================
   INSTAGRAM
   ========================================================= */

.u21-instagram {
    margin-top: 38px;

    text-align: center;
}


.u21-instagram a {
    color: #666666;

    font-size: 13px;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .u21-ugc-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 600px;
    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .u21-ugc {
        padding: 38px 0;
    }


    /*
     * En mobile prefiero carrusel táctil
     * antes que 2 videos demasiado chicos.
     */

    .u21-ugc-grid {
        width: calc(100% + 14px);

        max-width: none;

        padding-right: 14px;

        display: flex;

        gap: 14px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .u21-ugc-grid::-webkit-scrollbar {
        display: none;
    }


    .u21-ugc-card {
        flex: 0 0 68%;

        scroll-snap-align: start;
    }

}
/* =========================================================
   CATEGORÍAS
   ========================================================= */
.u21-categories {
    padding: 23px 0;
    border-bottom: 1px solid var(--u21-border);
}
.u21-category-list {
    display: grid;
    grid-template-columns:repeat(6, minmax(100px, 1fr));
    justify-self: center;
    gap: 40px;
}
.u21-category {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #555;
    font-size: 12px;
    transition:transform .2s ease, color .2s ease;
}
.u21-category img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    opacity: .8;
}
.u21-category:hover {
    color: var(--u21-blue-dark);
    transform: translateY(-3px);
}
/* =========================================================
   MUJER / HOMBRE
   ========================================================= */
.u21-genders {
    padding: 20px 0 10px;
}
.u21-gender-grid {
    width: min(640px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 28px;
}
.u21-gender-card {
    position: relative;
    min-height: 133px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}
.u21-gender-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition:transform .35s ease;
}
.u21-gender-card span {
    position: absolute;
    top: 0;
    right: 22px;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #45535a;
    font-size: 18px;
}
.u21-gender-card:hover img {
    transform: scale(1.03);
}
/* =========================================================
   SECCIONES DE PRODUCTOS
   ========================================================= */
.u21-feature {
    padding: 55px 0 25px;
}
.u21-feature-magisterio {
    padding-top: 20px;
    padding-bottom: 60px;
}
.u21-feature-layout {
    display: grid;
    grid-template-columns:minmax(230px, .8fr) minmax(0, 2.5fr);
    gap: 40px;
    align-items: center;
}
.u21-feature-reverse {
    grid-template-columns:minmax(0, 2.5fr) minmax(230px, .8fr);
}
.u21-feature-heading {
    padding-left: 15px;
}
.u21-feature-heading-right {
    padding: 0 15px 0 0;
    text-align: right;
}
.u21-feature-heading h2 {
    margin: 0;
    color: var(--u21-blue);
    font-size: clamp(26px, 2.4vw, 40px);
    font-weight: 400;
    line-height: 1.08;
}
.u21-feature-heading > a {
    display: inline-block;
    margin-top: 18px;
    padding-bottom: 3px;
    border-bottom:1px solid currentColor;
    color: var(--u21-blue-dark);
    font-size: 13px;
}
/* =========================================================
   PRODUCTOS
   ========================================================= */
.u21-products {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.u21-product-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f4f3f0;
}
.u21-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .35s ease;
}
.u21-product:hover
.u21-product-image img {
    transform: scale(1.025);
}
.u21-product-info {
    padding: 10px 5px 0;
    text-align: center;
}
.u21-product-name {
    display: block;
    color: #444;
    font-size: 12px;
    line-height: 1.35;
}
.u21-product-prices {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.u21-product-info strong {
    display: block;
    margin-top: 4px;
    color: var(--u21-green);
    font-size: 12px;
}
.u21-old-price {
    color: #999;
    font-size: 11px;
    text-decoration: line-through;
}
/* =========================================================
   UGC
   ========================================================= */
.u21-ugc {
    padding: 45px 0;
    border-top:1px solid var(--u21-border);
}
.u21-section-title {
    margin-bottom: 28px;
    text-align: center;
}
.u21-section-title h2 {
    margin: 0;
    color: #2D5D76;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}
.u21-ugc-grid {
    width: min(850px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 18px;
}
.u21-ugc-card {
    text-align: center;
}
.u21-ugc-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    background: #eee;
}
.u21-ugc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.u21-play {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:rgba(255,255,255,.93);
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    font-size: 12px;
}
.u21-ugc-card > strong {
    display: block;
    margin-top: 10px;
    font-size: 11px;
}
.u21-ugc-card > span {
    display: inline-block;
    margin-top: 5px;
    padding: 5px 13px;
    border-radius: 4px;
    background: var(--u21-green-light);
    color: var(--u21-green);
    font-size: 10px;
}
.u21-instagram {
    margin-top: 35px;
    text-align: center;
}
.u21-instagram a {
    color: #666;
    font-size: 13px;
}
/* =========================================================
   TIRA FINAL
   ========================================================= */
.u21-catalog {
    padding: 15px 0 30px;
}
.u21-catalog-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:minmax(175px, 1fr);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type:x mandatory;
    scrollbar-width: thin;
}
.u21-catalog-product {
    scroll-snap-align: start;
    text-align: center;
}
.u21-catalog-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f5f4f1;
}
.u21-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.u21-catalog-product strong {
    display: block;
    margin-top: 8px;
    padding: 0 6px;
    font-size: 11px;
}
.u21-catalog-product span {
    display: block;
    margin-top: 3px;
    color: var(--u21-green);
    font-size: 11px;
    font-weight: 700;
}
/* =========================================================
   U21 HOME - AMBOS DESTACADOS
   ========================================================= */
.u21-ambos-home {
    width: 100%;
    padding: 50px 24px;
    background: #ffffff;
}
/* CONTENEDOR GENERAL */
.u21-ambos-home__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(240px, 0.8fr)
        minmax(0, 2.6fr);
    gap: 55px;
    align-items: center;
}
/* =========================================================
   TITULO
   ========================================================= */
.u21-ambos-home__intro {
    align-self: center;
}
.u21-ambos-home__intro h2 {
    margin: 0;
    color: #2D5D76;
    font-size: 30px;
    line-height: 1.20;
    font-weight: 400;
    letter-spacing: -0.02em;
}
/* =========================================================
   COLUMNA DERECHA
   ========================================================= */
.u21-ambos-home__content {
    width: 100%;
    min-width: 0;
}
/* =========================================================
   PRODUCTOS
   ========================================================= */
.u21-ambos-home__products {
    width: 100%;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}
/* TARJETA */
.u21-ambos-home .u21-card {
    width: 100%;
    min-width: 0;
    margin: 0;
    background: #ffffff;
}
/* IMAGEN */
.u21-ambos-home .u21-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 6;
    overflow: hidden;
    background: #f5f4f1;
}
.u21-ambos-home .u21-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.u21-ambos-home .u21-card:hover .u21-card__image img {
    transform: scale(1.025);
}
/* TEXTO PRODUCTO */
.u21-ambos-home .u21-card__content {
    padding: 12px 4px 0;
    text-align: center;
}
.u21-ambos-home .u21-card__name {
    display: block;
    color: #333333;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}
.u21-ambos-home .u21-card__price {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 8px;
}
.u21-ambos-home .u21-card__price strong {
    color: #568161;
    font-size: 13px;
    font-weight: 600;
}
.u21-ambos-home .u21-card__old-price {
    color: #999999;
    font-size: 11px;
    text-decoration: line-through;
}
/* =========================================================
   BOTON VER TODOS
   ========================================================= */
.u21-ambos-home__cta {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}
.u21-ambos-home__cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border: 1px solid #426b82;
    border-radius: 30px;
    color: #426b82;
    background: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.u21-ambos-home__cta a:hover {
    color: #ffffff;
    background: #426b82;
    transform: translateY(-1px);
}
.u21-ambos-home__cta span {
    font-size: 17px;
}







/* =========================================================
   U21 - CARRUSEL INFINITO PRODUCTOS
   ========================================================= */

.u21-infinite-products {

    --u21-carousel-gap: 18px;

    position: relative;

    width: 100%;

    padding: 18px 0 30px;

    overflow: hidden;

    background: #ffffff;

}



/* =========================================================
   VIEWPORT
   ========================================================= */

.u21-infinite-products__viewport {

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;


    scrollbar-width: none;


    -webkit-overflow-scrolling: touch;


    cursor: grab;


    overscroll-behavior-x: contain;

}


.u21-infinite-products__viewport::-webkit-scrollbar {

    display: none;

}


.u21-infinite-products__viewport:active {

    cursor: grabbing;

}



/* =========================================================
   TRACK
   ========================================================= */

.u21-infinite-products__track {

    width: max-content;

    display: flex;

    align-items: stretch;

}

.u21-infinite-products__viewport {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}


.u21-infinite-products__track {
    display: flex !important;
    width: max-content !important;
}

/* =========================================================
   GRUPO
   ========================================================= */

.u21-infinite-products__group {

    flex: 0 0 auto;


    display: flex;


    gap: var(--u21-carousel-gap);


    /*
     * Este padding forma parte del ancho del grupo
     * y mantiene uniforme la separación entre copias.
     */

    padding-right: var(--u21-carousel-gap);

}



/* =========================================================
   PRODUCTO
   ========================================================= */

.u21-infinite-products__item {

    flex:

        0 0 clamp(220px, 15vw, 305px);


    min-width: 0;

}



/* CARD */

.u21-infinite-products .u21-card {

    width: 100%;

    margin: 0;

    background: #ffffff;

}



/* IMAGEN */

.u21-infinite-products .u21-card__image {

    display: block;

    width: 100%;

    overflow: hidden;


    aspect-ratio: 4 / 6;


    background: #f5f4f1;

}


.u21-infinite-products .u21-card__image img {

    display: block;


    width: 100%;

    height: 100%;


    object-fit: cover;


    transition:

        transform .35s ease;

}


.u21-infinite-products
.u21-card:hover
.u21-card__image img {

    transform: scale(1.02);

}



/* =========================================================
   INFORMACION PRODUCTO
   ========================================================= */

.u21-infinite-products .u21-card__content {

    padding:

        10px 6px 0;


    text-align: left;

}


.u21-infinite-products .u21-card__name {

    display: block;


    color: #333333;


    font-size: 13px;


    line-height: 1.3;


    font-weight: 500;

}


.u21-infinite-products .u21-card__price {

    margin-top: 3px;


    display: flex;


    align-items: center;


    flex-wrap: wrap;


    gap: 4px 7px;

}


.u21-infinite-products .u21-card__price strong {

    color: #568161;


    font-size: 13px;


    font-weight: 600;

}


.u21-infinite-products .u21-card__old-price {

    color: #999999;


    font-size: 11px;


    text-decoration: line-through;

}



/* =========================================================
   FLECHAS
   ========================================================= */

.u21-infinite-products__arrow {

    position: absolute;

    z-index: 5;


    top: 43%;


    width: 44px;

    height: 44px;


    display: flex;


    align-items: center;

    justify-content: center;


    border: 0;


    border-radius: 50%;


    background:

        rgba(255,255,255,.94);


    color: #426b82;


    box-shadow:

        0 4px 18px rgba(0,0,0,.13);


    font-size: 30px;


    line-height: 1;


    cursor: pointer;


    opacity: 0;


    transform:

        translateY(-50%);


    transition:

        opacity .2s ease,
        transform .2s ease;

}



/* =========================================================
   U21 HERO CAROUSEL
   ========================================================= */

.u21-hero-carousel {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    background: #f3f3f1;
}


.u21-hero-carousel__viewport {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.u21-hero-carousel__track {
    position: relative;

    width: 100%;
    height: 100%;
}



/* =========================================================
   SLIDES
   ========================================================= */

.u21-hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


.u21-hero-slide.is-active {
    position: relative;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    z-index: 2;
}


.u21-hero-slide img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 350px;

    object-fit: contain;

    object-position: top;
}



/* =========================================================
   FLECHAS
   ========================================================= */

.u21-hero-carousel__arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    color: #3f5664;

    background: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 3px 14px rgba(0, 0, 0, 0.12);

    font-size: 29px;

    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


.u21-hero-carousel__arrow:hover {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.05);
}


.u21-hero-carousel__arrow--prev {
    left: 18px;
}


.u21-hero-carousel__arrow--next {
    right: 18px;
}



/* =========================================================
   PUNTOS
   ========================================================= */

.u21-hero-carousel__dots {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 16px;

    display: flex;

    align-items: center;

    gap: 8px;

    transform: translateX(-50%);
}


.u21-hero-carousel__dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        background 0.25s ease;
}


.u21-hero-carousel__dot.is-active {
    width: 24px;

    border-radius: 10px;

    background: #ffffff;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .u21-hero-slide img {
        min-height: 330px;
    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .u21-hero-slide img {
        width: 100%;

        min-height: 0;

        aspect-ratio: 16 / 9;

        object-fit: cover;
    }


    .u21-hero-carousel__arrow {
        width: 36px;
        height: 36px;

        font-size: 25px;
    }


    .u21-hero-carousel__arrow--prev {
        left: 9px;
    }


    .u21-hero-carousel__arrow--next {
        right: 9px;
    }


    .u21-hero-carousel__dots {
        bottom: 10px;

        gap: 6px;
    }


    .u21-hero-carousel__dot {
        width: 7px;
        height: 7px;
    }


    .u21-hero-carousel__dot.is-active {
        width: 20px;
    }

}


.u21-infinite-products:hover
.u21-infinite-products__arrow,

.u21-infinite-products__arrow:focus-visible {

    opacity: 1;

}



.u21-infinite-products__arrow--prev {

    left: 16px;

}


.u21-infinite-products__arrow--next {

    right: 16px;

}



/* =========================================================
   PAUSAR / REPRODUCIR
   ========================================================= */

.u21-infinite-products__pause {

    position: absolute;

    z-index: 6;


    top: 12px;

    right: 14px;


    width: 32px;

    height: 32px;


    display: flex;

    align-items: center;

    justify-content: center;


    border: 0;


    border-radius: 50%;


    background:

        rgba(255,255,255,.92);


    color: #426b82;


    box-shadow:

        0 2px 12px rgba(0,0,0,.08);


    cursor: pointer;


    font-size: 12px;


    opacity: .7;


    transition:

        opacity .2s ease;

}


.u21-infinite-products__pause:hover {

    opacity: 1;

}


.u21-carousel-play-icon {

    display: none;

}


.u21-infinite-products.is-manually-paused
.u21-carousel-pause-icon {

    display: none;

}


.u21-infinite-products.is-manually-paused
.u21-carousel-play-icon {

    display: inline;

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .u21-infinite-products {

        --u21-carousel-gap: 12px;


        padding:

            12px 0 25px;

    }


    .u21-infinite-products__item {

        flex:

            0 0 66vw;


        max-width: 150px;

    }



    /*
     * En mobile no hacen tanta falta las flechas:
     * la interacción principal es swipe.
     */

    .u21-infinite-products__arrow {

        display: none;

    }


    .u21-infinite-products__pause {

        top: 8px;

        right: 8px;


        width: 30px;

        height: 30px;

    }

}



/* =========================================================
   USUARIOS QUE PREFIEREN MENOS MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .u21-infinite-products__viewport {

        scroll-behavior: auto;

    }

}
/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 950px) {
    .u21-ambos-home {
        padding: 55px 24px;
    }
    .u21-ambos-home__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }
    .u21-ambos-home__intro h2 br {
        display: none;
    }
    .u21-ambos-home__intro h2 {
        max-width: 600px;
    }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
    .u21-ambos-home {
        padding: 30px 18px;
    }
    .u21-ambos-home__inner {
        gap: 24px;
    }
    .u21-ambos-home__intro h2 {
        font-size: 27px;
    }
    /* PRODUCTOS COMO CARRUSEL TACTIL */
    .u21-ambos-home__products {
        width: calc(100% + 18px);
        padding-right: 18px;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .u21-ambos-home__products::-webkit-scrollbar {
        display: none;
    }
    .u21-ambos-home .u21-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }
    /* CTA */
    .u21-ambos-home__cta {
        margin-top: 22px;
        justify-content: center;
    }
    .u21-ambos-home__cta a {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */
@media (max-width: 480px) {
    .u21-ambos-home .u21-card {
        flex-basis: 61%;
    }
}
/* =========================================================
   U21 HOME - MAGISTERIO
   LOS FAVORITOS DE LAS SEÑOS
   ========================================================= */
.u21-magisterio-home {
    width: 100%;
    padding: 10px 24px 55px;
    background: #ffffff;
}
/* =========================================================
   CONTENEDOR GENERAL
   ========================================================= */
.u21-magisterio-home__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(0, 2.6fr)
        minmax(240px, 0.8fr);
    gap: 55px;
    align-items: center;
}
/* =========================================================
   COLUMNA PRODUCTOS
   ========================================================= */
.u21-magisterio-home__content {
    width: 100%;
    min-width: 0;
}
/* =========================================================
   GRILLA PRODUCTOS
   ========================================================= */
.u21-magisterio-home__products {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 22px;
}
/* =========================================================
   TARJETA
   Reutilizamos .u21-card
   ========================================================= */
.u21-magisterio-home .u21-card {
    width: 100%;
    min-width: 0;
    margin: 0;
    background: #ffffff;
}
.u21-magisterio-home .u21-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 6;
    overflow: hidden;
    background: #f5f4f1;
}
.u21-magisterio-home .u21-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:transform 0.35s ease;
}
.u21-magisterio-home
.u21-card:hover
.u21-card__image img {
    transform: scale(1.025);
}
/* =========================================================
   INFORMACION PRODUCTO
   ========================================================= */
.u21-magisterio-home .u21-card__content {
    padding: 12px 4px 0;
    text-align: center;
}
.u21-magisterio-home .u21-card__name {
    display: block;
    color: #333333;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}
.u21-magisterio-home .u21-card__price {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 8px;
}
.u21-magisterio-home .u21-card__price strong {
    color: #568161;
    font-size: 13px;
    font-weight: 600;
}
.u21-magisterio-home .u21-card__old-price {
    color: #999999;
    font-size: 11px;
    text-decoration: line-through;
}
/* =========================================================
   TITULO DERECHA
   ========================================================= */
.u21-magisterio-home__intro {
    align-self: center;
    text-align: right;
}
.u21-magisterio-home__intro h2 {
    margin: 0;
    color: #2D5D76;
    font-size:32px;
    line-height: 1.20;
    font-weight: 400;
    letter-spacing: -0.02em;
}
/* =========================================================
   BOTON
   ========================================================= */
.u21-magisterio-home__cta {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
}
.u21-magisterio-home__cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding:11px 20px;
    border:1px solid #426b82;
    border-radius: 30px;
    color: #426b82;
    background: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition:background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.u21-magisterio-home__cta a:hover {
    color: #ffffff;
    background: #426b82;
    transform: translateY(-1px);
}
.u21-magisterio-home__cta span {
    font-size: 17px;
}
/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 950px) {
    .u21-magisterio-home {
        padding:45px 24px 55px;
    }
    /*
     * En tablet ponemos primero
     * el titulo y luego productos.
     */
    .u21-magisterio-home__inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: stretch;
    }
    .u21-magisterio-home__intro {
        order: 1;
        text-align: left;
    }
    .u21-magisterio-home__content {
        order: 2;
    }
    .u21-magisterio-home__intro h2 br {
        display: none;
    }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
    .u21-magisterio-home {
        padding:30px 18px;
    }
    .u21-magisterio-home__inner {
        gap: 24px;
    }
    .u21-magisterio-home__intro h2 {
        font-size: 27px;
    }
    /*
     * CARRUSEL HORIZONTAL
     */
    .u21-magisterio-home__products {
        width:calc(100% + 18px);
        padding-right: 18px;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type:x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling:touch;
    }
    .u21-magisterio-home__products::-webkit-scrollbar {
        display: none;
    }
    .u21-magisterio-home .u21-card {
        flex:0 0 78%;
        scroll-snap-align:start;
    }
    /*
     * CTA MOBILE
     */
    .u21-magisterio-home__cta {
        margin-top: 22px;
       justify-content: center;
    }
    .u21-magisterio-home__cta a {
        width: 100%;
        justify-content: center;
        padding:14px 20px;
    }
}
/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */
@media (max-width: 480px) {
    .u21-magisterio-home .u21-card {
        flex-basis: 61%;
    }
}
/* =========================================================
   TABLET
   ======================================================== */
@media (max-width: 1024px) {
    .u21-container {
        width: calc(100% - 28px);
    }
    .u21-hero-grid {
        grid-template-columns:
            minmax(0, 2fr)
            minmax(220px, .8fr);
    }
    .u21-feature-layout,
    .u21-feature-reverse {
        grid-template-columns: 1fr;
    }
    .u21-feature-heading,
    .u21-feature-heading-right {
        padding: 0;
        text-align: left;
    }
    .u21-feature-heading h2 br {
        display: none;
    }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
    .u21-container {
        width: 100%;
    }
    /* HERO */
    .u21-hero-grid {
        grid-template-columns: 1fr;
    }
    .u21-hero-main img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .u21-hero-promos {
        grid-template-columns:
            repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .u21-promo {
        min-height: 87px;
        padding: 15px 9px;
        border-left: 0;
        border-right:
            1px solid #e5e5e2;
    }
    .u21-promo-number {
        font-size: 31px;
    }
    .u21-promo-title {
        font-size: 15px;
    }
    .u21-promo-shipping {
        font-size: 20px;
    }
    .u21-promo-subtitle {
        font-size: 12px;
    }
    .u21-promo small {
        display: none;
    }
    /* CATEGORÍAS */
    .u21-category-list {
        display: flex;
        gap: 5px;
        justify-self: auto;
        overflow-x: auto;
        scroll-snap-type:x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .u21-category-list::-webkit-scrollbar {
        display: none;
    }
    .u21-category {
        flex: 0 0 94px;
        scroll-snap-align: start;
        font-size: 10px;
    }
    .u21-category img {
        width: 42px;
        height: 42px;
    }
    /* MUJER / HOMBRE */
    .u21-gender-grid {
        gap: 9px;
    }
    .u21-gender-card img {
        height: 95px;
    }
    .u21-gender-card {
        min-height: 95px;
    }
    .u21-gender-card span {
        right: 10px;
        font-size: 15px;
    }
    /* SECCIONES PRODUCTOS */
    .u21-feature {
        padding-top: 35px;
    }
    .u21-feature-layout,
    .u21-feature-reverse {
        gap: 20px;
    }
    .u21-feature-heading h2 {
        font-size: 25px;
    }
    .u21-products {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type:
            x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .u21-products::-webkit-scrollbar {
        display: none;
    }
    .u21-product {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }
    /* UGC */
    .u21-ugc-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type:
            x mandatory;
        scrollbar-width: none;
    }
    .u21-ugc-grid::-webkit-scrollbar {
        display: none;
    }
    .u21-ugc-card {
        flex: 0 0 52%;
        scroll-snap-align: start;
    }
    /* TIRA FINAL */
    .u21-catalog-scroll {
        grid-auto-columns:
            42vw;
    }
}
/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */
@media (max-width: 480px) {
    .u21-product {
        flex-basis: 82%;
    }
    .u21-ugc-card {
        flex-basis: 65%;
    }
    .u21-catalog-scroll {
        grid-auto-columns: 58vw;
    }
}