.home {
    margin: 0;
    padding: 0;
    width: 100%;
}

#hero-section {
    width: 100%;
    height: 100vh; /* Ocupar toda la altura de la ventana */
    min-height: 600px; /* Altura mínima para dispositivos pequeños */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.home .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.home .row {
    margin: 0;
}

.home .col-12 {
    padding: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    padding: 0 5%;
}

.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero__slide.active {
    opacity: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    color: white;
}

.hero__content h2 {
    margin: 0 0 20px 0;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__content h2 sub {
    font-size: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 15px;
    vertical-align: middle;
}

.hero__content p {
    margin: 0 0 30px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 80%;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: rgba(255, 85, 165, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-btn-more:hover {
    background-color: rgba(255, 85, 165, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.hero-btn-more i {
    margin-right: 10px;
    font-size: 16px;
}

/* Estilos para flechas de navegación */
.splide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.splide__arrow {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.7;
    outline: none;
    position: absolute;
}

.splide__arrow--prev {
    left: 20px;
}

.splide__arrow--next {
    right: 20px;
}

.splide__arrow:hover {
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.splide__arrow svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.splide__arrow--prev svg {
    transform: translateX(-2px);
}

.splide__arrow--next svg {
    transform: translateX(2px);
}

.splide__arrow:hover svg {
    transform: scale(1.2);
}

.splide__arrow--prev:hover svg {
    transform: translateX(-4px) scale(1.2);
}

.splide__arrow--next:hover svg {
    transform: translateX(4px) scale(1.2);
}

/* Clases adicionales para compatibilidad */
.hero__arrow, .hero__arrows {
    pointer-events: auto;
}

.hero__arrow {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
}

.hero__arrow--prev {
    left: 20px;
}

.hero__arrow--next {
    right: 20px;
}

.hero__arrow:hover {
    background: rgba(255,255,255,0.4);
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .hero__content {
        max-width: 70%;
    }

    .hero__content h2 {
        font-size: 2.5rem;
    }

    .hero__content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero__content {
        max-width: 90%;
        text-align: center;
    }

    .hero__slide::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    }

    .hero__content h2 {
        font-size: 2rem;
    }

    .hero__content p {
        max-width: 100%;
    }

    /* Ajustar tamaño y posición de flechas en móviles */
    .splide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .splide__arrow--prev {
        left: 10px;
    }
    
    .splide__arrow--next {
        right: 10px;
    }
    
    .splide__arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero__arrow--prev {
        left: 10px;
    }
    
/* Estilos para forzar interactividad del botón Ver más */
.hero__slide {
    pointer-events: auto !important;
}

.hero__content {
    pointer-events: auto !important;
}

.hero__actions {
    pointer-events: auto !important;
}

.hero__actions .btn-more {
    position: relative;
    z-index: 100 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.hero__actions .btn-more i {
    pointer-events: none;
}