/* Estilos para los botones de chat */
.chat-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 480px) {
    .chat-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}