/* Align hero content vertically with carousel dots */
.hero-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}
/* ============= HERO SECTION MEJORADO ============= */

/* Overlay con gradiente para mejor legibilidad */
.hero-slider-section .item {
    position: relative;
}

.hero-slider-section .hero-equal-height {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-slider-section .hero-equal-height::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(106, 13, 173, 0.75) 0%, 
        rgba(255, 140, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-slider-section .container {
    position: relative;
    z-index: 2;
}

/* Título mejorado con animación */

.hero-content-wrap h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 16px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .hero-content-wrap h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content-wrap h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 991px) {
    .hero-content-wrap h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-content-wrap h1 {
        font-size: 2.2rem;
    }
}

/* Subtítulo con estilo */
.hero-content-wrap .lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@media (max-width: 768px) {
    .hero-content-wrap .lead-text {
        font-size: 1.1rem;
    }
}

/* Botones de acción mejorados */

.hero-action-btns {
    display: flex;
    gap: 0rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

    

@media (max-width: 576px) {
    .hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-action-btns {
        flex-direction: column;
    }
}

/* Badge o etiqueta destacada */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejora del carrusel */



/* Iconos decorativos flotantes */
.hero-content-wrap .feature-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: #FFD700;
}

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-content-wrap .feature-icons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Efecto de partículas o decoración */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-decoration::before,
.hero-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.hero-decoration::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.hero-decoration::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Altura mínima mejorada - todas las slides igual altura */
.hero-equal-height {
    min-height: 650px;
    height: 650px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-equal-height {
        min-height: 550px;
        height: 550px;
    }
}

@media (max-width: 768px) {
    .hero-equal-height {
        min-height: 500px;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .hero-equal-height {
        min-height: 450px;
        height: 450px;
    }
}
