.gs-floating-social {
position: fixed;
top: 42%;
left: 0;
z-index: 90;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 14px 10px;
border: 1px solid rgba(78, 115, 185, 0.08);
border-left: 0;
border-radius: 0 var(--radius-md) var(--radius-md) 0;
background: rgba(255, 255, 255, 0.94);
box-shadow: 0 14px 34px rgba(35, 31, 32, 0.14);
backdrop-filter: blur(10px);
transform: translateY(-50%);
}

.gs-floating-social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 999px;
color: var(--color-text-cafe);
text-decoration: none;
transition: color .2s ease, background-color .2s ease;
}

.gs-floating-social a:hover {
background: rgba(241, 145, 35, 0.12);
color: var(--color-primario-anaranjado);
}

.gs-floating-social__icon {
display: block;
width: 19px;
height: 19px;
stroke-width: 2.2;
}

@media (max-width: 1024px) {
.gs-floating-social {
display: none;
}
}
