﻿/* ============================================================
   MAci Landing Page — styles.css
   promos.maci.com.mx
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #2558a9;
  --blue-dark:   #1a3f7a;
  --blue-light:  #3a6ec4;
  --gold:        #fbb519;
  --gold-dark:   #d99a0f;
  --white:       #ffffff;
  --dark:        #0f1c2e;
  --grey:        #f4f6fa;
  --grey-mid:    #e2e8f2;
  --text:        #1e2d45;
  --text-muted:  #5a6e8a;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 8px rgba(37, 88, 169, 0.08);
  --shadow-md:   0 4px 24px rgba(37, 88, 169, 0.12);
  --shadow-lg:   0 8px 40px rgba(37, 88, 169, 0.18);

  --transition:  0.25s ease;

  --container:   1120px;
  --container-narrow: 740px;

  --nav-h:       68px;

  /* Type scale — fluid */
  --fs-hero:  clamp(2.1rem, 5.5vw, 3.4rem);
  --fs-h2:    clamp(1.6rem, 3.2vw, 2.2rem);
  --fs-h3:    clamp(1.1rem, 1.8vw, 1.25rem);
  --fs-lead:  clamp(1rem, 1.5vw, 1.125rem);
  --fs-base:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.8rem;
}

/* ── 2. RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-aos] { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(251, 181, 25, 0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(251, 181, 25, 0.5);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── 5. NAV ─────────────────────────────────────────────────── */
:root {
  --nav-topbar-h: 36px;
  --nav-mainbar-h: 72px;
  --nav-total-h:  108px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

/* — Barra superior amarilla — */
.nav-topbar {
  background: var(--gold);
  height: var(--nav-topbar-h);
}
.nav-topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-topbar-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  font-style: italic;
  letter-spacing: 0.03em;
}
.nav-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.nav-topbar-right a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 700;
  transition: opacity var(--transition);
}
.nav-topbar-right a:hover { opacity: 0.7; }
.nav-topbar-sep { color: var(--blue); opacity: 0.35; font-weight: 400; }

/* — Nav principal blanca — */
.nav-mainbar {
  background: var(--white);
  height: var(--nav-mainbar-h);
  border-bottom: 2px solid var(--grey);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* Nav full-width: logo en el borde izquierdo, botones en el borde derecho */
  max-width: 100% !important;
  padding-inline: clamp(1rem, 2.5vw, 3rem) !important;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { display: block; height: 50px; width: auto; }

/* Links: centrados absolutamente sobre el header, sin ocupar espacio en el flex */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav-links a:not(.btn) {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition), font-weight var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.01em;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--blue-dark); font-weight: 700; }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a:not(.btn):hover svg { stroke: var(--blue-dark); }

/* Botón CTA — visibilidad por breakpoint */
/* Desktop (>1024px): solo botón fuera del nav */
.nav-cta-mobile  { display: none; }
.nav-cta-desktop { display: inline-flex; }
/* Con hamburguesa (≤1024px): botón dentro del panel, no en el header */
@media (max-width: 1024px) {
  .nav-cta-mobile  { display: inline-flex; }
  .nav-cta-desktop { display: none; }
}

/* Botón CTA — estilo circular como maci.com.mx */
.nav-cta {
  font-family: 'Poppins', sans-serif !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 8px rgba(37,88,169,0.28);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  z-index: 0;
  justify-content: center;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.nav-cta::before {
  content: '→';
  order: 1;
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width .25s ease, opacity .2s ease, margin .25s ease;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  box-shadow: 0 4px 14px rgba(37,88,169,0.4) !important;
  transform: translateY(-1px);
}
.nav-cta:hover::after { left: 125%; }
.nav-cta:hover::before { max-width: 16px; opacity: 1; margin-left: 6px; }
.nav-cta:active { transform: scale(0.94); transition: transform .12s ease; }

/* — Hamburger — */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-icon-close { display: none; }
.nav-toggle.open .nav-toggle-icon-open { display: none; }
.nav-toggle.open .nav-toggle-icon-close { display: block; }

/* — Mobile / tablet: hamburger activo ≤1024px — */
@media (max-width: 1024px) {
  .nav-topbar-tagline { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-total-h);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 2px solid var(--grey-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 0.85rem 0; border-bottom: 1px solid var(--grey); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 1rem; text-align: center; border-radius: var(--radius-sm) !important; }
}

/* — Dropdowns de nav — */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 200px;
  border: 1px solid var(--grey-mid);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(37,88,169,0.14);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 300;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--gold);
  border-top: none;
}
/* Especificidad elevada (0,2,1) para ganar a .nav-links a:not(.btn) */
.nav-links .nav-dropdown a {
  display: block !important;
  flex-direction: unset !important;
  padding: 9px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  transition: background 0.15s, padding-left 0.15s, font-weight 0.15s;
  border-bottom: none;
  letter-spacing: 0;
}
.nav-links .nav-dropdown a::after { display: none !important; }
.nav-links .nav-dropdown a:hover {
  background: #f0f4fb;
  color: var(--blue-dark);
  padding-left: 24px;
  font-weight: 700;
}
/* Dropdown visible: hover (desktop) O clase .open (clic en cualquier versión) */
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Rotar chevron al hover o al abrir */
.nav-dropdown-wrap:hover .nav-has-dropdown svg,
.nav-dropdown-wrap.open .nav-has-dropdown svg {
  transform: rotate(180deg);
}
.nav-has-dropdown svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
/* Flechas más grandes en desktop */
@media (min-width: 1025px) {
  .nav-has-dropdown svg {
    width: 22px !important;
    height: 22px !important;
  }
}

/* — Dropdown multi-columna (Catálogo con muchas categorías) — */
@media (min-width: 1025px) {
  .nav-dropdown--wide {
    display: grid;
    grid-template-rows: repeat(12, auto);
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    left: 0;
    transform: translateY(-6px);
    min-width: unset;
  }
  /* Triángulo apunta al centro del trigger — wrap mide 90px, centro = 45px */
  .nav-dropdown--wide::before {
    left: 45px;
    transform: translateX(-50%);
  }
  .nav-dropdown-wrap:hover .nav-dropdown--wide,
  .nav-dropdown-wrap.open .nav-dropdown--wide {
    transform: translateY(0);
  }
}

/* ── Móvil: dropdown como acordeón dentro del menú hamburguesa ── */
@media (max-width: 1024px) {
  .nav-dropdown::before {
    display: none !important;
  }
  .nav-dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--gold) !important;
    border-top: none !important;
    border-radius: 0 !important;
    min-width: unset !important;
    padding: 0 !important;
    margin: 0 0 0 1rem !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease !important;
    z-index: auto !important;
  }
  .nav-dropdown-wrap.open .nav-dropdown {
    max-height: 9999px !important;
    overflow: visible !important;
    padding: 4px 0 8px !important;
  }
  .nav-links .nav-dropdown a {
    font-size: 14px !important;
    padding: 8px 14px !important;
    border-bottom: 1px solid var(--grey) !important;
  }
  .nav-links .nav-dropdown a:last-child {
    border-bottom: none !important;
  }
}

/* ── 6. SECTIONS ────────────────────────────────────────────── */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.section-grey  { background: var(--grey); }
.section-blue  { background: var(--blue); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header h2 { margin-bottom: 1rem; }
.section-intro {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.65;
}
.section-blue .section-intro { color: rgba(255,255,255,0.8); }

h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.section-blue h2 { color: var(--white); }

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

/* ── 7. HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--blue);
  min-height: clamp(520px, 85vh, 780px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 40%, rgba(251,181,25,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at -10% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
  /* Wider container for hero */
  max-width: min(1400px, 94vw);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: rgba(255,255,255,0.85); }

.hero-text h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-top: 0.15em;
}

.hero-lead {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual — decorative grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(340px, 90%);
}

.hg-cell {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.6s ease, opacity 0.6s ease;
  animation: hg-pulse 6s ease-in-out infinite;
}
.hg-cell--gold { background: rgba(251, 181, 25, 0.25); }
.hg-cell--sm  { aspect-ratio: 1; }
.hg-cell--md  { aspect-ratio: 1; height: 90px; }
.hg-cell--lg  { aspect-ratio: 1; height: 110px; }
.hg-cell:nth-child(2)  { animation-delay: 0.8s; }
.hg-cell:nth-child(3)  { animation-delay: 1.6s; }
.hg-cell:nth-child(4)  { animation-delay: 2.4s; }
.hg-cell:nth-child(5)  { animation-delay: 0.4s; }
.hg-cell:nth-child(6)  { animation-delay: 1.2s; }
.hg-cell:nth-child(7)  { animation-delay: 2.0s; }
.hg-cell:nth-child(8)  { animation-delay: 0.6s; }
.hg-cell:nth-child(9)  { animation-delay: 1.8s; }

@keyframes hg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.96); }
}

.hero-wave {
  margin-top: auto;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: auto; }

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .breadcrumb { justify-content: center; }
}

/* ── 8. S1: QUIÉNES SOMOS ───────────────────────────────────── */
#quienes-somos .narrow { margin-inline: auto; }

#quienes-somos h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
#quienes-somos h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.lead-accent {
  font-size: var(--fs-lead);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

#quienes-somos p + p { margin-top: 1.25rem; }

/* ── 9. S2: DIFERENCIADORES ─────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--grey);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card h3 { margin-bottom: 0; }

.card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── 10. S3: MISIÓN ──────────────────────────────────────────── */
#mision .narrow { margin-inline: auto; }

#mision h2 {
  margin-bottom: 1.5rem;
  position: relative;
}
#mision h2::before {
  content: '"';
  position: absolute;
  top: -0.6em;
  left: -0.3em;
  font-size: 6rem;
  color: rgba(251, 181, 25, 0.2);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

#mision p {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
#mision p + p { margin-top: 1.25rem; }

/* ── 11. S4: CLIENTES ────────────────────────────────────────── */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0;
}

.col-card {
  background: var(--grey);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.col-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: var(--fs-sm);
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.tag-list li:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.profile-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text);
}
.profile-list li svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .two-cols { grid-template-columns: 1fr; }
}

/* ── 12. S5: DATOS DE MERCADO ────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block: 2.5rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--grey-mid);
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card--featured {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stat-card--featured:hover { box-shadow: var(--shadow-lg); }

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
  color: var(--blue);
}

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue);
}
.stat-card--featured .stat-number { color: var(--blue-dark); }

/* Stat card con texto (ej. "3 de cada 4") */
.stat-text {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--blue);
}

.stat-suffix {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-left: 0.25rem;
}

.stat-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.stat-source {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: auto;
  padding-top: 0.5rem;
}

.stats-footnote {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}
.stats-footnote strong { color: var(--text); }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-card--featured { transform: none; }
}

/* ── 13. S6: COMPROMISO ──────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey);
  font-size: var(--fs-lead);
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 14. S7: CTA ─────────────────────────────────────────────── */
.section-cta {
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(251,181,25,0.1) 0%, transparent 70%);
  animation: cta-glow 4s ease-in-out infinite alternate;
}
@keyframes cta-glow {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.section-cta .container { position: relative; z-index: 1; }
.section-cta h2 { margin-bottom: 1rem; }
.section-cta p {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── 15. S8: FAQs ────────────────────────────────────────────── */
.faqs-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-mid);
}
.faq-item:first-child { border-top: 1px solid var(--grey-mid); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-lead);
  color: var(--dark);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
  display: flex;
}
details[open] .faq-icon { transform: rotate(180deg); }
details[open] .faq-question { color: var(--blue); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}
details[open] .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer a { color: var(--blue); text-decoration: underline; }
.faq-answer a:hover { color: var(--blue-dark); }

/* ── 16. FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.85);
}

/* — Barra de redes sociales — */
.social-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  gap: 0 !important;
}
@keyframes social-icon-bounce {
  0%   { transform: translateY(0)   scale(1); }
  35%  { transform: translateY(-7px) scale(1.18); }
  65%  { transform: translateY(-2px) scale(1.06); }
  100% { transform: translateY(0)   scale(1); }
}
.social-block {
  flex: 0 0 calc(33.333% - 0px) !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: filter 0.25s ease;
  overflow: hidden;
}
.social-block:hover { filter: brightness(1.14) saturate(1.08); }
.social-block a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  gap: 0.6rem !important;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  transition: letter-spacing 0.3s ease, gap 0.3s ease;
}
.social-block a:hover { letter-spacing: 0.14em; gap: 0.85rem !important; }
.color-white { color: var(--white) !important; }
.social-block a:hover .social-icon-img {
  animation: social-icon-bounce 0.52s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.bg-fb {
  background-image: url('assets/FACE.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-insta {
  background-image: url('assets/INSTA.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-in {
  background-image: url('assets/LINKEDIN FONDO.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-logo { background: #ffffff; }
.social-block i { font-size: 1.1rem; }
.social-block svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-icon-img { height: 24px; width: auto; display: block; flex-shrink: 0; }
.footer-logo { height: 28px; width: auto; }

/* ── Iconos circulares del nav ── */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
}
.nav-icon-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.nav-icon-btn img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  display: block;
}
.nav-icons-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* — Logos de pago — */
.footer-payments {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.5rem;
}
.footer-payments-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.fp-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.fp-badge svg { opacity: 0.85; }
.fp-openpay { color: #7dcfb1; }
.fp-openpay svg { color: #7dcfb1; }
.fp-paypal  { color: #c2e0ff; }
.fp-paypal svg { color: #c2e0ff; }

/* — Contenido principal — */
.footer-main { padding-block: 2.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  transition: color var(--transition), letter-spacing 0.3s ease;
  display: inline-block;
}
.footer-col a:hover { color: var(--gold); letter-spacing: 0.08em; }

/* Contacto */
.footer-contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.footer-contact-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.footer-contact-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(255,255,255,0.25);
}
.footer-contact-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.footer-contact-phone {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
}
.footer-contact-phone a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact-phone a:hover { color: var(--gold); }

/* Aviso legal */
.footer-legal-col p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* — Barra inferior — */
.footer-bottom {
  background: #1a3d78;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
.footer-bottom-inner p { margin: 0; }
.footer-bottom-inner a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-inner a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .social-container { flex-direction: column !important; }
  .social-block { flex: 0 0 100% !important; width: 100% !important; height: 38px !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── 18. RESPONSIVE GLOBAL ───────────────────────────────────── */

/* Tablet ancho (1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2rem;
    padding-top: clamp(2rem, 4vw, 3rem);
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
  }
  .hero-text h1 {
    white-space: normal;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .hero-lead { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .breadcrumb { justify-content: center; }

  /* Stats */
  .stats-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .stat-card--featured { transform: none; }

  /* Secciones */
  .section { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .section-header { margin-bottom: 1.75rem; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact-inner { flex-direction: column; gap: 0.5rem; }
}

/* Móvil (480px) */
@media (max-width: 480px) {
  /* Nav */
  .nav-logo img { height: 36px; }

  /* Hero */
  .hero-text h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-lead { font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Checklist */
  .checklist li { font-size: 0.95rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.4rem; }
  .footer-payments-inner { gap: 1rem; }
  .social-block { height: 40px !important; }
}

/* ── HOME CAROUSEL ───────────────────────────────────────────── */
.home-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}
.home-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.home-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}
.home-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 80vh;
}
@media (min-width: 769px) {
  .home-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.42) 16%, rgba(255,255,255,0.10) 28%, transparent 40%);
    pointer-events: none;
    z-index: 1;
  }
}
.home-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
}
.home-carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.home-carousel-prev { left: 1rem; }
.home-carousel-next { right: 1rem; }
.home-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.home-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.home-carousel-dot.active { background: var(--gold); transform: scale(1.25); }

/* ── HOME BUSCADOR ───────────────────────────────────────────── */
.home-buscador {
  background: var(--white);
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.home-buscador-form {
  display: flex;
  align-items: center;
  max-width: 640px;
  margin-inline: auto;
  border: 2px solid var(--grey-mid);
  border-radius: 100px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.home-buscador-form:focus-within {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.home-buscador-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-base);
  color: var(--text);
  background: transparent;
  font-family: inherit;
}
.home-buscador-btn {
  background: var(--gold);
  border: none;
  padding: 0 1.25rem;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--dark);
  transition: background var(--transition);
  flex-shrink: 0;
}
.home-buscador-btn:hover { background: var(--gold-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 17. WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}


/* ═══════════════════════════════════════════════════════════
   UI/UX PRO MAX — GLOBAL ENHANCEMENTS
   promos.maci.com.mx
═══════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, #f59e0b 100%);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 112px; right: 24px;
  width: 36px; height: 36px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              background 0.2s, box-shadow 0.2s;
  pointer-events: none;
  z-index: 500;
  box-shadow: 0 4px 14px rgba(37,88,169,0.35);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--blue-dark, #1a3f7a);
  box-shadow: 0 6px 20px rgba(37,88,169,0.5);
  transform: translateY(-2px) scale(1.05);
}
.back-to-top:active { transform: scale(0.95); }
@media (max-width: 768px) {
  .back-to-top { bottom: 100px; right: 16px; width: 32px; height: 32px; }
}


  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Button Ripple ── */
.btn, .nav-cta, .faq-cta-btn, .ti-cta-btn, .md-cta-btn {
  position: relative;
  overflow: hidden;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: btn-ripple 0.5s ease-out forwards;
  pointer-events: none;
}
@keyframes btn-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ── Card hover lift ── */
.tc, .step-card, .faq-item, .pm-card,
[data-aos] > .card-inner,
.ti-feat-card {
  transition: transform 0.22s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.22s ease !important;
}
.tc:hover, .step-card:hover, .pm-card:hover, .ti-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(37,88,169,0.16) !important;
}

/* ── ph-stats counter ── */
.phs-val {
  display: inline-block;
  transition: color 0.3s;
}
.ph-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ph-stat.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero shimmer overlay ── */
.ph::before {
  animation: ph-drift 8s ease-in-out infinite alternate;
}
@keyframes ph-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.1); }
}

/* ── Nav link underline slide ── */
.nav-links a:not(.btn)::after {
  transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1) !important;
}

/* ── FAQ accordion smooth height ── */
.faq-answer {
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.25s ease !important;
}
.faq-question .faq-chevron {
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1) !important;
}

/* ── Stagger entrance for faq-cat ── */
.faq-cat-label {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.faq-cat-label.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ── Image fade-in on load ── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ── Section entrance: slide up ── */
[data-ux-enter] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.1,0.64,1);
}
[data-ux-enter].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion: disable all custom animations */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .back-to-top,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .ph::before,
  [data-ux-enter],
  .ph-stat,
  .faq-cat-label { animation: none !important; transition: none !important; }
  .ph-stat, .faq-cat-label, [data-ux-enter] { opacity: 1 !important; transform: none !important; }
}

/* ── WhatsApp Float — Pulse (box-shadow, funciona en position:fixed) ── */
@keyframes wa-ring {
  0%   { box-shadow: 0 4px 14px rgba(37,211,102,.45), 0 0 0 0   rgba(37,211,102,.55); }
  65%  { box-shadow: 0 4px 14px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0);  }
  100% { box-shadow: 0 4px 14px rgba(37,211,102,.45), 0 0 0 0   rgba(37,211,102,0);  }
}
.whatsapp-float {
  animation: wa-ring 2.6s ease-out infinite;
}
.whatsapp-float:hover {
  animation: none;
  box-shadow: 0 6px 22px rgba(37,211,102,.6);
  transform: scale(1.08);
}

/* ── Sticky Quote CTA Bar ── */
.sticky-quote-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a3d78;
  border-top: 3px solid #fbb519;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 400;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.1,0.64,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.sticky-quote-bar.visible {
  transform: translateY(0);
}
.sqb-text {
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.3;
  flex: 1;
}
.sqb-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
}
.sqb-trust {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: .02em;
}
.sqb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fbb519;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(251,181,25,.4);
  transition: transform .18s, box-shadow .18s, background .15s;
}
.sqb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(251,181,25,.55);
  background: #f0ad0e;
  color: #111;
}
.sqb-btn svg { flex-shrink: 0; }
@media (max-width: 540px) {
  .sticky-quote-bar { padding: 10px 14px; }
  .sqb-text { font-size: 12px; }
  .sqb-text strong { font-size: 13px; }
  .sqb-btn { font-size: 12px; padding: 9px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none !important; }
  .sticky-quote-bar { transition: none !important; }
}

/* ── Payment logos — larger size ── */
.footer-payments-inner img {
  height: 48px;
  width: auto;
  image-rendering: auto;
}





