#alaska-slider {
    width: 1238px;
    height: 600px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.slider-container {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide.proximamente::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.9) 100%
    );
    opacity: 0;
    transition: 0.4s;
}

.slide.proximamente:hover::before {
    opacity: 1;
}

.proximamente-text {
    position: absolute;
    bottom: 120px; /* 🔥 más arriba */
    width: 100%;
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.slide.proximamente:hover .proximamente-text {
    opacity: 1;
    transform: translateY(0);
}

.harmony-aligned {
    width: 1238px;              /* 🔥 igual que el carrusel */
    margin: 0 auto;             /* 🔥 centrado exacto */
    font-family: 'Poppins', sans-serif;
    position: relative;
    left: 0;                    /* 🔥 quitamos el desfase */
}
.carousel-title {
    font-size: 22px !important;
    font-weight: 700 !important;

    margin-top: 1.7cm !important;     /* 🔥 arriba */
    margin-bottom: 1.4cm !important;  /* 🔥 abajo */

    text-align: left; /* opcional */
}

.carousel-wrapper {
    margin-bottom: 40px;
}

.carousel-track {
    display: flex;
    gap: 10px;
}

/* ===== CARD ===== */
.hover-card {
    width: 190px !important; 
    height: 337px !important;
    min-width: 190px !important;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.hover-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;

    /* 🔥 ZOOM MÁS LENTO */
    transition: transform 1.2s ease;
}

.hover-card:hover img {
    transform: scale(1.1);
}

/* ===== DEGRADADO NEGRO (ANTES AZUL) ===== */
.hover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease; /* 🔥 más suave */
    z-index: 1;
}
.hover-card:hover::before {
    opacity: 1;
}

.hover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;

    justify-content: flex-end;   /* 🔥 lo manda abajo */
    align-items: center;         /* 🔥 centrado horizontal */

    text-align: center;

    padding: 0 15px 25px 15px;   /* 🔥 espacio inferior */
    box-sizing: border-box;

    z-index: 2;
}
.hover-content p {
    line-height: 1.6;
}
.hover-content h3 {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}
.hover-content h3 {
    display: none;
}

.hover-content p {
    font-size: 12px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.hover-card:hover .hover-content p {
    opacity: 1;
    transform: translateY(0);
}
.carousel-track {
    display: flex;
    gap: 10px;
    padding-left: 0;   /* 🔥 importante */
}
#alaska-slider,
.harmony-aligned {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
