.whatsapp-fixed-button {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
gap: 15px;
.icon {
width: 60px;
height: 60px;
padding: 10px;
color: var(--color);
background: var(--background);
line-height: 1;
border-radius: 100%;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: all;
}
.ribbon {
background: #fff;
color: var(--fs-color-primary);
border-radius: 10px;
line-height: 1;
padding: 10px 15px;
text-transform: uppercase;
font-size: 12px;
font-weight: bold;
pointer-events: none;
opacity: 0;
user-select: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}
&:hover {
pointer-events: all;
.icon {
width: 70px;
height: 70px;
}
.ribbon {
opacity: 1;
}
}
}
.absolute-footer {
display: none !important;
}
.bg-gradient-balls {
.section-bg {
overflow: hidden;
background-color: transparent;
}
.section-bg::before,
.section-bg::after {
content: "";
position: absolute;
border-radius: 50%;
pointer-events: none;
filter: blur(40px); 
will-change: transform, opacity;
}
.section-bg::before {
top: 10%;
left: 10%;
width: 180px;
height: 180px;
background-color: rgba(240, 180, 198, 0.75);
animation: float-pink 8s ease-in-out infinite alternate;
}
.section-bg::after {
bottom: 15%;
right: 15%;
width: 240px;
height: 240px;
background-color: rgba(215, 232, 198, 0.80);
animation: float-green 10s ease-in-out infinite alternate;
}
}
@keyframes float-pink {
0% {
transform: translate(0, 0) scale(1);
opacity: 0.75;
}
100% {
transform: translate(25px, 20px) scale(1.15);
opacity: 0.95;
}
}
@keyframes float-green {
0% {
transform: translate(0, 0) scale(1);
opacity: 0.80;
}
100% {
transform: translate(-30px, -20px) scale(1.1);
opacity: 1;
}
}
.button {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 8px;
background-color: var(--primary);
color: #ffffff;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
overflow: hidden; 
isolation: isolate; 
transition: color 0.3s ease;
&.primary {
--primary: var(--fs-color-primary);
--secondary: var(--fs-color-secondary);
}
&.secondary {
--primary: var(--fs-color-secondary);
--secondary: var(--fs-color-primary);
}
&::before {
content: "";
position: absolute;
top: var(--y, 50%);
left: var(--x, 50%);
width: var(--size, 0px);
height: var(--size, 0px);
background-color: var(--secondary);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
z-index: -1;
opacity: 0;
will-change: transform;
transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}
&:hover::before {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
} 
}
.accordion-title {
font-size: 100% !important
}
.services-card {
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 12px;
padding: 0 16px 16px;
background: #ffffff;
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.services-card .ux-menu-title {
color: var(--fs-color-primary);
border-bottom: 18px;
border-bottom: 2px solid var(--fs-color-primary);
}
.services-card .ux-menu-link {
position: relative;
transition: background-color 0.2s ease;
}
.services-card .ux-menu-link__link {
align-items: center;
padding-left: 12px;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-card .ux-menu-link__link:hover {
color: var(--fs-color-primary);
background-color: rgba(0, 0, 0, 0.02); }
.services-card .ux-menu-link__link.secondary-color {
color: var(--fs-color-primary) !important;
background-color: rgba(0, 0, 0, 0.03);
}
.services-card .ux-menu-link:has(.secondary-color)::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 60%;
background-color: var(--fs-color-secondary);
border-radius: 4px;
}
.cta-card {
border-radius: 12px;
padding: 16px;
}
.border-bottom:not(:last-of-type) {
border-bottom: solid 1px rgba(0,0,0,.08);
margin-bottom: 30px;
}