.servicios-prominents-container {
    margin: 2rem 0;
    padding: 0 1rem;
}

.servicios-prominents-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 50px 0;
}

.servicio-prominent-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26, 43, 92, 0.1);
    transition: all 0.3s ease;
    height: 400px;
    position: relative;
    cursor: pointer;
}

.servicio-prominent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/pruebaTours.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.servicio-prominent-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    transition: all 0.4s ease;
    z-index: 1;
}

.servicio-prominent-card:hover .servicio-prominent-overlay {
    top: 0;
}

.servicio-prominent-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.servicio-prominent-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    width: 90%;
}

.servicio-prominent-card:hover .servicio-prominent-content {
    opacity: 0;
}

.servicio-prominent-card:hover .servicio-prominent-hover-content {
    opacity: 1;
}

.servicio-prominent-nombre,
.servicio-prominent-hover-nombre {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.servicio-prominent-hover-nombre {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.servicio-prominent-duracion,
.servicio-prominent-hover-duracion {
    margin-bottom: 1rem;
}

.duracion-prominent-badge,
.duracion-prominent-hover-badge {
    background: linear-gradient(135deg, var(--color-skyparce), var(--color-blueparce));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.duracion-prominent-hover-badge {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.servicio-prominent-precio,
.servicio-prominent-hover-precio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.servicio-prominent-hover-precio {
    align-items: center;
}

.precio-prominent-label,
.precio-prominent-hover-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.precio-prominent-hover-label {
    font-size: 1rem;
}

.precio-prominent-valor,
.precio-prominent-hover-valor {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-orangeparce);
}

.precio-prominent-hover-valor {
    font-size: 2rem;
}

.swiper-pagination-bullet {
    background: var(--color-skyparce);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-orangeparce);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-skyparce);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,1);
    color: var(--color-orangeparce);
}

@media (max-width: 768px) {
    .servicio-prominent-card {
        height: 350px;
    }

    .servicio-prominent-content {
        padding: 1rem;
    }

    .servicio-prominent-nombre,
    .servicio-prominent-hover-nombre {
        font-size: 1.5rem;
    }

    .servicio-prominent-hover-nombre {
        font-size: 1.55rem;
    }

    .precio-prominent-valor,
    .precio-prominent-hover-valor {
        font-size: 1.25rem;
    }

    .precio-prominent-hover-valor {
        font-size: 1.5rem;
    }
}