/* ════════════════════════════════════════════════════════════
   Gráfica Gama — style.css  |  Mobile-first
   Requiere: Bootstrap 5.3
   ════════════════════════════════════════════════════════════ */

/* ── Variables de marca ── */
:root {
  --gama-violet: #9457A0;
  --gama-cyan:   #45C4D4;
  --gama-yellow: #D8DC48;
  --gama-ink:    #1C1C1C;
  --gama-gray:   #6C6B73;
  --gama-cream:  #F7F5F0;
  --gama-muted:  #5a5a5a;
  --wa:          #25D366;
  --wa-h:        #1fc85e;
  --grad-va: linear-gradient(to bottom, var(--gama-violet), var(--gama-cyan), var(--gama-yellow));

  /* Espaciado base adaptable */
  --space-xs: clamp(.5rem,  1.5vw, .75rem);
  --space-sm: clamp(.75rem, 2vw,   1rem);
  --space-md: clamp(1rem,   3vw,   1.5rem);
  --space-lg: clamp(1.5rem, 4vw,   2.5rem);
}

/* ── Reset mínimo ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--gama-cream);
  color: var(--gama-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; }

/* ── Utilidades de marca ── */
.font-lora       { font-family: 'Lora', serif; }
.text-cyan       { color: var(--gama-cyan)   !important; }
.text-violet     { color: var(--gama-violet) !important; }
.text-yellow     { color: var(--gama-yellow) !important; }
.text-muted-gama { color: var(--gama-muted)  !important; }
.bg-ink          { background-color: var(--gama-ink)   !important; }
.bg-cream        { background-color: var(--gama-cream) !important; }


/* ════════════════════════════════
   HEADER / NAVBAR
   ════════════════════════════════ */
.navbar {
  height: 64px;
  background: var(--gama-ink) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding-inline: var(--space-sm) !important;
}

/* Menu colapsado en movil */
.navbar-collapse {
  background: var(--gama-ink);
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 992px) {
  .navbar { height: 72px; }
  .navbar-collapse {
    background: transparent;
    padding: 0;
    border-top: none;
  }
}

.logo-img-wrap {
  width: 42px; height: 42px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gama-gray); flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .2s;
}
@media (min-width: 992px) {
  .logo-img-wrap { width: 48px; height: 48px; }
}
.logo-link:hover .logo-img-wrap {
  transform: rotate(18deg) scale(1.08);
  border-color: var(--gama-cyan);
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Override Bootstrap navbar-brand */
.logo-link.navbar-brand {
  max-width: none !important;
  overflow: visible !important;
  white-space: nowrap;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-wordmark .bottom {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  display: block;
}

.logo-wordmark .bottom span {
  color: var(--gama-cyan);
}

.logo-slogan__text {
  font-family: 'Lora', serif;
  font-size: clamp(.6rem, 1.5vw, .8rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  letter-spacing: .09em;
  margin: .05rem 0 0 0;
  display: block;
  white-space: nowrap;
  overflow: visible;
  width: max-content;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.65) !important;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding-block: .6rem !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover { color: var(--gama-cyan) !important; }

.nav-wa {
  display: inline-flex !important; align-items: center; gap: .4rem;
  background: var(--wa) !important; color: #fff !important;
  padding: .48rem 1.1rem !important; border-radius: 30px !important;
  font-size: .8rem !important;
  transition: background .2s, transform .15s !important;
}
.nav-wa:hover { background: var(--wa-h) !important; transform: translateY(-1px); }


/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
#inicio {
  min-height: calc(100dvh - 64px);
  flex-direction: column !important;
}
@media (min-width: 992px) {
  #inicio {
    min-height: calc(100dvh - 72px);
    flex-direction: row !important;
  }
}

/* Columna de texto */
.hero-left {
  position: relative;
  padding: var(--space-lg) var(--space-md) var(--space-lg) calc(var(--space-md) + 5px);
  width: 100%;
}
@media (min-width: 992px) {
  .hero-left {
    width: 50%;
    padding: 4rem 2.5rem 4rem calc(2.5rem + 5px);
  }
}
.hero-left::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--grad-va);
}

.badge-gama {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gama-cyan); color: var(--gama-ink);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .32rem .85rem; border-radius: 30px;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 700; line-height: 1.08;
}

/* ── Slogan bajo el logo ── */
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.hero-slogan__text {
  font-family: 'Lora', serif;
  font-size: clamp(.8rem, 2.2vw, 1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gama-muted);
  letter-spacing: .04em;
}

/* ── Columna de quads ── */
.hero-right {
  width: 100%;
  background: var(--gama-cream);
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto repeat(3, 1fr);
  gap: .5rem;
  padding: .5rem;
}
@media (min-width: 576px) {
  .hero-right { gap: .6rem; padding: .6rem; }
}
@media (min-width: 992px) {
  .hero-right {
    width: 50%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 1fr 1fr;
    gap: .75rem;
    padding: 1rem;
    min-height: calc(100dvh - 72px);
  }
}


/* ════════════════════════════════
   QUAD LOGO (fila superior)
   ════════════════════════════════ */
.quad-logo {
  grid-column: 1 / -1;
  background: var(--gama-cream);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; padding: .7rem 1rem;
}
@media (min-width: 992px) {
  .quad-logo { padding: .9rem 1.5rem; gap: 1rem; }
}

.quad-logo__img {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
@media (min-width: 992px) {
  .quad-logo__img { width: 52px; height: 52px; }
}
.quad-logo__img:hover { transform: rotate(12deg) scale(1.08); }

.quad-logo__texto strong {
  font-family: 'Lora', serif;
  font-size: clamp(.85rem, 2vw, 1.1rem);
  font-weight: 700; color: var(--gama-ink); display: block;
}
.quad-logo__texto span {
  font-size: clamp(.6rem, 1.4vw, .72rem);
  font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gama-gray);
}


/* ════════════════════════════════
   QUADS — Tarjetas de servicio
   ════════════════════════════════ */
.quad {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: clamp(.65rem, 2.5vw, 1.6rem) clamp(.65rem, 2.5vw, 1.8rem);
  position: relative; overflow: hidden;
  text-decoration: none; cursor: pointer;
  border-radius: clamp(10px, 2.5vw, 28px);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: clamp(85px, 22vw, 130px);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .quad:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 12px 36px rgba(0,0,0,.28);
  }
}

/* Overlay degradado */
.quad::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.6) 0%,
    rgba(0,0,0,.22) 55%,
    transparent 100%);
  border-radius: inherit; z-index: 0;
}
.quad::after { content: none; }

/* Titulo con pastilla de color */
.quad span {
  position: relative; z-index: 1;
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: clamp(.65rem, 1.9vw, 1.05rem);
  font-weight: 700; line-height: 1.3;
  letter-spacing: .01em; color: #fff;
  padding: .18rem .55rem;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .quad span { font-size: 1rem; padding: .22rem .75rem; }
}

/* Pastillas por variante de color */
.q-violet span { background: rgba(148,87,160,.88); }
.q-cyan   span { background: rgba(69,196,212,.88); color: var(--gama-ink); }
.q-yellow span { background: rgba(216,220,72,.90); color: var(--gama-ink); }
.q-ink    span { background: rgba(28,28,28,.82); }

/* Descripcion: visible solo en hover con dispositivos que lo soportan */
.quad-desc {
  color: rgba(255,255,255,.88);
  font-size: clamp(.6rem, 1.4vw, .72rem);
  line-height: 1.55; margin-top: .3rem;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(6px);
  transition: max-height .38s ease, opacity .3s ease .05s, transform .3s ease .05s;
  position: relative; z-index: 1;
}
@media (hover: hover) {
  .quad:hover .quad-desc {
    max-height: 80px; opacity: 1; transform: translateY(0);
  }
}

/* Imagenes de fondo */
.q-impresion-digital { background-image: url('Imagenes/impresion1.jpg'); }
.q-impresion-laser   { background-image: url('Imagenes/impresion-laser1.jpg'); }
.q-impresion-offset  { background-image: url('Imagenes/impresion-offset.jpeg'); }
.q-grafica           { background-image: url('Imagenes/grafica1.jpg'); }
.q-merchandising     { background-image: url('Imagenes/merchandising1.jpeg'); }
.q-estampados        { background-image: url('Imagenes/estampados1.jpg'); }

/* Elementos residuales */
.quad-icon, .quad-arrow { display: none; }


/* ════════════════════════════════
   BOTONES
   ════════════════════════════════ */
.btn-wa,
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--wa); color: #fff;
  border-radius: 30px; border: none; font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn-wa    { padding: .85rem 1.6rem; font-size: .88rem; box-shadow: 0 4px 18px rgba(37,211,102,.32); }
.btn-wa-lg { padding: .9rem 1.8rem;  font-size: .92rem; box-shadow: 0 4px 20px rgba(37,211,102,.35); }
@media (min-width: 576px) {
  .btn-wa    { padding: .9rem 1.9rem;  font-size: .9rem; }
  .btn-wa-lg { padding: 1rem  2.2rem;  font-size: .95rem; }
}
@media (hover: hover) {
  .btn-wa:hover,
  .btn-wa-lg:hover { background: var(--wa-h); transform: translateY(-2px); color: #fff; }
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--gama-ink);
  border: 2px solid var(--gama-ink);
  border-radius: 30px; padding: .85rem 1.6rem;
  font-size: .88rem; font-weight: 700;
  text-decoration: none; min-height: 48px;
  transition: background .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 576px) {
  .btn-ghost { padding: .88rem 1.9rem; font-size: .9rem; }
}
@media (hover: hover) {
  .btn-ghost:hover { background: var(--gama-ink); color: #fff; }
}

.btn-ig {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
  color: #fff; border-radius: 30px;
  padding: .9rem 1.8rem; font-size: .92rem; font-weight: 700;
  text-decoration: none; min-height: 48px;
  box-shadow: 0 4px 20px rgba(131,58,180,.35);
  transition: opacity .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 576px) {
  .btn-ig { padding: 1rem 2.2rem; font-size: .95rem; }
}
@media (hover: hover) {
  .btn-ig:hover { opacity: .85; transform: translateY(-2px); color: #fff; }
}

.btn-maps {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #4ecb71; color: #fff;
  border-radius: 50px; padding: 13px 20px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 6px;
  min-height: 48px;
  transition: background .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .btn-maps:hover { background: #3ab860; transform: translateY(-2px); color: #fff; }
}


/* ════════════════════════════════
   STATS BAR
   ════════════════════════════════ */
.stats-bar { background: var(--gama-ink); }

/* Movil: grid 2x2 */
.stats-bar .d-flex {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}
.stat {
  padding: 1.4rem 1rem; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.07); }
.stat:nth-child(3),
.stat:nth-child(4)    { border-bottom: none; }

/* Tablet+: fila unica */
@media (min-width: 576px) {
  .stats-bar .d-flex {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat {
    padding: 1.8rem 2rem;
    border-right: 1px solid rgba(255,255,255,.07);
    border-bottom: none;
  }
  .stat:last-child { border-right: none; }
}

.stat-num {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 700; color: var(--gama-cyan);
  display: block; line-height: 1; margin-bottom: .3rem;
}
.stat-num.v { color: var(--gama-violet); }
.stat-num.y { color: var(--gama-yellow); }
.stat-label {
  font-size: clamp(.66rem, 1.5vw, .75rem);
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}


/* ════════════════════════════════
   SECCION UBICACION
   ════════════════════════════════ */
#ubicacion { background: #1a1a1a; }
#ubicacion .section-eyebrow { color: var(--gama-cyan); }

.mapa-wrap {
  min-height: 260px; border-radius: 14px;
  overflow: hidden; box-shadow: 0 6px 32px rgba(0,0,0,.4);
  height: 100%;
}
@media (min-width: 576px) { .mapa-wrap { min-height: 340px; } }
@media (min-width: 992px) { .mapa-wrap { min-height: 420px; } }

.mapa-wrap iframe {
  display: block; width: 100%; height: 100%;
  min-height: inherit; border: 0;
}

.info-card {
  background: #262626; border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid #333;
}
@media (min-width: 576px) {
  .info-card { padding: 16px 18px; gap: 14px; }
}
.info-icon  { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.info-label {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #666; margin: 0 0 4px;
}
.info-value {
  font-size: 13px; font-weight: 600;
  color: #f0f0f0; margin: 0; line-height: 1.55;
}
@media (min-width: 576px) {
  .info-icon  { font-size: 20px; }
  .info-value { font-size: 14px; }
}


/* ════════════════════════════════
   SECCION CONTACTO
   ════════════════════════════════ */
#contacto {
  background: var(--gama-ink); color: #fff;
  position: relative; overflow: hidden;
}
#contacto::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, var(--gama-violet) 0%, transparent 70%);
  opacity: .12;
}
#contacto::after {
  content: ''; position: absolute; bottom: -80px; right: -50px;
  width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, var(--gama-cyan) 0%, transparent 70%);
  opacity: .1;
}
@media (min-width: 768px) {
  #contacto::before { width: 400px; height: 400px; top: -100px; left: -100px; }
  #contacto::after  { width: 450px; height: 450px; bottom: -120px; right: -80px; }
}
.contact-inner { position: relative; z-index: 1; }

#contacto .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.5);
}
@media (hover: hover) {
  #contacto .btn-ghost:hover {
    background: rgba(255,255,255,.12);
    color: #fff; border-color: #fff;
  }
}

.section-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gama-cyan); display: block; margin-bottom: .5rem;
}
.section-eyebrow.yellow { color: var(--gama-yellow); }

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.55rem, 5vw, 2.8rem);
  font-weight: 700;
}

.color-dots { display: flex; justify-content: center; gap: .6rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; }


/* ════════════════════════════════
   FOOTER BASE
   ════════════════════════════════ */
footer {
  background: #111;
}

footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 1rem 1rem;   /* ← más padding lateral en móvil */
}

@media (min-width: 992px) {
  footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.25rem 3rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo img  { width: 36px; height: 36px; border-radius: 50%; opacity: .7; }
.footer-logo span { font-family: 'Lora', serif; color: rgba(255,255,255,.38); font-size: .88rem; }

.footer-copy { font-size: .72rem; color: rgba(255,255,255,.22); }

/* ── FOOTER SOCIAL: fila compacta en móvil ── */
.footer-social {
  display: flex;               /* ← flex en lugar de grid */
  flex-wrap: wrap;
  justify-content: center;
  gap: .2rem .5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .footer-social { flex-wrap: nowrap; width: auto; }
}
.footer-social a {
  color: rgba(255,255,255,.32);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  transition: color .2s;
  padding: .3rem .4rem;
  white-space: nowrap;
}
@media (hover: hover) {
  .footer-social a:hover { color: var(--gama-cyan); }
}


/* ════════════════════════════════
   FOOTER CTA — PÁGINA WEB  (CORREGIDO MÓVIL)
   ════════════════════════════════ */
.footer-web-cta {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 2rem 1.25rem 2.5rem;   /* ← padding lateral reducido en móvil */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .footer-web-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 2.5rem 3rem 2.8rem;
    gap: 3rem;
  }
}

.footer-web-cta__inner {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  width: 100%;
  max-width: 520px;
}

.footer-web-cta__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gama-cyan);
  margin: 0;
}

.footer-web-cta__title {
  font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 5vw, 2rem);  /* ← más pequeño en móvil → no rompe en 2 líneas */
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.footer-web-cta__title span { color: var(--gama-violet); }

.footer-web-cta__sub {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* ── BOTONES: fila horizontal compacta en móvil ── */
.footer-web-cta__btns {
  display: flex;
  flex-direction: row;          /* ← fila en lugar de columna */
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .footer-web-cta__btns { justify-content: flex-start; }
}

.footer-web-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 30px;
  padding: .65rem 1.2rem;       /* ← padding más compacto en móvil */
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  transition: background .2s, color .2s, transform .15s;
}
@media (min-width: 576px) {
  .footer-web-cta__btn { padding: .75rem 1.5rem; font-size: .85rem; }
}

.footer-web-cta__btn--main {
  background: var(--gama-violet);
  color: #fff;
}
@media (hover: hover) {
  .footer-web-cta__btn--main:hover {
    background: #a968b8;
    transform: translateY(-2px);
    color: #fff;
  }
}
.footer-web-cta__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.2);
}
@media (hover: hover) {
  .footer-web-cta__btn--ghost:hover {
    border-color: var(--gama-cyan);
    color: #fff;
  }
}

/* ── TARJETAS DECORATIVAS: ocultas en móvil, visibles en desktop ── */
.footer-web-cta__cards {
  display: none;               /* ← ocultar en móvil para no desperdiciar espacio */
  gap: .75rem;
  flex-shrink: 0;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .footer-web-cta__cards {
    display: flex;
  }
}

.fwc-card {
  width: 72px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: .6rem .5rem .7rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: transform .3s ease;
}
.fwc-card--a { height: 90px; }
.fwc-card--b { height: 110px; transform: translateY(-8px); }
.fwc-card--c { height: 90px; }

@media (hover: hover) {
  .footer-web-cta:hover .fwc-card--a { transform: translateY(-4px); }
  .footer-web-cta:hover .fwc-card--b { transform: translateY(-14px); }
  .footer-web-cta:hover .fwc-card--c { transform: translateY(-4px); }
}

.fwc-card__bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(148,87,160,.7);
  width: 100%;
}
.fwc-card__bar--cyan   { background: rgba(69,196,212,.7); }
.fwc-card__bar--yellow { background: rgba(216,220,72,.7); }

.fwc-card__line {
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  width: 100%;
}
.fwc-card__line--short { width: 60%; }

.fwc-card__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: auto;
  background: rgba(148,87,160,.5);
}
.fwc-card__dot--cyan   { background: rgba(69,196,212,.5); }
.fwc-card__dot--yellow { background: rgba(216,220,72,.5); }


/* ════════════════════════════════
   FAB — Boton flotante WhatsApp
   ════════════════════════════════ */
.fab {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 500;
  width: 56px; height: 56px;
  background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5); text-decoration: none;
  animation: pulse-wa 2.6s ease-in-out infinite;
  transition: transform .2s;
}
@media (min-width: 576px) {
  .fab { width: 60px; height: 60px; bottom: 2rem; right: 2rem; }
}
@media (hover: hover) {
  .fab:hover { transform: scale(1.12); animation: none; }
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 38px rgba(37,211,102,.8); }
}


/* ════════════════════════════════
   ACCESIBILIDAD
   ════════════════════════════════ */

/* Skip link */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.visually-hidden-focusable:focus {
  position: fixed !important; top: 8px; left: 8px; z-index: 9999;
  padding: .5rem 1rem !important;
  background: var(--gama-cyan); color: var(--gama-ink) !important;
  font-weight: 700; border-radius: 6px; text-decoration: none;
  width: auto !important; height: auto !important;
  clip: auto !important; overflow: visible !important;
}

/* Focus visible en todos los interactivos */
:focus-visible {
  outline: 3px solid var(--gama-cyan);
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}