.hsc-section {
    --hsc-accent: #ff1534;
    width: 100%;
    padding: 14px 20px 30px;
    box-sizing: border-box;
    background: transparent;
    color: #111111;
font-family: "Poppins", sans-serif;
}

.hsc-section * {
    box-sizing: border-box;
}

.hsc-inner {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.hsc-title {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
}

.hsc-intro {
    max-width: 1370px;
    margin: 0 auto 24px;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
}

.hsc-intro p {
    margin: 0 0 16px;
}

.hsc-carousel {
    position: relative;
    min-height: 420px;
}

.hsc-stage {
    position: relative;
    height: 300px;
    overflow: visible;
    perspective: 1400px;
}

.hsc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}

.hsc-card {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 180px;
    height: 180px;
    overflow: hidden;
    background: #03131d;
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease,
        z-index 0.45s step-end;
}

.hsc-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hsc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        #073a4c 0%,
        #021018 70%
    );
    color: #00e5ff;
    font-size: 70px;
    font-weight: 300;
}

.hsc-copy {
    position: absolute;
    top: 322px;
    left: 50%;
    width: min(900px, 90%);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.hsc-copy h3 {
    margin: 0 0 13px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.hsc-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.hsc-slide.is-active {
    z-index: 20;
    pointer-events: auto;
}

.hsc-slide.is-active .hsc-card {
    z-index: 20;
    opacity: 1;
    filter: none;
    transform: translateX(-50%) scale(1.18);
}

.hsc-slide.is-active .hsc-copy {
    opacity: 1;
}

.hsc-slide.is-left-1 .hsc-card {
    z-index: 15;
    opacity: 0.96;
    transform: translateX(calc(-50% - 150px)) scale(0.92);
}

.hsc-slide.is-right-1 .hsc-card {
    z-index: 15;
    opacity: 0.96;
    transform: translateX(calc(-50% + 150px)) scale(0.92);
}

.hsc-slide.is-left-2 .hsc-card {
    z-index: 10;
    opacity: 0.9;
    transform: translateX(calc(-50% - 270px)) scale(0.76);
}

.hsc-slide.is-right-2 .hsc-card {
    z-index: 10;
    opacity: 0.9;
    transform: translateX(calc(-50% + 270px)) scale(0.76);
}

.hsc-slide.is-left-3 .hsc-card {
    z-index: 5;
    opacity: 0.8;
    transform: translateX(calc(-50% - 365px)) scale(0.63);
}

.hsc-slide.is-right-3 .hsc-card {
    z-index: 5;
    opacity: 0.8;
    transform: translateX(calc(-50% + 365px)) scale(0.63);
}

.hsc-slide.is-hidden .hsc-card {
    opacity: 0;
    transform: translateX(-50%) scale(0.45);
}

.hsc-arrow {
    position: absolute;
    top: 105px;
    z-index: 40;
    width: 52px;
    height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hsc-accent);
    font-size: 66px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hsc-arrow:hover {
    transform: scale(1.08);
}

.hsc-prev {
    left: 18px;
}

.hsc-next {
    right: 18px;
}

.hsc-dots {
    position: absolute;
    top: 266px;
    left: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
}

.hsc-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7d7d7;
    cursor: pointer;
}

.hsc-dot.is-active {
    background: #8a8a8a;
    transform: scale(1.08);
}

/* Tablet */
@media (max-width: 900px) {
    .hsc-section {
        padding: 18px 14px 28px;
    }

    .hsc-title {
        margin-bottom: 18px;
        font-size: 25px;
    }

    .hsc-intro {
        margin-bottom: 18px;
        font-size: 14px;
        text-align: left;
    }

    .hsc-carousel {
        min-height: 450px;
        padding: 0 32px;
    }

    .hsc-stage {
        height: 310px;
    }

    .hsc-card {
        top: 42px;
        width: 145px;
        height: 145px;
    }

    .hsc-slide.is-active .hsc-card {
        transform: translateX(-50%) scale(1.08);
    }

    .hsc-slide.is-left-1 .hsc-card {
        transform: translateX(calc(-50% - 105px)) scale(0.82);
    }

    .hsc-slide.is-right-1 .hsc-card {
        transform: translateX(calc(-50% + 105px)) scale(0.82);
    }

    .hsc-slide.is-left-2 .hsc-card {
        opacity: 0.65;
        transform: translateX(calc(-50% - 180px)) scale(0.6);
    }

    .hsc-slide.is-right-2 .hsc-card {
        opacity: 0.65;
        transform: translateX(calc(-50% + 180px)) scale(0.6);
    }

    .hsc-slide.is-left-3 .hsc-card,
    .hsc-slide.is-right-3 .hsc-card {
        opacity: 0;
    }

    .hsc-copy {
        top: 300px;
        width: 94%;
    }

    .hsc-copy h3 {
        font-size: 16px;
    }

    .hsc-copy p {
        font-size: 14px;
    }

    .hsc-arrow {
        top: 85px;
        width: 32px;
        font-size: 54px;
    }

    .hsc-prev {
        left: 0;
    }

    .hsc-next {
        right: 0;
    }

    .hsc-dots {
        top: 250px;
    }
}

/* Móvil */
@media (max-width: 520px) {
    .hsc-title {
        font-size: 22px;
    }

    .hsc-carousel {
        min-height: 500px;
        padding: 0 22px;
    }

    .hsc-stage {
        height: 335px;
    }

    .hsc-card {
        top: 50px;
        width: 128px;
        height: 128px;
    }

    .hsc-slide.is-left-1 .hsc-card {
        transform: translateX(calc(-50% - 82px)) scale(0.72);
    }

    .hsc-slide.is-right-1 .hsc-card {
        transform: translateX(calc(-50% + 82px)) scale(0.72);
    }

    .hsc-slide.is-left-2 .hsc-card,
    .hsc-slide.is-right-2 .hsc-card {
        opacity: 0;
    }

    .hsc-copy {
        top: 315px;
        width: 100%;
    }

    .hsc-copy h3 {
        font-size: 15px;
    }

    .hsc-copy p {
        font-size: 13px;
    }

    .hsc-dots {
        top: 255px;
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }
}