/* ============================================================
   SERVIALTO — styles.css
   CSS compartido para todas las páginas
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rojo:        #D72B2B;
  --rojo-dark:   #B01E1E;
  --rojo-glow:   rgba(215,43,43,0.15);
  --negro:       #0E0E0E;
  --negro2:      #1A1A1A;
  --gris-dark:   #242424;
  --gris-mid:    #3A3A3A;
  --gris-light:  #F5F5F5;
  --blanco:      #FFFFFF;
  --texto:       #E8E8E8;
  --texto-muted: #888888;
  --verde-wa:    #25D366;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --ancho-max:    1400px;
  --padding-sec:  90px 60px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--negro); color: var(--texto); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--rojo);
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 100;
}
.topbar__horario { color: rgba(255,255,255,0.9); font-size: 13px; }
.topbar__phone {
  color: var(--blanco);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.topbar__phone:hover { opacity: 0.85; }

/* ── NAV ── */
.nav {
  background: var(--negro2);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--gris-mid);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--blanco);
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--rojo); }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--texto-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--blanco); }
.nav__cta {
  background: var(--rojo) !important;
  color: var(--blanco) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--rojo-dark) !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  width: 26px; height: 2px;
  background: var(--blanco);
  display: block;
  transition: 0.3s;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: var(--texto-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--texto-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blanco); }
.breadcrumb__sep { color: var(--gris-mid); }
.breadcrumb__current { color: var(--rojo); font-weight: 600; }

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--rojo);
  color: var(--blanco);
  font-size: 18px;
  padding: 16px 32px;
}
.btn--primary:hover { background: var(--rojo-dark); }
.btn--secondary {
  background: transparent;
  color: var(--blanco);
  font-size: 16px;
  padding: 16px 28px;
  border: 1px solid var(--gris-mid);
}
.btn--secondary:hover { border-color: #666; }
.btn--white {
  background: var(--blanco);
  color: var(--rojo);
  font-size: 18px;
  padding: 16px 32px;
}
.btn--outline-white {
  background: transparent;
  color: var(--blanco);
  font-size: 18px;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { border-color: var(--blanco); }
.btn--full { width: 100%; justify-content: center; }

/* ── SECCIÓN COMÚN ── */
.section { padding: var(--padding-sec); }
.section--dark  { background: var(--negro); }
.section--dark2 { background: var(--negro2); }

.section__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  color: var(--blanco);
  line-height: 1.05;
  margin-bottom: 14px;
}
.section__sub {
  font-size: 17px;
  color: var(--texto-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 52px;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--negro);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--rojo-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215,43,43,0.12);
  border: 1px solid rgba(215,43,43,0.4);
  color: #ff7070;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 26px;
  animation: fadeUp 0.5s ease both;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--rojo);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--blanco);
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero__title em { font-style: normal; color: var(--rojo); }
.hero__location {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--texto-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  animation: fadeUp 0.5s 0.15s ease both;
}
.hero__sub {
  font-size: 17px;
  color: var(--texto-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero__sub strong { color: var(--texto); }
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.25s ease both;
}
.hero__live {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--gris-mid);
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero__live-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}
.hero__live-text { font-size: 14px; color: var(--texto-muted); }
.hero__live-text strong { color: #22c55e; }

/* ── STATS ── */
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--gris-mid);
  animation: fadeUp 0.5s 0.35s ease both;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--blanco);
  line-height: 1;
}
.stat__num span { color: var(--rojo); }
.stat__label { font-size: 12px; color: var(--texto-muted); font-weight: 500; }

/* ── FORM ── */
.form-card {
  background: var(--negro2);
  border: 1px solid var(--gris-mid);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  animation: fadeUp 0.6s 0.2s ease both;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--rojo);
  border-radius: 8px 8px 0 0;
}
.form-card__title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--blanco); margin-bottom: 4px; }
.form-card__sub { font-size: 13px; color: var(--texto-muted); margin-bottom: 22px; }
.form__group { margin-bottom: 14px; }
.form__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--texto-muted); margin-bottom: 5px; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--gris-dark);
  border: 1px solid var(--gris-mid);
  border-radius: 4px;
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--rojo); }
.form__select option { background: var(--gris-dark); }
.form__textarea { resize: none; height: 76px; }
.form__trust { font-size: 12px; color: var(--texto-muted); text-align: center; margin-top: 10px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gris-dark);
  border-top: 1px solid var(--gris-mid);
  border-bottom: 1px solid var(--gris-mid);
  padding: 20px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--texto-muted);
  font-weight: 500;
}
.trust-item__icon { font-size: 20px; }
.trust-item__text strong { color: var(--blanco); display: block; font-size: 14px; }

/* ── SERVICIOS CARDS ── */
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.servicio-card {
  background: var(--gris-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: block;
}
.servicio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--rojo);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.servicio-card:hover { background: #2a2a2a; }
.servicio-card:hover::after { transform: scaleX(1); }
.servicio-card__num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-display); font-size: 72px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.servicio-card__icon { font-size: 46px; margin-bottom: 22px; display: block; }
.servicio-card__title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--blanco); margin-bottom: 10px; line-height: 1.1; }
.servicio-card__desc { font-size: 14px; color: var(--texto-muted); line-height: 1.6; margin-bottom: 24px; }
.servicio-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 11px; font-weight: 600; font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--texto-muted); border: 1px solid var(--gris-mid); padding: 4px 10px; border-radius: 2px; }
.servicio-card__arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rojo); margin-top: 20px; }

/* ── PROBLEMAS GRID ── */
.problemas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.problema-card {
  background: var(--gris-dark); padding: 32px 28px;
  position: relative; overflow: hidden; transition: background 0.25s;
}
.problema-card:hover { background: #2c2c2c; }
.problema-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--rojo); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.problema-card:hover::before { transform: scaleX(1); }
.problema-card__icon { font-size: 34px; margin-bottom: 14px; display: block; }
.problema-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); margin-bottom: 8px; line-height: 1.2; }
.problema-card__desc { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }

/* ── MARCAS ── */
.marcas-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; margin-top: 40px; }
.marca-item {
  background: var(--gris-dark); padding: 22px 16px; text-align: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--texto-muted); letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.marca-item:hover { background: #2a2a2a; color: var(--blanco); }

/* ── PROCESO ── */
.proceso-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 48px; position: relative;
}
.proceso-steps::before {
  content: ''; position: absolute; top: 32px; left: 80px; right: 80px;
  height: 1px; background: linear-gradient(to right, var(--rojo), var(--rojo-dark)); opacity: 0.4;
}
.step { padding: 0 28px; text-align: center; }
.step__num {
  width: 64px; height: 64px; background: var(--negro); border: 2px solid var(--rojo); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--rojo);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); margin-bottom: 8px; }
.step__desc { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }

/* ── GARANTÍAS ── */
.garantias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.garantia-card {
  background: var(--negro2); border: 1px solid var(--gris-mid); padding: 38px 32px; border-radius: 6px;
  transition: border-color 0.25s, transform 0.2s;
}
.garantia-card:hover { border-color: var(--rojo); transform: translateY(-4px); }
.garantia-card__big { font-family: var(--font-display); font-size: 54px; font-weight: 900; color: var(--rojo); line-height: 1; margin-bottom: 8px; }
.garantia-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--blanco); margin-bottom: 8px; }
.garantia-card__desc { font-size: 14px; color: var(--texto-muted); line-height: 1.6; }

/* ── ZONAS ── */
.zonas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 2px; margin-top: 40px; }
.zona-item {
  background: var(--gris-dark); padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--texto-muted);
  transition: background 0.2s, color 0.2s;
}
.zona-item:hover { background: #2a2a2a; color: var(--blanco); }
.zona-item__dot { width: 6px; height: 6px; background: var(--rojo); border-radius: 50%; flex-shrink: 0; }

/* ── POR QUÉ NOSOTROS ── */
.porque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--gris-mid); }
.feature-item:first-child { padding-top: 0; }
.feature-item__num { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--rojo); letter-spacing: 0.1em; min-width: 28px; padding-top: 3px; }
.feature-item__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--blanco); margin-bottom: 5px; }
.feature-item__desc { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }
.cta-box { background: var(--negro2); border: 1px solid var(--gris-mid); border-radius: 8px; padding: 46px 38px; text-align: center; }
.cta-box__num { font-family: var(--font-display); font-size: 92px; font-weight: 900; color: var(--rojo); line-height: 1; margin-bottom: 8px; }
.cta-box__label { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--blanco); margin-bottom: 30px; }
.cta-box__phone { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--blanco); margin-bottom: 20px; transition: color 0.2s; }
.cta-box__phone:hover { color: var(--rojo); }
.cta-box__note { font-size: 13px; color: var(--texto-muted); margin-top: 18px; line-height: 1.5; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 1000px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 820px; margin-top: 40px; }
.faq-item {
  background: var(--negro2); border: 1px solid transparent; padding: 22px 28px;
  cursor: pointer; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--gris-mid); }
.faq-item.open, .faq-item.active { border-color: var(--rojo); }
.faq-item__q { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item__icon { color: var(--rojo); font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-item__icon,
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { font-size: 14px; color: var(--texto-muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s, margin-top 0.3s; }
.faq-item.open .faq-item__a,
.faq-item.active .faq-item__a { max-height: 200px; margin-top: 12px; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--rojo);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-final__title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--blanco); line-height: 1.05; }
.cta-final__sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 8px; }
.cta-final__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* CTA final con form (landings) */
.cta-final--form {
  background: linear-gradient(135deg, #0d0505 0%, #3a0808 50%, #D72B2B 100%);
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.cta-final__form-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 28px;
}
.cta-final__form-box .form-card__title { color: var(--blanco); margin-bottom: 20px; }
.cta-final__form-box input,
.cta-final__form-box select {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px; color: white; font-family: var(--font-body); font-size: 16px;
  padding: 12px 13px; outline: none; margin-bottom: 12px; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.cta-final__form-box input:focus,
.cta-final__form-box select:focus { border-color: white; }
.cta-final__form-box select option { background: #1a1a1a; }
.cta-final__form-box .btn--submit {
  width: 100%; background: white; color: var(--rojo);
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  padding: 15px; border: none; border-radius: 4px; cursor: pointer;
  transition: opacity 0.2s; letter-spacing: 0.04em;
}
.cta-final__form-box .btn--submit:hover { opacity: 0.92; }

/* ── FOOTER ── */
.footer {
  background: var(--negro);
  border-top: 1px solid var(--gris-mid);
  padding: 36px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
.footer__logo span { color: var(--rojo); }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a { font-size: 13px; color: var(--texto-muted); transition: color 0.2s; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__nav a:hover { color: var(--blanco); }
.footer__copy { font-size: 12px; color: var(--texto-muted); }

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--verde-wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waIn 1s 2s ease both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float__tip {
  position: absolute; right: 68px;
  background: var(--negro2); color: var(--blanco);
  font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: 4px;
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s;
  border: 1px solid var(--gris-mid);
}
.wa-float:hover .wa-float__tip { opacity: 1; }

/* ── STICKY MÓVIL ── */
.phone-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--rojo); color: white;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  text-align: center; padding: 16px; z-index: 998; letter-spacing: 0.04em;
}

/* ── ANIMACIONES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes waIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 40px; min-height: auto; gap: 40px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .problemas-grid { grid-template-columns: repeat(2, 1fr); }
  .marcas-grid { grid-template-columns: repeat(3, 1fr); }
  .proceso-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .proceso-steps::before { display: none; }
  .garantias-grid { grid-template-columns: 1fr; }
  .porque-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-final--form { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --padding-sec: 52px 20px; }

  .topbar { padding: 7px 14px; }
  .topbar__horario { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
  .topbar__phone { font-size: 13px; white-space: nowrap; }

  .nav { padding: 0 16px; height: 56px; }
  .nav__logo { font-size: 22px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links--open {
    display: flex; flex-direction: column; gap: 20px;
    position: fixed; top: 56px; left: 0; right: 0;
    background: var(--negro2); padding: 24px 20px;
    border-bottom: 1px solid var(--gris-mid); z-index: 98;
  }

  .hero { padding: 28px 20px 44px; }
  .hero__title { font-size: 40px; }
  .hero__badge { font-size: 11px; padding: 5px 11px; margin-bottom: 18px; }
  .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .hero__btns { gap: 10px; }
  .btn--primary, .btn--secondary { width: 100%; justify-content: center; font-size: 16px; padding: 15px 20px; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 28px; padding-top: 20px; }
  .stat { padding: 12px 8px; border-bottom: 1px solid var(--gris-mid); }
  .stat__num { font-size: 24px; }

  .trust-bar { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-item { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--gris-mid); }
  .trust-item:last-child { border-bottom: none; }

  .servicio-card { padding: 32px 20px; }
  .servicio-card__title { font-size: 22px; }

  .problemas-grid { grid-template-columns: 1fr; }
  .marcas-grid { grid-template-columns: repeat(2, 1fr); }
  .proceso-steps { grid-template-columns: 1fr; }
  .garantias-grid { grid-template-columns: 1fr; }
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }

  .cta-final { padding: 44px 20px; flex-direction: column; }
  .cta-final__btns { flex-direction: column; gap: 10px; }
  .btn--white, .btn--outline-white { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

  .cta-final--form { padding: 52px 20px; }

  .footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__nav { flex-wrap: wrap; gap: 14px; }

  .form-card { padding: 24px 18px; }
  .form__input, .form__select, .form__textarea { font-size: 16px; }

  .phone-sticky { display: block; }
  .wa-float { bottom: 78px; right: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 25px; height: 25px; }

  .breadcrumb { display: none; }
}

/* ── NAV LINK ACTIVO ── */
.nav__link--active {
  color: var(--blanco) !important;
  position: relative;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--rojo);
  border-radius: 2px;
}

/* ── LOGO IMAGEN EN NAV ── */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .nav__logo-img { height: 36px; }
}
/* ============================================================
   LOGO MEJORADO - CON HERRAMIENTAS Y SERVICIOS
   ============================================================ */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rojo), #b71c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(215, 43, 43, 0.3);
}

.nav__logo:hover .nav__logo-icon {
  transform: rotate(0deg);
}

.nav__logo-icon-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  border: 2px solid var(--negro);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--blanco);
  line-height: 1;
}

.nav__logo-text span {
  color: var(--rojo);
}

.nav__logo-small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--texto-muted);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .nav__logo-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .nav__logo-text {
    font-size: 20px;
  }
  .nav__logo-small {
    font-size: 9px;
  }
}

/* Eliminar estilos anteriores del logo que puedan interferir */
.nav__logo-img {
  display: none; /* Ocultamos la imagen anterior */
}
/* ══ FIXES MÓVIL GLOBAL ════════════════════════════════════ */
@media (max-width: 480px) {
  body { overflow-x: hidden; }

  /* Topbar no se corta */
  .topbar {
    font-size: 11px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
  }

  /* Nav padding */
  .nav {
    padding: 0 16px !important;
  }

  /* Secciones generales */
  .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero */
  .hero {
    padding: 24px 16px !important;
    grid-template-columns: 1fr !important;
  }
  .hero__title {
    font-size: clamp(36px, 9vw, 52px) !important;
  }

  /* Trust bar scroll horizontal */
  .trust-bar {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding: 12px 16px !important;
    gap: 16px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0 !important; }

  /* Servicios grid */
  .servicios-grid {
    grid-template-columns: 1fr !important;
  }

  /* Zonas grid */
  .zonas-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Formulario */
  .form-card {
    padding: 20px 16px !important;
  }

  /* Footer nav wrap */
  .footer__nav {
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
  }
}
