:root {
  --blue:         #024D96;
  --blue-dark:    #003366;
  --blue-light:   #e8f0fa;
  --orange:       #EC7C26;
  --orange-dark:  #D84B20;
  --orange-light: #fef3eb;
  --green-accent: #7FFF00;

  --white:        #ffffff;
  --off-white:    #f7f8fb;
  --gray-bg:      #edf1f6;
  --gray-line:    #dde3ec;
  --gray-mid:     #9aa5b4;
  --gray-text:    #5a6478;
  --dark:         #1a2332;
  --text:         #2d3a4e;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow:       0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --ease:         all 0.25s cubic-bezier(0.4,0,0.2,1);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--gray { background: var(--off-white); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.section-title--xl {
  font-size: clamp(2.4rem, 6.5vw, 3.4rem);
}

.section-title-secondary { display: none; }

.title-accent { color: var(--blue); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-top: 14px;
  max-width: 580px;
  line-height: 1.7;
}

.section-header { margin-bottom: 48px; }

/* =============================================
   BOTONES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border-radius: 100px;
  padding: 15px 28px;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236,124,38,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover {
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--ease);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  white-space: nowrap;
}

.logo-mark {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-text strong { color: var(--blue); }

.navbar-links { display: none; align-items: center; gap: 24px; }

.navbar-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: var(--ease);
}
.navbar-links a:hover { color: var(--blue); }

.nav-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px 20px 20px;
  z-index: 999;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-line);
  transition: var(--ease);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }

.mobile-menu-wa {
  margin-top: 8px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: #25d366 !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 12px 16px !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  justify-content: center;
}

/* =============================================
   HERO – mobile first
============================================= */
.hero {
  min-height: calc(100svh - 50px);
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light) 0%, transparent 70%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 0.97;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-ctas .btn { width: 100%; }

.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--gray-line);
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px; height: 36px;
  background: var(--gray-line);
  flex-shrink: 0;
}

/* Ilustración SVG */
.hero-illustration {
  display: none;
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
}

.hero-ilu-wrap { position: relative; }
.car-svg { width: 100%; height: auto; }

/* =============================================
   TRUST BAR
============================================= */
/* .trust-bar { background: var(--blue); padding: 10px 16px; height: 48px; display: flex; align-items: center; } */
.trust-bar { background: var(--blue); padding: 13px 16px; display: flex; align-items: center; }

.trust-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.trust-item svg { width: 16px; height: 16px; opacity: 0.8; flex-shrink: 0; }

/* =============================================
   SERVICIOS
============================================= */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card--featured {
  border-color: var(--blue);
  background: var(--blue-light);
  position: relative;
  overflow: hidden;
}

.service-card--featured::before {
  content: 'Especialidad';
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 100px;
  padding: 4px 12px;
}

.sc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.sc-icon svg { width: 26px; height: 26px; }
.sc-icon--blue   { background: var(--blue-light);   color: var(--blue); }
.sc-icon--gray   { background: var(--gray-bg);       color: var(--gray-text); }
.sc-icon--orange { background: var(--orange-light);  color: var(--orange-dark); }

.sc-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.sc-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}

.sc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.sc-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  transition: var(--ease);
  margin-top: auto;
}
.sc-cta:hover { color: var(--orange); gap: 10px; }

/* =============================================
   POR QUÉ HENRY
============================================= */
.why-grid { display: flex; flex-direction: column; gap: 48px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; }

.why-title-sm {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-desc { font-size: 0.9rem; color: var(--gray-text); line-height: 1.65; }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: var(--ease);
}
.review-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.rc-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.rc-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.rc-author { display: flex; align-items: center; gap: 10px; }

.rc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rc-avatar--2 { background: var(--orange); }

.rc-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.rc-source { font-size: 0.75rem; color: var(--gray-mid); margin-top: 2px; }

.reviews-note { font-size: 0.82rem; text-align: center; }
.reviews-note a { color: var(--blue); font-weight: 600; }
.reviews-note a:hover { text-decoration: underline; }

/* =============================================
   PROCESO – cards de igual altura garantizada
============================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.step {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.step:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 7px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  flex: 1;
}

.step-arrow { display: none; }
.steps-cta { margin-top: 40px; }
.steps-cta .btn { width: 100%; }

/* =============================================
   UBICACIÓN
============================================= */
.location-grid { display: flex; flex-direction: column; gap: 28px; }
.location-info { display: flex; flex-direction: column; gap: 18px; }

.info-row { display: flex; gap: 14px; align-items: flex-start; }

.info-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 3px;
}

.info-val {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

.info-link { color: var(--blue); font-weight: 600; }
.info-link:hover { color: var(--orange); text-decoration: underline; }

/* Badge de estado activo con acento verde */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(127,255,0,0.08);
  border: 1px solid rgba(127,255,0,0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-top: 8px;
}

.open-dot {
  width: 8px; height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: ping 2s infinite;
}

@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127,255,0,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(127,255,0,0); }
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-line);
  height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================
   CONTACTO
============================================= */
.contact-grid { display: flex; flex-direction: column; gap: 40px; }
.contact-left .section-sub { margin-bottom: 28px; }

.wa-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: var(--ease);
}
.wa-block:hover {
  border-color: #25d366;
  background: #dcfce7;
  transform: translateX(4px);
}

.wa-block-icon {
  width: 44px; height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.wa-block-icon svg { width: 22px; height: 22px; }

.wa-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  display: block;
  margin-bottom: 3px;
}

.wa-block-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #16a34a;
  display: block;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2,77,150,0.08);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 96px; }

.hp-field { display: none !important; visibility: hidden !important; }

.form-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.form-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-msg.success { display: block; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.form-msg.error   { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }

/* =============================================
   FOOTER – compacto
============================================= */
.footer { background: var(--dark); padding: 44px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--orange); color: var(--white); }

.social-btn--disabled { opacity: 0.3; pointer-events: none; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-links a:hover { color: var(--white); }

.footer-bottom { padding: 14px 0; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

.footer-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: var(--ease);
}
.footer-credit:hover { color: var(--orange); }

/* =============================================
   FAB WHATSAPP
============================================= */
.fab {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: var(--ease);
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

.fab-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
}
.fab:hover .fab-tooltip { opacity: 1; }

/* =============================================
   ANIMACIÓN SCROLL
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE – tablet 640px+
============================================= */
@media (min-width: 640px) {
  .section { padding: 80px 0; }

  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .service-card--featured { grid-column: 1 / -1; }

  /* Steps: 3 columnas iguales en tablet, altura forzada */
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .steps .step { height: 100%; }
  .step-arrow { display: none; }

  .form-row { grid-template-columns: 1fr 1fr; }

  .map-wrap { height: 320px; }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .steps-cta .btn { width: auto; }
}

/* =============================================
   RESPONSIVE – desktop 1024px+
============================================= */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }

  .navbar-links { display: flex; }
  .nav-cta { display: flex; }
  .hamburger { display: none; }

  .hero { padding: 120px 0 80px; }
  .hero-inner { flex-direction: row; align-items: center; gap: 48px; }
  .hero-text { flex: 1; min-width: 0; }
  /* Título en exactamente 2 líneas: ajusta el clamp al ancho disponible */
  .hero-title { font-size: clamp(2.8rem, 4.2vw, 4.6rem); }
  .hero-illustration { display: block; flex: 0 0 440px; }

  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .service-card--featured { grid-column: auto; }

  .why-grid { flex-direction: row; gap: 80px; align-items: flex-start; }
  .why-left { flex: 1; }
  .why-right { flex: 0 0 380px; }

  /* Steps con flechas visibles en desktop – grid garantiza igual altura */
  .steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }
  .step { height: auto; align-self: stretch; }
  .step-arrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gray-line);
    padding: 40px 4px 0;
    flex-shrink: 0;
  }
  .step-arrow svg { width: 20px; height: 20px; }

  .location-grid { flex-direction: row; gap: 48px; align-items: start; }
  .location-info { flex: 0 0 320px; }
  .map-wrap { flex: 1; height: 380px; }

  .contact-grid { flex-direction: row; gap: 64px; align-items: flex-start; }
  .contact-left { flex: 0 0 340px; }
  .contact-right { flex: 1; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
}
