@font-face {
    font-family: 'Designer';
    src: url('assets/fonts/Designer.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Light-BETA.otf';
    src: url('assets/fonts/Inter-Light-BETA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GABRWFFR.TTF';
    src: url('assets/fonts/GABRWFFR.TTF') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --cyan: #189cd8;
    --magenta: #e3047d;
    --yellow: #fdea18;
    --black: #121212;

    --background: #0b0f19;
    --card: #1f293d;
    --text: #e2e8f0;
    --nav-h: 72px; /* usa el mismo valor que en style.css */
    --font-display: 'Designer', sans-serif;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    margin: 0;
    font-family: 'Inter-Light-BETA.otf', sans-serif; /* texto */
}

h1, h2, h3,
.section-title,
.about-diagonal-content h2 {
    font-family: 'Designer', sans-serif; /* títulos */
}

header {
    background-color: var(--background);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 2px solid #222222;
}
.cmyk-bar {
  display: flex;
  height: 6px;
  width: 100%;
}
.cmyk-bar span { flex: 1; }
.cmyk-bar .c { background: var(--cyan); }
.cmyk-bar .m { background: var(--magenta); }
.cmyk-bar .y { background: var(--yellow); }
.cmyk-bar .k { background: #000; }

body > .cmyk-bar {
  position: fixed;
  top: 0; left: 0;
  z-index: 60;
}
a {
    color: inherit;
    text-decoration: none;
}
.navbar {
  position: fixed;
  top: 6px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  font-family: 'GABRWFFR.TTF', sans-serif;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.95rem;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 0.35rem 0;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


main {
    padding-top: 40px;
    z-index: 1;
    position: relative;
    min-height: 100vh;
    background-color: var(--background);
}

.services-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ---- Encabezado ---- */
.services-header{ text-align: center; margin-bottom: 56px; }

.services-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 14px;
}
.services-tag .dot{ width: 10px; height: 10px; display: inline-block; }
.dot-c{ background: var(--cyan); }
.dot-m{ background: var(--magenta); }
.dot-y{ background: var(--yellow); margin-right: 8px; }

.services-header h1{
  font-family: 'Designer', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 14px;
}
.services-header p{ color: #94a3b8; font-size: 1.05rem; margin: 0; }

/* ---- Grid: 3 arriba, 2 abajo centradas ---- */
.services-cards{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.services-card,
.service-card{ grid-column: span 2; }        /* las 3 de arriba */
.card-bottom-1{ grid-column: 2 / span 2; }   /* centra la fila de abajo */
.card-bottom-2{ grid-column: 4 / span 2; }

/* ---- Tarjeta ---- */
.service-card{
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  padding: 32px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 14px 34px rgba(0,0,0,.45),
              0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}
.service-card:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-icon{
  width: 56px;
  height: 56px;
  object-fit: contain;
  color: #fff;
  margin-bottom: 22px;
  transition: transform .25s ease;
  filter: brightness(0) invert(1);
}
.service-icon-svg svg{ width: 56px; height: 56px; display: block; }
.service-card:hover .service-icon{ transform: scale(1.08); }

.service-card h3{
  font-family: 'Designer', sans-serif;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--accent);
  margin: 0 0 14px;
}
.service-card p{
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 22px;
  flex: 1;               /* empuja el "Ver más" al fondo */
}

.service-more{
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.service-card:hover .service-more{ opacity: 1; transform: translateX(0); }

/* ---- Responsive ---- */
@media (max-width: 900px){
  .services-cards{ grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .card-bottom-1,
  .card-bottom-2{ grid-column: auto; }
}
@media (max-width: 640px){
  .services-cards{ grid-template-columns: 1fr; gap: 20px; }
  .services-container{ padding: 56px 18px; }
}

.contacto-rapido {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0px 0px 15px rgba(2, 82, 104, 0.5);
}
.contacto-rapido-text {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.contacto-rapido-text h3 {
    color: var(--cyan);
    font-size: 25px;
}
.contacto-rapido-text p {
    font-size: 20px;
    font-family: 'Inter-Light-BETA', sans-serif;
    color: var(--cyan);
    font-weight: 600;
}
.contacto-rapido-button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px;
}
.whatsapp-button-cyan {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.contact-whatsapp-cyan {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--cyan);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'GABRWFFR.TTF', sans-serif;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(12, 135, 176, 0.35);
}
.contact-whatsapp-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(5, 112, 151, 0.729);
}
.whatsapp-icon-cyan {
    height: 22px;
    width: 22px;
    filter: brightness(0) invert(1);
}

.window-tint {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 26px;
    height: 100%;
}
.window-tint h2 {
    color: var(--yellow);
    font-family: 'Designer', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.window-tint-gallery {
    display: flex;
    justify-content: center;
    width: 1200px;
    height: 600px;
}
.window-tint-gallery img {
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s ease;
}
.window-tint-gallery img:hover {
    cursor: crosshair;
    width: 300px;
    filter: contrast(120%);
    opacity: 1;
}

.wraps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.wraps-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
}

.wraps-text-box {
    flex: 1;
    display: flex;
    background:
        linear-gradient(rgba(14, 21, 38, 0.941), rgba(14, 21, 38, 0.94)),
        url("assets/fondos/fondo_hexagonos.png") center / cover no-repeat;
    position: relative;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    box-sizing: border-box;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 24px -8px rgba(0, 0, 0, 0.45);
}

.wraps-text-box h2 {
    color: var(--yellow);
    font-family: 'Designer', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wraps-text-box p {
    color: var(--text);
    font-family: 'Inter-Light-BETA', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}

.wraps-images {
    flex: 0 1 320px;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.15) inset,
        0 18px 30px -8px rgba(0, 0, 0, 0.55),
        0 6px 12px rgba(0, 0, 0, 0.35);
    outline-offset: 4px;
    gap: 20px;
}

.wraps-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: none;
}

.wraps-images-container {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.wrap-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slide-color, var(--cyan)) 0%, #121212 150%);
}

.wrap-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.wraps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: rgba(18, 18, 18, 0.6);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 2;
}

.wraps-arrow:hover {
    background-color: var(--magenta);
}
 
.wraps-arrow:active {
    transform: translateY(-50%) scale(0.92);
}
 
.wraps-arrow.prev {
    left: 14px;
}
 
.wraps-arrow.next {
    right: 14px;
}
 
.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
 
.gallery-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.gallery-dot.active {
    background-color: var(--yellow);
    transform: scale(1.25);
}
 
@media (max-width: 640px) {
    .about-diagonal-box {
        --skew: -3deg;
        box-shadow: 8px 8px 0 rgba(227, 4, 125, 0.14);
    }
    .about-diagonal-content {
        padding: 38px 26px;
    }
}

.signs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    max-width: 1400px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    margin: 0 auto;
    box-sizing: border-box;
}

.signs-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.signs-text-box h2 {
    color: var(--cyan);
    font-family: 'Designer', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.signs-text-box p {
    color: var(--text);
    font-family: 'GABRWFFR.TTF', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

.signs-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    gap: 20px;
    margin-top: 20px;
}

.signs-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.imagen1 {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    width: 260px;
    height: auto;
    border-radius: 26px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 24px -8px rgba(0, 0, 0, 0.45);
}

.imagen2 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 20% 0%);
    width: 300px;
    height: auto;
    border-radius: 26px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 24px -8px rgba(0, 0, 0, 0.45);
}
.imagen3 {
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    width: 300px;
    height: auto;
    border-radius: 26px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 24px -8px rgba(0, 0, 0, 0.45);
}
.imagen4 {
    clip-path: polygon(0% 100%, 20% 0%, 100% 0%, 100% 100%);
    width: 260px;
    height: auto;
    border-radius: 26px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 24px -8px rgba(0, 0, 0, 0.45);
}

.logos {
    padding: 40px;
    box-sizing: border-box;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.logos-content {
    background-image: url('assets/fondos/banner_interno.png');
    background-size: cover; /* Ajusta la imagen para cubrir todo el contenedor */
    background-repeat: no-repeat; /* Evita que la imagen se duque */
    background-position: center; /* Centra la imagen */
    border: 1px solid var(--card);
    border-radius: 26px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logos-content-text {
    flex: 1;
}
.logos-content-text h2 {
    color: var(--yellow);
    font-size: 48px;
}
.logos-content-text p {
    color: var(--cyan);
    font-family: 'GABRWFFR.TTF', sans-serif;
    font-size: 30px;
}
.logos-content-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.logos-content-image img {
    width: 700px;
    max-width: 100%;
}
.logos-content-button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px;
}
.whatsapp-button {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--magenta);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'GABRWFFR.TTF', sans-serif;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(227, 4, 125, 0.35);
}
.contact-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(227, 4, 125, 0.5);
}
.whatsapp-icon {
    height: 22px;
    width: 22px;
    filter: brightness(0) invert(1);
}

footer {
    background-color: rgba(14, 21, 38, 0.941);
    position: sticky;
    display: grid;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 40px;
    box-sizing: border-box;
}

.footer-main {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.footer-logo {
    display: flex;
    position: 1;
    height: 200px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-logo:hover{
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
}

.footer-links p {
    color: var(--yellow);
    font-family: 'Designer', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'GABRWFFR.TTF', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--magenta); /* Línea roja de acento */
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
    max-width: 320px; /* <- clave: evita que el texto invada la columna vecina */
}

.footer-contact h4 {
    color: var(--yellow);
    font-family: 'Designer', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start; /* el ícono queda arriba si el texto pasa a 2 líneas */
    gap: 8px;
    margin: 5px 0;
}

.footer-icon {
    flex-shrink: 0; /* el ícono nunca se encoge ni se deforma */
    width: 20px;
    height: 20px;
}

.footer-contact p span {
    flex: 1;
    min-width: 0; /* permite que el texto haga wrap dentro de su espacio */
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-direction: column;
}

.footer-social h3 {
    color: var(--yellow);
    font-family: 'Designer', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.footer-social-icon {
    display: flex;
    gap: 8px;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* lo pone blanco, igual que en contact-social */
    transition: filter 0.3s ease;
}

.footer-social a {
    gap: 20px;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-family: 'GABRWFFR.TTF', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--yellow);
}

.footer-social a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--magenta); /* Línea roja de acento */
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-social a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-social a:hover .footer-social-icon {
    filter: invert(84%) sepia(59%) saturate(1000%) hue-rotate(1deg) brightness(105%);
}

.footer-bottom {
    background: linear-gradient(180deg, rgba(14, 21, 38, 0.94) 0%, rgba(4, 18, 52, 0.94) 300%);
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #222222;
    color: #aaaaaa;
    font-size: 14px;
}

.back-to-top {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    background-color: transparent;
    color: var(--cyan);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.back-to-top:hover {
    background-color: var(--cyan);
    color: var(--black);
    transform: translateY(-50%) translateY(-3px);
}

@media (max-width: 600px) {
    .back-to-top {
        position: static;
        transform: none;
        margin-top: 10px;
    }
    .back-to-top:hover {
        transform: translateY(-3px);
    }
    .footer-bottom {
        flex-direction: column;
        padding: 20px;
    }
}

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 40;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.atribuciones {
    background: none;
    border: none;
    color: #aaaaaa;
    font-family: 'GABRWFFR.TTF', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.atribuciones:hover {
    color: var(--yellow);
    text-decoration: underline;
}