@charset "UTF-8";
  .pgm-sticky-bar {
position: fixed;
left: 50%;
bottom: 1.2rem;
transform: translateX(-50%);
z-index: 99999;
width: min(calc(100% - 2rem), 720px);
opacity: 1;
visibility: visible;
}  .pgm-sticky-desktop {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
background: rgba(26, 26, 26, 0.92);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
overflow: hidden;
} .pgm-sticky-link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.55rem;
padding: 1.05rem 0.8rem;
color: rgba(255, 255, 255, 0.94);
font-size: 1rem;
font-weight: 600;
text-decoration: none;
border-right: 1px solid rgba(255, 255, 255, 0.1);
transition: background 0.25s ease, color 0.25s ease;
letter-spacing: 0.3px;
white-space: nowrap;
}
.pgm-sticky-link:last-child {
border-right: 0;
}
.pgm-sticky-link:hover {
background: rgba(227, 30, 36, 0.25);
color: #fff;
}
.pgm-sticky-link svg {
width: 18px;
height: 18px;
flex-shrink: 0;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
} .pgm-sticky-link .pgm-icon-whatsapp {
fill: currentColor;
stroke: none;
} .pgm-sticky-mobile {
display: none;
} @media (max-width: 900px) {
.pgm-sticky-bar {
width: calc(100% - 1.2rem);
max-width: 480px;
bottom: 0.6rem;
}
.pgm-sticky-desktop {
display: none;
}
.pgm-sticky-mobile {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
background: rgba(26, 26, 26, 0.95);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 14px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
overflow: hidden;
}
.pgm-sticky-link {
padding: 1.1rem 0.6rem;
font-size: 1rem;
}
} .pgm-sticky-link.pgm-sticky-cta { }
.pgm-sticky-link.pgm-sticky-cta:hover {
background: rgba(227, 30, 36, 0.4);
color: #fff;
} .pgm-footer-bottom {
padding-bottom: 80px !important;
}
@media (max-width: 900px) {
.pgm-footer-bottom {
padding-bottom: 70px !important;
}
}