.btn-fixed-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

/* Botones individuales */
.btn-fixed {
    width: 60px;
    height: 60px;
    background: #fadcde;
    color: #000;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 300ms ease;
    cursor: pointer;
}

.btn-fixed:hover {
    background: #eaf2e3;
    transform: scale(1.05);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .btn-fixed {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .btn-fixed-group {
        gap: 10px;
        bottom: 20px;
        right: 20px;
    }
}