/* Configuración base */
body {
    background-color: #FFFFFF;
    color: #344054;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Animaciones de entrada (Fade In Up) */
.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos Industriales para Tarjetas (Cards) */
.industry-card {
    transition: all 0.3s ease;
    border: 1px solid #E4E7EC;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: #004EEB;
}

/* Patrón de Fondo para el Hero */
.hero-pattern {
    background-color: #101828;
    background-image: radial-gradient(#1D2939 1px, transparent 1px);
    background-size: 30px 30px;
}

.btn.whatsapp {
    background-color: ##004EEB;  /* verde WhatsApp */
    color: #ffffff;
    
    transition: all 0.25s ease;
}

.icono-whatsapp {
    width: 48px;
    height: auto;   /* mantiene proporción */
}

.whatsapp-fixed {
    position: fixed;     /* clave para que se quede tomando el viewport como referencia */
    bottom: 20px;        /* lo ubican a 20px del borde inferior */
    left: 20px;         /* lo ubican a 20px del borde derecho */
    z-index: 1000;       /* para asegurarse que está por encima de otros elementos */
}

.whatsapp-fixed img {
    width: 60px;
    height: auto;
}