/* Reset para eliminar márgenes no deseados */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Estilos del carrusel full-screen */
.section-carousel {
    width: 100%;
    height: 750px; /* Ocupa toda la altura visible */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Enfoca la imagen hacia la parte inferior */
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
}

.carousel-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

.accent {
    color: #e63946;
    font-weight: 700;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #e63946;
    transform: scale(1.3);
}

/* Ajustes responsive */
@media (max-width: 1024px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .carousel-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-content {
        padding: 1.2rem;
    }
    
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .carousel-description {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        bottom: 1.5rem;
    }
}