#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: 90px; /* 🔥 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.2cm !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:hover::before {
    opacity: 1;
}

.carousel-track {
    display: flex;
    gap: 10px;
    padding-left: 0;   /* 🔥 importante */
}
#alaska-slider,
.harmony-aligned {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* Ajustar SOLO la primera imagen del carrusel */
#alaska-slider .slide:first-child {
    background-position: calc(50% - 1cm) center;
}
/* Card base */
.hover-card {
    position: relative;
    overflow: hidden;
}

/* Imagen */
.hover-card img {
    width: 100%;
    display: block;
}

/* Título */
.hover-content h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}
/* ===== 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;
}

/* Imagen */
.hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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


.hover-card:hover::before {
    opacity: 1;
}
/* ===== 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;
    transition: transform 0.5s ease;
}

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

/* ===== DEGRADADO EXACTO ===== */
.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.6) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}



/* ===== CONTENIDO (MISMA POSICIÓN EXACTA) ===== */
.hover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    text-align: center;
    padding: 150px 15px 25px 15px;
    
    box-sizing: border-box;
    z-index: 2;
}

/* ===== TÍTULO (CENTRO EXACTO COMO EL EJEMPLO) ===== */
.hover-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 11px !important;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;

    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* ===== TEXTO INFERIOR (MISMO DISEÑO) ===== */
.hover-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.7;
    
    color: #ffffff;
    
    margin-top: 10px;
    margin-bottom: 0;
    
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover */
.hover-card:hover .hover-content p {
    opacity: 1;
}
/* ================= MÓVIL ================= */
@media (max-width: 768px) {

    #alaska-slider {
        width: 92%;
        height: 500px;
        margin: 0 auto;
    }

    .slide {
        display: flex;
        align-items: flex-end;
        padding: 24px;
        box-sizing: border-box;
        background-position: center !important;
    }

    /* overlay SIEMPRE visible en móvil */
    .slide.proximamente::before {
        opacity: 1;
    }

    .proximamente-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 22px;
        bottom: 32px;
    }

    /* ===== CONTENIDO DEBAJO ===== */
    .harmony-aligned {
        width: 92%;
        margin: 0 auto;
    }

    .carousel-title {
        text-align: left;
        padding-left: 4px;
         margin-left: 0;
        font-size: 18px !important;
        margin-top: 1.2cm !important;
        margin-bottom: 1cm !important;
    }

    .carousel-track {
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
    }

    .hover-card {
        width: 160px !important;
        height: 300px !important;
        min-width: 160px !important;
    }
}

