.fcb-floating-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fcb-button {
    width: 150px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
}

.fcb-button:hover,
.fcb-button:focus {
    transform: translateX(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    opacity: 0.96;
    color: #ffffff;
    text-decoration: none;
}

.fcb-button-call {
    background: #043d64;
}

.fcb-button-whatsapp {
    background: #25d366;
}

.fcb-button-form {
    background: #e65f2b;
}

.fcb-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fcb-text {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .fcb-floating-buttons {
        right: 12px;
        bottom: 20px;
        top: auto;
        transform: none;
        gap: 10px;
    }

    .fcb-button {
        width: 140px;
        min-height: 48px;
        font-size: 14px;
        padding: 10px 14px;
    }
}
