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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Aplicar animaciones limpias al contenido */
.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content .description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.buttons-group {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.support-text {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.animated-phrases {
    animation: 
        fadeInUp 1s ease-out 1s both,
        float 8s ease-in-out infinite 2s;
}

/* Efectos hover suaves */
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
}

.support-text a {
    transition: all 0.3s ease;
}

/* Animaciones de entrada para mobile */
@media (max-width: 968px) {
    .hero-content {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .hero-content h1 {
        animation: fadeInUp 0.6s ease-out 0.1s both;
    }
    
    .hero-content .description {
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }
    
    .buttons-group {
        animation: fadeInUp 0.6s ease-out 0.3s both;
    }
    
    .support-text {
        animation: fadeInUp 0.6s ease-out 0.4s both;
    }
    
    .animated-phrases {
        animation: 
            fadeInUp 0.8s ease-out 0.5s both,
            float 10s ease-in-out infinite 1s;
    }
}

/* Transiciones responsive */
.content-container,
.left-section,
.right-section {
    transition: all 0.3s ease;
}

/* Animación de carga limpia */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-wrapper {
    animation: pageLoad 0.8s ease-out;
}

/* Efecto breathing sutil en el logo */
.logo-container {
    animation: float 6s ease-in-out infinite;
}

/* Respeto por las preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animated-phrases {
        animation: none;
    }
    
    .phrases-container {
        animation: scrollUp 60s linear infinite;
    }
} 