/* ============================================
   LANDING EL SALVADOR - ESTILOS ADICIONALES
   ============================================ */

/* Hero centrado */
#hero {
    justify-content: center !important;
}

.hero-content {
    justify-content: center !important;
    padding-left: 0 !important;
}

.hero-text {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 850px !important;
}

.hero-text h1, 
.hero-text p {
    text-align: center !important;
    width: 100% !important;
}

/* Efectos hover mejorados */
.card-flotante, .step-box-light {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto de glow para botones */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Efecto parallax en hero */
#hero {
    background-attachment: fixed;
    background-size: cover;
}

/* AOS animation */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    #hero {
        background-attachment: scroll;
    }
    .hero-text h1 {
        font-size: 2rem !important;
    }
    .purple-title {
        font-size: 1.8rem !important;
    }
    .contact-form-wrapper {
        padding: 40px 20px !important;
    }
}

/* Animación de carga */
body {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}