.fcb-container {
position: fixed;
bottom: 30px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 12px;
pointer-events: none;
}
.fcb-bottom-right {
right: 30px;
}
.fcb-bottom-left {
left: 30px;
}
.fcb-button {
width: 56px;
height: 56px;
border-radius: 50%;
background-color: var(--fcb-bg, #1e8aff);
color: var(--fcb-icon, #ffffff);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
text-decoration: none;
transition: background-color 0.2s ease, color 0.2s ease;
pointer-events: auto;
border: none;
outline: none;
} .fcb-button:hover,
.fcb-button:focus-visible {
background-color: var(--fcb-bg-hover, var(--fcb-bg, #1e8aff));
color: var(--fcb-icon-hover, var(--fcb-icon, #ffffff));
}
.fcb-button:focus-visible {
outline: 2px solid var(--fcb-icon, #ffffff);
outline-offset: 3px;
}
.fcb-button svg {
width: 28px;
height: 28px;
fill: currentColor;
} .fcb-button .fcb-label {
display: none;
} .fcb-button.fcb-whatsapp,
.fcb-button.fcb-whatsapp:hover,
.fcb-button.fcb-whatsapp:focus-visible {
color: #ffffff;
}
.fcb-button.fcb-whatsapp {
background-color: #25D366;
}
.fcb-button.fcb-whatsapp:hover,
.fcb-button.fcb-whatsapp:focus-visible {
background-color: #1ebe5d;
} .fcb-button.fcb-cta {
width: auto;
height: 56px;
padding: 0 22px;
border-radius: 28px;
flex-direction: row;
gap: 10px;
}
.fcb-button.fcb-cta .fcb-label {
display: inline;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.01em;
white-space: nowrap;
}
.fcb-button.fcb-cta svg {
width: 22px;
height: 22px;
flex-shrink: 0;
} @media (max-width: 1024px) and (min-width: 769px) {
.fcb-container {
bottom: 24px;
gap: 10px;
}
.fcb-bottom-right { right: 24px; }
.fcb-bottom-left  { left: 24px; }
} @media (max-width: 767px) { .fcb-container {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
flex-direction: row;
gap: 0;
padding: 0;
box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
background-color: var(--fcb-bg, #1e8aff);
} .fcb-bottom-right,
.fcb-bottom-left {
right: 0;
left: 0;
} .fcb-button {
flex: 1 1 0;
width: auto;
height: auto;
min-height: 64px;
border-radius: 0;
box-shadow: none;
flex-direction: column;
gap: 4px;
padding: 10px 6px;
background-color: var(--fcb-bg, #1e8aff);
color: var(--fcb-icon, #ffffff);
} .fcb-button:hover,
.fcb-button:focus-visible {
background-color: var(--fcb-bg-hover, var(--fcb-bg, #1e8aff));
color: var(--fcb-icon-hover, var(--fcb-icon, #ffffff));
box-shadow: none;
} .fcb-button + .fcb-button {
border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.fcb-button svg {
width: 24px;
height: 24px;
} .fcb-button .fcb-label {
display: block;
font-size: 12px;
font-weight: 500;
line-height: 1.2;
letter-spacing: 0.02em;
font-family: inherit;
text-align: center;
} .fcb-button.fcb-cta {
width: auto;
height: auto;
padding: 10px 6px;
border-radius: 0;
flex-direction: column;
gap: 4px;
}
.fcb-button.fcb-cta .fcb-label {
display: block;
font-size: 12px;
font-weight: 700;
white-space: normal;
}
.fcb-button.fcb-cta svg {
width: 24px;
height: 24px;
} .fcb-button.fcb-whatsapp,
.fcb-button.fcb-whatsapp:hover,
.fcb-button.fcb-whatsapp:focus-visible {
color: #ffffff;
}
.fcb-button.fcb-whatsapp {
background-color: #25D366;
}
.fcb-button.fcb-whatsapp:hover,
.fcb-button.fcb-whatsapp:focus-visible {
background-color: #1ebe5d;
} body.fcb-active {
padding-bottom: 76px !important;
}
} @media (prefers-reduced-motion: reduce) {
.fcb-button {
transition: none;
}
}