/* Fuente Principal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* --- Gradiente de Marca --- */
.gradient-bg {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* --- Efectos Hover en Tarjetas --- */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -6px rgba(0, 0, 0, 0.1);
}

/* --- Animaciones de Scroll --- */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación de rebote lento para elementos flotantes */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out;
}

/* --- Botón Flotante de WhatsApp --- */
.botonW {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.botonW:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Ajuste móvil para que no tape el contenido */
@media (max-width: 768px) {
    .botonW {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}