/* =========================================================
   KUESHI - HOME
========================================================= */

.kueshi-home {
    width: 100%;
    overflow: hidden;
}

/* =========================================================
   01. HOME HERO
========================================================= */

.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #D2BFE4 0%,
        #D2BFE4 92%,
        #FAF5FF 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 90px;
}

.home-hero__brand-stack {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 5;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    text-align: center;
}

.home-hero__brand {
    position: relative;
    width: 100%;
}

.home-hero__brand img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
}

.home-hero__marquee {
    position: relative;
    width: 100vw;
    margin-top: 40px;
    margin-left: calc(var(--padding-desktop) * -1);
    overflow: hidden;
    pointer-events: none;
}

.home-hero__marquee-track {
    display: flex;
    width: max-content;
    animation: homeHeroMarquee 18s linear infinite;
}

.home-hero__marquee-track span {
    display: inline-flex;
    align-items: center;
    padding-right: 18px;
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes homeHeroMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

.home-hero__brand-stack .btn-kueshi {
    pointer-events: auto;
    margin: 40px auto 0px;
}

.home-hero__media-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    width: auto;
    height: 60vh;
    max-height: 60vh;
    aspect-ratio: 0.73 / 1;
}

.home-hero__media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
}

.home-hero__video,
.home-hero__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.home-hero__media-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 44px 28px 36px;
    text-align: center;
    pointer-events: none;
}

.home-hero__claim {
    max-width: 260px;
    font-size: clamp(15px, 1.1vw, 20px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.home-hero__bottom-texts {
    position: absolute;
    left: 0;
    bottom: 82px;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 64px;
    pointer-events: none;
}

.home-hero__text {
    max-width: 360px;
    font-size: clamp(15px, 1vw, 20px);
    line-height: 1.05;
    font-weight: 700;
    color: #ffffff;
}

.home-hero__text--left {
    text-align: left;
}

.home-hero__text--right {
    text-align: right;
}

/* =========================================================
   RESPONSIVE - HOME HERO
========================================================= */

@media (max-width: 1024px) {
    .home-hero {
        padding: 110px 24px 80px;
    }

    .home-hero__media-wrap {
        width: min(48vw, 390px);
    }

    .home-hero__bottom-texts {
        padding: 0 32px;
        bottom: 56px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 100svh;
        padding: 100px 20px 150px;
    }

    .home-hero__brand {
        top: 44%;
    }

    .home-hero__brand img {
        width: 170vw;
    }

    .home-hero__marquee {
        top: 55%;
    }

    .home-hero__marquee-track span {
        font-size: 24px;
    }

    .home-hero__media-wrap {
        width: min(76vw, 340px);
        min-width: 0;
    }

    .home-hero__media-content {
        padding: 34px 22px 28px;
    }

    .home-hero__bottom-texts {
        bottom: 36px;
        flex-direction: column;
        gap: 18px;
        padding: 0 24px;
    }

    .home-hero__text {
        max-width: 100%;
        font-size: 15px;
    }

    .home-hero__text--left,
    .home-hero__text--right {
        text-align: center;
    }
}

/* =========================================================
   02. HOME LÍNEAS
========================================================= */

.home-lineas {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 120px;
    background: #FAF5FF;
}

.home-lineas__header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    margin-bottom: 100px;
}

.home-lineas__title {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 0;
    font-size: clamp(48px, 8vw, 50px);
    line-height: 0.85;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    pointer-events: none;
}

.home-lineas__title span:last-child {
    text-align: right;
}

.home-lineas__claim {
    position: absolute;
    left: 50%;
    top: 0px;
    z-index: 2;
    max-width: 360px;
    transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;
}

.home-lineas__claim p{
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.05;
    font-weight: 800;
}

@media (max-width: 767px) {
    .home-lineas {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .home-lineas__header {
        display: block;
        margin-bottom: 48px;
    }

    .home-lineas__title {
        display: block;
        font-size: clamp(52px, 18vw, 92px);
        line-height: 0.9;
    }

    .home-lineas__title span {
        display: block;
    }

    .home-lineas__title span:last-child {
        text-align: left;
    }

    .home-lineas__claim {
        position: relative;
        left: auto;
        top: auto;
        max-width: 280px;
        margin: 28px auto 0;
        transform: none;
        font-size: 18px;
    }
}

/* =========================================================
   03. HOME EXPERIENCIA
========================================================= */

.home-experiencia {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 80px;

    background:
        linear-gradient(
            180deg,
            #FAF5FF 0%,
            rgba(255, 255, 255, 0) 18%,
            rgba(255, 255, 255, 0) 82%,
            #FAF5FF 100%
        ),
        radial-gradient(
            circle at 50% 50%,
            #BEDED2 0%,
            #BEDED2 44%,
            #FAF5FF 100%
        );
}

.home-experiencia__canvas {
    position: absolute;
    left: var(--padding-desktop);
    right: var(--padding-desktop);
    top: 50%;
    z-index: 2;
    width: auto;
    height: clamp(520px, 66vh, 660px);
    transform: translateY(-50%);
}

.home-experiencia__main-image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: clamp(320px, 34vw, 560px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.home-experiencia__main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-experiencia__emoji {
    position: absolute;
    left: 62%;
    top: 76%;
    z-index: 7;
    width: clamp(54px, 6vw, 120px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.home-experiencia__emoji img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-experiencia__marquee {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;
    width: 140vw;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translate(-50%, -50%) rotate(-7deg);
    pointer-events: none;
}

.home-experiencia__marquee-row {
    width: 100%;
    overflow: hidden;
}

.home-experiencia__marquee-track {
    display: flex;
    width: max-content;
}

.home-experiencia__marquee-track span {
    display: block;
    flex: none;
    padding-right: 38px;
    font-size: clamp(28px, 4vw, 68px);
    line-height: 0.9;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-experiencia__marquee-row--left .home-experiencia__marquee-track {
    animation: homeExperienciaMarqueeLeft 24s linear infinite;
}

.home-experiencia__marquee-row--right .home-experiencia__marquee-track {
    animation: homeExperienciaMarqueeRight 24s linear infinite;
}

@keyframes homeExperienciaMarqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

@keyframes homeExperienciaMarqueeRight {
    from {
        transform: translateX(-25%);
    }

    to {
        transform: translateX(0);
    }
}

.home-experiencia__floating {
    position: absolute;
    z-index: 8;
    animation: experienciaFloating 5.5s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
    will-change: translate, rotate;
}

@keyframes experienciaFloating {
    0%,
    100% {
        translate: 0 0;
        rotate: 0deg;
    }

    50% {
        translate: 0 -12px;
        rotate: 1.5deg;
    }
}

.home-experiencia__floating:nth-child(2n) {
    --float-delay: -1.2s;
    animation-duration: 6.3s;
}

.home-experiencia__floating:nth-child(3n) {
    --float-delay: -2.4s;
    animation-duration: 4.8s;
}

.home-experiencia__floating:nth-child(4n) {
    --float-delay: -3.1s;
    animation-duration: 7s;
}

.home-experiencia__floating:nth-child(2n) {
    animation-name: experienciaFloatingAlternativo;
}

@keyframes experienciaFloatingAlternativo {
    0%,
    100% {
        translate: 0 0;
        rotate: 0deg;
    }

    50% {
        translate: 5px -9px;
        rotate: -1.5deg;
    }
}

.home-experiencia__floating--image {
    width: clamp(76px, 8vw, 128px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
}

.home-experiencia__floating--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-experiencia__floating--bubble {
    max-width: 230px;
    padding: 18px 24px;
    border-radius: 22px;
    background: #ffffff;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.15;
    color: #3f3f3f;
}

.home-experiencia__floating--bubble[class*="-izquierda"] {
    border-bottom-right-radius: 0;
}

.home-experiencia__floating--bubble[class*="-derecha"] {
    border-bottom-left-radius: 0;
}

.home-experiencia__floating--superior-izquierda {
    left: 17%;
    top: 5%;
}

.home-experiencia__floating--superior-centro {
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
}

.home-experiencia__floating--superior-derecha {
    right: 15%;
    top: 12%;
}

.home-experiencia__floating--centro-izquierda {
    left: 20%;
    top: 43%;
}

.home-experiencia__floating--centro-derecha {
    right: 18%;
    top: 45%;
}

.home-experiencia__floating--inferior-izquierda {
    left: 8%;
    bottom: 12%;
}

.home-experiencia__floating--inferior-centro {
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
}

.home-experiencia__floating--inferior-derecha {
    right: 8%;
    bottom: 14%;
}

.home-experiencia__cta {
    position: absolute;
    left: 50%;
    bottom: 60px;
    z-index: 10;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
}

@media (max-width: 1024px) {
    .home-experiencia {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .home-experiencia__canvas {
        min-height: 600px;
    }

    .home-experiencia__main-image {
        width: min(48vw, 460px);
    }

    .home-experiencia__floating--centro-izquierda {
        left: 10%;
    }

    .home-experiencia__floating--centro-derecha {
        right: 10%;
    }
}

@media (max-width: 767px) {
    .home-experiencia {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-experiencia__canvas {
        min-height: 680px;
    }

    .home-experiencia__main-image {
        top: 44%;
        width: min(78vw, 390px);
    }

    .home-experiencia__emoji {
        left: 68%;
        top: 64%;
    }

    .home-experiencia__marquee {
        top: 46%;
        width: 160vw;
    }

    .home-experiencia__marquee-track span {
        font-size: 36px;
    }

    .home-experiencia__floating--image {
        width: 82px;
    }

    .home-experiencia__floating--bubble {
        max-width: 170px;
        padding: 14px 18px;
        font-size: 13px;
    }

    .home-experiencia__floating--superior-izquierda {
        left: 0;
        top: 3%;
    }

    .home-experiencia__floating--superior-derecha {
        right: 0;
        top: 8%;
    }

    .home-experiencia__floating--centro-izquierda {
        left: 0;
        top: 57%;
    }

    .home-experiencia__floating--centro-derecha {
        right: 0;
        top: 57%;
    }

    .home-experiencia__floating--inferior-izquierda {
        left: 2%;
        bottom: 4%;
    }

    .home-experiencia__floating--inferior-derecha {
        right: 2%;
        bottom: 6%;
    }

    .home-experiencia__cta {
        margin-top: 0;
    }
}


/* =========================================================
   04. HOME NATURALIDAD
========================================================= */

.home-naturalidad {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 110px;
    background: #FAF5FF;
}

.home-naturalidad__header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 70px;
}

.home-naturalidad__title {
    max-width: 512px;
    margin: 0;
    font-size: clamp(48px, 8vw, 50px);
    line-height: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.home-naturalidad__description {
    max-width: 430px;
    padding-bottom: 10px;
    line-height: 1.12;
}

@media (max-width: 1024px) {
    .home-naturalidad__header {
        gap: 20px;
        margin-bottom: 56px;
    }

    .home-naturalidad__description {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .home-naturalidad__header {
        gap: 18px;
        margin-bottom: 42px;
    }

    .home-naturalidad__title {
        font-size: clamp(46px, 14vw, 74px);
        line-height: 0.9;
    }

    .home-naturalidad__description {
        font-size: 17px;
    }
}

/* =========================================================
   05. HOME NOVEDAD DESTACADA
========================================================= */

.home-novedad {
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
padding-top: 100px;
padding-bottom: 80px;

background: linear-gradient(
    180deg,
    #FAF5FF 0%,
    #C3E1F5 50%,
    #FAF5FF 100%
);

}


.home-novedad__background {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-novedad__background img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.home-novedad__content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-novedad__stage {
    position: relative;
    width: 100%;
    min-height: 620px;
}

.home-novedad__product {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: clamp(250px, 25vw, 430px);
    transform: translate(-50%, -50%);
}

.home-novedad__product img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   CLAIMS
========================================================= */

.home-novedad__claim {
    position: absolute;
    max-width: 280px;
    padding: 18px 26px;

    border: 3px solid #81CDFF;
    border-radius: 44px;

    background: #ffffff;

    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.15;
    font-weight: 700;
    color: #81CDFF;
    text-align: center;

    box-shadow: 0 16px 32px rgba(129, 205, 255, 0.12);

    pointer-events: none;

    animation: homeNovedadClaimFloat 5.5s ease-in-out infinite;
    animation-delay: var(--claim-delay, 0s);

    will-change: translate, rotate;
}

.home-novedad__claim {
    position: absolute;
    max-width: 280px;
    padding: 18px 24px;
    border-radius: 24px;
    background: #ffffff;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.1;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 16px 32px rgba(93, 69, 113, 0.08);
}

.home-novedad__claim--posicion-1 {
    left: 10%;
    top: 12%;
    transform: rotate(-4deg);
    --claim-delay: 0s;
}

.home-novedad__claim--posicion-2 {
    right: 8%;
    top: 16%;
    transform: rotate(4deg);
    --claim-delay: -1.3s;
}

.home-novedad__claim--posicion-3 {
    left: 8%;
    bottom: 15%;
    transform: rotate(3deg);
    --claim-delay: -2.6s;
}

.home-novedad__claim--posicion-4 {
    right: 10%;
    bottom: 12%;
    transform: rotate(-3deg);
    --claim-delay: -3.8s;
}

@keyframes homeNovedadClaimFloat {
    0%,
    100% {
        translate: 0 0;
        rotate: 0deg;
    }

    50% {
        translate: 0 -10px;
        rotate: 1deg;
    }
}

/* =========================================================
   CTA
========================================================= */

.home-novedad__cta {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .home-novedad {
        min-height: 820px;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .home-novedad__content {
        min-height: 670px;
    }

    .home-novedad__stage {
        min-height: 560px;
    }

    .home-novedad__product {
        width: min(38vw, 360px);
    }

    .home-novedad__claim {
        max-width: 220px;
        padding: 16px 20px;
    }

    .home-novedad__claim--posicion-1 {
        left: 3%;
    }

    .home-novedad__claim--posicion-2 {
        right: 3%;
    }

    .home-novedad__claim--posicion-3 {
        left: 2%;
    }

    .home-novedad__claim--posicion-4 {
        right: 2%;
    }
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 767px) {
    .home-novedad {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 60px;
    }

    .home-novedad__background {
        top: 32%;
        width: 170%;
    }

    .home-novedad__content {
        min-height: auto;
    }

    .home-novedad__stage {
        min-height: 720px;
    }

    .home-novedad__product {
        top: 46%;
        width: min(68vw, 320px);
    }

    .home-novedad__claim {
        max-width: 160px;
        padding: 13px 16px;
        border-radius: 18px;
        font-size: 12px;
    }

    .home-novedad__claim--posicion-1 {
        left: 0;
        top: 4%;
    }

    .home-novedad__claim--posicion-2 {
        right: 0;
        top: 16%;
    }

    .home-novedad__claim--posicion-3 {
        left: 0;
        bottom: 16%;
    }

    .home-novedad__claim--posicion-4 {
        right: 0;
        bottom: 4%;
    }

    .home-novedad__cta {
        margin-top: 0;
    }
}

/* =========================================================
   06. HOME RUTINA
========================================================= */

.home-rutina {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 100px;
    background: #FAF5FF;
}

.home-rutina__inner {
    position: relative;
    width: 100%;
}

.home-rutina__title {
    max-width: 400px;
    margin: 0 auto 64px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.home-rutina__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

.home-rutina__card {
    position: relative;
    display: block;
    min-height: 610px;
    overflow: hidden;
    border-radius: 26px;
    color: inherit;
    text-decoration: none;
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--rutina-color) 20%, #ffffff) 0%,
        color-mix(in srgb, var(--rutina-color) 55%, #ffffff) 48%,
        var(--rutina-color) 100%
    );
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    isolation: isolate;
}

.home-rutina__card-media {
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 3;
    width: 70%;
    transform: translate(-50%, -50%);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-rutina__product-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 390px;
    object-fit: contain;
}

.home-rutina__card-claim {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    width: calc(100% - 52px);
    transform: translateX(-50%);
    font-size: clamp(24px, 1.15vw, 42px);
    line-height: 0.96;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.home-rutina__card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: auto;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rutina-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.9);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease;
}

.home-rutina__card-arrow img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    transform: translate(3px, -2px);
}

@media (hover: hover) {
    .home-rutina__card:hover .home-rutina__card-arrow {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

.home-rutina__cta {
    display: flex;
    justify-content: center;
    margin-top: 84px;
}

@media (hover: hover) {
    .home-rutina__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(93, 69, 113, 0.14);
    }

    .home-rutina__card:hover .home-rutina__card-media {
        transform:
            translate(-50%, -52%)
            scale(1.045);
    }

/*    .home-rutina__card:hover .home-rutina__card-arrow {
        transform: rotate(45deg);
        background: var(--rutina-color);
        color: #ffffff;
    }*/
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .home-rutina {
        padding-top: 90px;
        padding-bottom: 84px;
    }

    .home-rutina__title {
        margin-bottom: 52px;
    }

    .home-rutina__cards {
        gap: 14px;
    }

    .home-rutina__card {
        min-height: 520px;
        border-radius: 22px;
    }

    .home-rutina__card-claim {
        top: 28px;
        width: calc(100% - 36px);
        font-size: clamp(21px, 2.8vw, 32px);
    }

    .home-rutina__card-media {
        width: min(78%, 290px);
    }

    .home-rutina__product-image {
        max-height: 350px;
    }

    .home-rutina__card-arrow {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }

    .home-rutina__cta {
        margin-top: 70px;
    }
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 767px) {
    .home-rutina {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-rutina__title {
        margin-bottom: 38px;
        font-size: clamp(46px, 14vw, 74px);
        line-height: 0.9;
    }

    .home-rutina__cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-rutina__card,
    .home-rutina__card--posicion-1,
    .home-rutina__card--posicion-2,
    .home-rutina__card--posicion-3 {
        min-height: 520px;
        transform: none;
    }

    .home-rutina__card-claim {
        top: 28px;
        font-size: 30px;
    }

    .home-rutina__card-media {
        top: 55%;
        width: min(72%, 300px);
    }

    .home-rutina__card-arrow {
        right: 20px;
        bottom: 20px;
    }

    .home-rutina__cta {
        margin-top: 44px;
    }
}

/* =========================================================
   07. HOME INSTAGRAM
========================================================= */

.home-instagram {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 90px;
    background: #FAF5FF;
}


/* Cabecera
========================================================= */

.home-instagram__header {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 70px;
    padding-right: 40px;
    padding-left: 40px;
}

.home-instagram__title {
    margin: 0;
    color: #A480C6;
    text-transform: uppercase;
}

.home-instagram__title--right {
    text-align: right;
}


/* Galería
========================================================= */

.home-instagram__gallery-stage {
    position: relative;
    width: 100%;
}

.home-instagram__gallery {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}


/* Texto serpiente
========================================================= */

.home-instagram__snake {
    position: absolute;
    left: 0;
    bottom: -48px;
    z-index: 5;
    width: 100%;
    pointer-events: none;
}


/* CTA
========================================================= */

.home-instagram__cta {
    position: relative;
    z-index: 6;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 90px;
    padding-right: 40px;
    padding-left: 40px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home-instagram {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .home-instagram__header {
        margin-bottom: 56px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .home-instagram__snake {
        bottom: -34px;
    }

    .home-instagram__cta {
        margin-top: 74px;
        padding-right: 24px;
        padding-left: 24px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 767px) {

    .home-instagram {
        padding-top: 72px;
        padding-bottom: 70px;
    }

    .home-instagram__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 42px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-instagram__title--right {
        width: 100%;
        text-align: right;
    }

    .home-instagram__snake {
        bottom: -20px;
    }

    .home-instagram__cta {
        margin-top: 64px;
        padding-right: 20px;
        padding-left: 20px;
    }

}
/* Cabecera de colecciones: tres zonas en línea hasta el salto móvil. */
@media (min-width: 1000px) {
    #kueshi-home #home-lineas .home-lineas__header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); align-items: center; column-gap: 20px; }
    #kueshi-home #home-lineas .home-lineas__title { display: contents; font-size: clamp(28px, 3.05vw, 50px); line-height: 1; }
    #kueshi-home #home-lineas .home-lineas__title span:first-child { grid-column: 1; grid-row: 1; text-align: left; }
    #kueshi-home #home-lineas .home-lineas__title span:last-child { grid-column: 3; grid-row: 1; text-align: right; }
    #kueshi-home #home-lineas .home-lineas__claim { position: static; transform: none; grid-column: 2; grid-row: 1; width: 100%; max-width: none; margin: 0; }
    #kueshi-home #home-lineas .home-lineas__claim p { font-size: clamp(13px, 1.3vw, 20px); margin: 0; padding: 0; }
}
@media (min-width: 768px) and (max-width: 999px) {
    #kueshi-home #home-lineas .home-lineas__header { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    #kueshi-home #home-lineas .home-lineas__title { display: flex; flex-direction: column; gap: 0; font-size: 32px; line-height: 1.05; text-align: center; }
    #kueshi-home #home-lineas .home-lineas__title span:last-child { text-align: center; }
    #kueshi-home #home-lineas .home-lineas__claim { position: static; transform: none; margin: 0; max-width: 340px; }
    #kueshi-home #home-lineas .home-lineas__claim p { padding: 0; margin: 0; font-size: 16px; line-height: 1.12; }
}

/* Color de cada colección únicamente en las flechas de la home. */
#kueshi-home #home-lineas .carrusel-circular__arrow {
    background: var(--carrusel-color-coleccion, #BFA3D9);
}

