/* Carrusel Principal */
.carrusel-contenedor {
    position: relative;
    width: 96%;
    margin: 0 auto;
    height: 80vh;
    overflow: hidden;
    background: #000;
}

/* Contenedor de slides */
.carrusel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    /* display: flex; */
}

/* Estilos individuales del slide */
.carrusel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrusel-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Contenido del slide */
.carrusel-contenido {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Títulos del slide */
.carrusel-titulo {
    font-size: 4em;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    font-style: italic;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.carrusel-subtitulo {
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 15px 0 0 0;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

/* Botones de navegación */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.carrusel-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carrusel-prev {
    left: 30px;
}

.carrusel-next {
    right: 30px;
}

/* Indicadores (dots) */
.carrusel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .carrusel-titulo {
        font-size: 2.5rem;
    }

    .carrusel-subtitulo {
        font-size: 1.2rem;
    }

    .carrusel-btn {
        font-size: 1.8rem;
        padding: 10px 15px;
    }

    .carrusel-prev {
        left: 15px;
    }

    .carrusel-next {
        right: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .carrusel-dots {
        bottom: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .carrusel-titulo {
        font-size: 1.8rem;
    }

    .carrusel-subtitulo {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .carrusel-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }

    .carrusel-prev {
        left: 10px;
    }

    .carrusel-next {
        right: 10px;
    }
} @media (min-width: 1024px) {
    .carrusel-titulo {
        font-size: 3em;
    }
    .carrusel-subtitulo {
        font-size: 1.2em;
    }
}
