body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f4f4f4;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px; /* Asegura que no se oculte bajo el footer */
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    animation: bounce 2s infinite;
    text-decoration: none;
    z-index: 9999; /* Asegura que esté por encima del footer */
}
/* Animación y expansión al hacer hover */
.whatsapp-float:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
    background: #1EBE5D;
}
/* Texto "Cotizar Ahora" al hacer hover */
.whatsapp-float:hover::after {
    content: " Cotizar Ahora";
    font-size: 16px;
    margin-left: 10px;
    white-space: nowrap;
    font-weight: bold;
}
/* Animación de rebote */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px; /* Ajusta la distancia del footer */
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-float:hover {
        padding: 0 15px;
        font-size: 14px;
    }
}

.title-gradient {
    text-align: center;
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 50px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff6b6b, #ffcc00, #ff6b6b);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
    animation: shimmer 5s infinite linear;
  }
  
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  