/* ============================================================
   LYPAT AUTOPARTES — Hoja de estilos principal
   Versión 2.0 — Diseño profesional, responsive 100%
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #111111;
  --dark:        #1a1a1a;
  --dark2:       #2c2c2c;
  --red:         #c0392b;
  --red-dark:    #a93226;
  --red-light:   rgba(192,57,43,0.08);
  --gray-light:  #f4f4f4;
  --gray-border: #e5e5e5;
  --gray-mid:    #777;
  --white:       #ffffff;
  --green-wa:    #25d366;
  --green-dark:  #1da851;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 8px rgba(0,0,0,0.07);
  --shadow:      0 2px 18px rgba(0,0,0,0.10);
  --shadow-h:    0 8px 32px rgba(0,0,0,0.18);
  --transition:  0.22s ease;
  --section-pad: clamp(56px, 8vw, 96px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* Focus accesible */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* ===== UTILIDADES ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--gray-mid);
  max-width: 600px;
  margin-top: 12px;
  line-height: 1.7;
}
.section-sub--light { color: #aaa; }

.section-header        { margin-bottom: clamp(36px, 5vw, 52px); }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

.divider-red {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px 0 0;
}
.divider-red--center { margin-left: auto; margin-right: auto; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  min-height: 48px;           /* mínimo táctil */
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  user-select: none;
}
.btn svg { flex-shrink: 0; width: 16px; height: 16px; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red     { background: var(--red);      color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 4px 16px rgba(192,57,43,0.35); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-wa      { background: var(--green-wa);  color: var(--white); border-color: var(--green-wa); }
.btn-wa:hover  { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

.btn-dark    { background: var(--dark2);    color: var(--white); border-color: var(--dark2); }
.btn-dark:hover { background: #3a3a3a; border-color: #3a3a3a; }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; min-height: 40px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar__items { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.topbar__item  {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.topbar__item svg { width: 12px; height: 12px; flex-shrink: 0; }
.topbar__cta {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity var(--transition);
}
.topbar__cta:hover { opacity: 1; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  border-bottom-color: rgba(255,255,255,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  gap: 16px;
}

.header__logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }

.logo-name {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
}
.logo-name span { color: var(--red); }

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  margin-top: 3px;
}

.header__nav   { display: flex; align-items: center; gap: 24px; }
.nav__links    { display: flex; gap: 4px; }
.nav__links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: #bbb;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.2px;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  letter-spacing: 1px;
  transition: color var(--transition), background var(--transition);
  width: 100%;
  text-align: center;
  max-width: 320px;
}
.mobile-nav a:hover  { color: var(--red); background: rgba(192,57,43,0.08); }
.mobile-nav__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.16); }
.mobile-nav__close svg  { width: 22px; height: 22px; }
.mobile-nav__wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  margin-top: 12px;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
.mobile-nav__wa:hover { background: var(--green-dark) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.88) 38%, rgba(0,0,0,0.38) 100%),
    url('https://images.unsplash.com/photo-1563720223185-11003d516935?w=1600&q=80') center/cover no-repeat;
}

/* Línea decorativa lateral */
.hero__bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vh, 100px) 0 clamp(60px, 8vh, 80px);
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.35);
  color: #e07070;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__badge svg { width: 12px; height: 12px; flex-shrink: 0; }

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__title span { color: var(--red); }
.hero__title em {
  font-style: normal;
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 6px;
}

.hero__sub {
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-item svg { color: var(--green-wa); width: 14px; height: 14px; flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.35);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--red);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.stat-item__number {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== CATEGORÍAS ===== */
.categories { padding: var(--section-pad) 0; background: var(--gray-light); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-border);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), border-bottom-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.cat-card:hover {
  border-color: rgba(192,57,43,0.15);
  border-bottom-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition);
}
.cat-card:hover .cat-card__icon { background: rgba(192,57,43,0.14); }
.cat-card__icon svg { width: 22px; height: 22px; color: var(--red); }

.cat-card__title {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cat-card__desc { font-size: 0.75rem; color: var(--gray-mid); line-height: 1.5; }

.categories__cta { text-align: center; }

/* ===== POR QUÉ LYPAT ===== */
.why { padding: var(--section-pad) 0; background: var(--dark); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(36px, 5vw, 52px);
}

.why-card {
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(192,57,43,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.why-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(192,57,43,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card__icon svg { width: 20px; height: 20px; color: var(--red); }
.why-card__title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.why-card__text  { font-size: 0.84rem; color: #888; line-height: 1.65; }

/* ===== MARCAS ===== */
.brands { padding: var(--section-pad) 0; background: var(--white); }

.brands__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: clamp(32px, 4vw, 48px) 0;
}

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #555;
  background: var(--gray-light);
  transition: border-color var(--transition), color var(--transition),
              background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  min-width: 130px;
}
.brand-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.15);
}

.brands__cta { text-align: center; }

/* ===== CTA — COTIZACIÓN ===== */
.cta-section { padding: var(--section-pad) 0; background: var(--black); text-align: center; }

.cta-section__icon {
  width: 64px;
  height: 64px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cta-section__icon svg { width: 28px; height: 28px; color: var(--red); }

.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-section__sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #888;
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cta-section__note { font-size: 0.76rem; color: #555; }

/* ===== UBICACIÓN ===== */
.location { padding: var(--section-pad) 0; background: var(--white); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: clamp(36px, 5vw, 52px);
  align-items: start;
}

.location__info { display: flex; flex-direction: column; gap: 22px; }

.loc-block { display: flex; gap: 14px; align-items: flex-start; }
.loc-block__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-block__icon svg { width: 18px; height: 18px; color: var(--red); }

.loc-block__body {}
.loc-block__title {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.loc-block__text { font-size: 0.92rem; color: var(--black); line-height: 1.65; }

.horario-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 3px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.horario-grid .dia  { color: var(--dark2); font-weight: 600; }
.horario-grid .hora { color: var(--black); }
.horario-grid .cerrado { color: #bbb; }

.location__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-h);
  border: 1.5px solid var(--gray-border);
}
.location__map iframe { display: block; width: 100%; height: 420px; border: none; }

/* ===== PAGOS ===== */
.payments { padding: var(--section-pad) 0; background: var(--gray-light); }

.payments__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: clamp(32px, 4vw, 48px);
}

.pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pay-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pay-card svg { width: 28px; height: 28px; color: var(--dark2); }
.pay-card__label { font-size: 0.8rem; font-weight: 600; color: var(--dark2); text-align: center; line-height: 1.3; }

/* ===== FOOTER ===== */
.footer { background: #0d0d0d; color: var(--white); padding: 56px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo { margin-bottom: 16px; }
.footer__desc { font-size: 0.84rem; color: #777; line-height: 1.75; margin-bottom: 22px; max-width: 340px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer__social-btn:hover { background: var(--red); border-color: var(--red); }
.footer__social-btn svg { width: 16px; height: 16px; color: var(--white); }

.footer__col-title {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.85rem;
  color: #777;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
}
.footer__links a:hover { color: var(--white); }
.footer__links a svg { width: 12px; height: 12px; color: var(--red); flex-shrink: 0; }

.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer__contact-text { font-size: 0.83rem; color: #777; line-height: 1.6; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.76rem; color: #444; }
.footer__bottom-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.65);
}
.float-wa svg { width: 28px; height: 28px; color: var(--white); }

/* ===== BARRA INFERIOR MÓVIL ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 10px 14px;
  gap: 10px;
}
.mobile-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.82rem;
  padding: 12px 10px;
}

/* ===== FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible      { opacity: 1; transform: translateY(0); }
.fade-in-delay-1      { transition-delay: 0.07s; }
.fade-in-delay-2      { transition-delay: 0.14s; }
.fade-in-delay-3      { transition-delay: 0.21s; }
.fade-in-delay-4      { transition-delay: 0.28s; }
.fade-in-delay-5      { transition-delay: 0.35s; }

/* ============================================================
   RESPONSIVE — mobile-first breakpoints
============================================================ */

/* Tablet grande / laptop pequeño */
@media (max-width: 1100px) {
  .categories__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
  .categories__grid  { grid-template-columns: repeat(3, 1fr); }
  .why__grid         { grid-template-columns: repeat(2, 1fr); }
  .payments__grid    { grid-template-columns: repeat(3, 1fr); }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .location__grid    { grid-template-columns: 1fr; }
  .location__map iframe { height: 320px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
}

/* Teléfono grande */
@media (max-width: 640px) {
  .topbar { font-size: 0.72rem; }
  .topbar__items    { gap: 10px; }
  .topbar__item:nth-child(3) { display: none; }

  .nav__links, .header__nav > .btn { display: none; }
  .hamburger  { display: flex; }

  .categories__grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why__grid         { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; }
  .payments__grid    { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .mobile-bar { display: flex; }
  .float-wa   { bottom: 78px; right: 16px; width: 50px; height: 50px; }
  .float-wa svg { width: 24px; height: 24px; }
  body { padding-bottom: 68px; }

  .hero__content { max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; max-width: 360px; }

  .brands__row { gap: 10px; }
  .brand-chip  { padding: 13px 20px; font-size: 1.1rem; min-width: 90px; }

  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 360px; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__bottom-actions { width: 100%; }
  .footer__bottom-actions .btn { flex: 1; }
}

/* Teléfono pequeño */
@media (max-width: 480px) {
  .topbar__cta { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .payments__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__trust { gap: 14px; }
  .trust-item  { font-size: 0.73rem; }

  .location__actions { flex-direction: column; }
  .location__actions .btn { width: 100%; justify-content: center; }
}

/* Teléfono muy pequeño */
@media (max-width: 360px) {
  .categories__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { padding: 18px 10px 16px; }
  .payments__grid { grid-template-columns: 1fr 1fr; }
  .hero__badge { font-size: 0.65rem; }
}
