/* ══════════════════════════════════════════════════
   HOME.CSS — BIOS v8 FINAL
══════════════════════════════════════════════════ */

.page-body { padding-top: 0; }

/* ══════════════════════════════════════════════════
   TOPBAR BUSCADOR
══════════════════════════════════════════════════ */
.topbar-search {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  z-index: 990; height: var(--bar-h);
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(37,45,72,.08);
  display: flex; align-items: center;
}
.topbar-search-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  width: 100%; display: flex; align-items: center; justify-content: center;
}
.topbar-input-wrap { width: 50%; position: relative; min-width: 0; }
.topbar-input {
  width: 100%; height: 42px;
  border: 1.5px solid var(--gray-100); border-radius: var(--r-full);
  padding: 0 52px 0 var(--s-10);
  font-family: var(--f-body); font-size: .9rem; color: var(--gray-800);
  background: var(--gray-50); outline: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.topbar-input::placeholder { color: var(--gray-400); }
.topbar-input:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(69,99,165,.12);
}

.topbar-btn {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; background: var(--blue); color: #fff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease-base); box-shadow: var(--sh-blue);
}
.topbar-btn:hover { background: var(--blue-dark); transform: translateY(-50%) scale(1.08); }

.topbar-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  z-index: 200; max-height: 300px; overflow-y: auto; display: none;
}
.topbar-results.open { display: block; }
.topbar-result-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) var(--s-4); cursor: pointer; gap: var(--s-3);
  border-bottom: 1px solid var(--gray-50); transition: background var(--ease-fast);
}
.topbar-result-item:last-child { border-bottom: none; }
.topbar-result-item:hover { background: var(--blue-xlight); }
.topbar-result-name  { font-size: .875rem; font-weight: 600; color: var(--black); }
.topbar-result-cat   { font-size: .7rem; color: var(--green); font-weight: 700; text-transform: uppercase; margin-top: 1px; }
.topbar-result-right { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.topbar-result-price { font-size: .95rem; font-weight: 700; color: var(--blue); white-space: nowrap; }
.topbar-result-add {
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--r-md); padding: var(--s-2) var(--s-3);
  font-size: .75rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 3px; transition: background var(--ease-fast);
}
.topbar-result-add:hover { background: var(--blue-dark); }
.topbar-result-add svg { width: 11px; height: 11px; }

/* ══════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--bar-h));
  margin-top: calc(var(--nav-h) + var(--bar-h));
  min-height: 500px; overflow: hidden; background: #fff;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s cubic-bezier(.65,0,.35,1);
  pointer-events: none; z-index: 1;
}
.hero-slide.active { opacity: 1; pointer-events: all; z-index: 2; }
.hero-slide-link { display: block; position: absolute; inset: 0; z-index: 2; }
.hero-slide-link[href="#"] { pointer-events: none; cursor: default; }
.hero-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  background: #fff; transform: scale(1);
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,   rgba(15,18,32,.35) 0%, transparent 25%),
    linear-gradient(to bottom, rgba(15,18,32,.10) 0%, transparent 15%);
}
.hero-progress {
  position: absolute; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--green));
  z-index: 20; width: 0%; transition: width linear;
  box-shadow: 0 0 8px rgba(152,176,69,.5);
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 15; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.13); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.28); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease-base);
}
.hero-arrow:hover { background: rgba(255,255,255,.24); transform: translateY(-50%) scale(1.06); }
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow-prev { left: clamp(var(--s-4), 3vw, var(--s-8)); }
.hero-arrow-next { right: clamp(var(--s-4), 3vw, var(--s-8)); }
.hero-dots {
  position: absolute; bottom: var(--s-5); left: 50%; transform: translateX(-50%);
  z-index: 15; display: flex; align-items: center; gap: var(--s-3);
  background: rgba(15,18,32,.38); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-full);
  padding: var(--s-2) var(--s-4);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: var(--r-full);
  background: rgba(255,255,255,.3); border: none; padding: 0; cursor: pointer;
  transition: all var(--ease-base);
}
.hero-dot.active { width: 24px; background: var(--green-light); box-shadow: 0 0 8px rgba(152,176,69,.5); }
.hero-dot:hover:not(.active) { background: rgba(255,255,255,.6); }
.hero-counter {
  font-family: var(--f-body); font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.5); padding-left: var(--s-2);
  border-left: 1px solid rgba(255,255,255,.2); white-space: nowrap;
}
.hero-counter strong { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════════════════
   PROCESO DE COTIZACIÓN
══════════════════════════════════════════════════ */
.proceso {
  padding: var(--s-16) 0 var(--s-14);
  background: var(--white); position: relative; overflow: hidden;
}
.proceso-label {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: var(--s-3);
}
.proceso-label::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.proceso-title {
  font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; color: var(--black); margin-bottom: var(--s-12);
}
.proceso-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5); margin-bottom: var(--s-12);
}
.paso-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: var(--s-8) var(--s-6) var(--s-6);
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
  position: relative; overflow: hidden; transition: all var(--ease-base);
}
.paso-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(69,99,165,.2); }
.paso-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  transform: scaleX(0); transition: transform var(--ease-base);
}
.paso-item:hover::before { transform: scaleX(1); }
.paso-num-bg {
  position: absolute; bottom: -16px; right: -8px;
  font-family: var(--f-display); font-size: 7rem; font-weight: 700; line-height: 1;
  color: rgba(69,99,165,.06); pointer-events: none; user-select: none; overflow: hidden; max-width: 100%;
}
.paso-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-xlight); border: 1.5px solid rgba(69,99,165,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-5); flex-shrink: 0; transition: all var(--ease-base);
}
.paso-item:hover .paso-circle { background: var(--blue); border-color: var(--blue); }
.paso-circle svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; transition: stroke var(--ease-base); }
.paso-item:hover .paso-circle svg { stroke: #fff; }
.paso-num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--f-body); font-size: .68rem; font-weight: 700;
  margin-bottom: var(--s-3); box-shadow: 0 2px 8px rgba(152,176,69,.4);
}
.paso-label { font-family: var(--f-body); font-size: 1rem; font-weight: 700; color: var(--black); line-height: 1.3; }
.paso-arrow { display: none; }
.proceso-cta { display: flex; justify-content: center; }
.proceso-btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  background: var(--blue); color: #fff; border-radius: var(--r-full);
  padding: var(--s-4) var(--s-10); font-family: var(--f-body);
  font-size: 1rem; font-weight: 700; box-shadow: var(--sh-blue);
  transition: all var(--ease-base); text-decoration: none;
}
.proceso-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(69,99,165,.45); }
.proceso-btn svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════ */
.trust-bar {
  margin-top: var(--s-10); padding: var(--s-4) 0;
  position: relative; overflow: hidden;
}
.trust-bar-bg {
  position: absolute; inset: -20%;
  background-image: url('/assets/img/salaespera.jpg');
  background-size: cover; background-position: center;
  will-change: transform; z-index: 0;
}
.trust-bar-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,45,90,.94) 0%, rgba(46,66,128,.90) 100%);
  z-index: 1;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.trust-bar::after {
  content: ''; position: absolute; top: -80px; right: -80px; z-index: 2;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(152,176,69,.12) 0%, transparent 65%);
  pointer-events: none;
}
.trust-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: var(--r-xl); overflow: hidden;
}
.trust-item {
  background: rgba(255,255,255,.04);
  padding: var(--s-5) var(--s-6);
  text-align: center;
  transition: background var(--ease-base);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--s-2);
}
.trust-item:hover { background: rgba(255,255,255,.08); }
.trust-num {
  display: flex; align-items: baseline;
  justify-content: center; gap: var(--s-1);
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1;
}
.trust-num sup { font-size: var(--s-6); color: var(--green-light); font-style: normal; font-family: var(--f-body); }
.trust-desc { font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1.5; max-width: 180px; }
.trust-link { font-size: .75rem; font-weight: 700; color: var(--green-light); text-decoration: none; letter-spacing: .03em; transition: color var(--ease-fast); }
.trust-link:hover { color: #fff; }

/* ══════════════════════════════════════════════════
   ESTUDIOS POPULARES
══════════════════════════════════════════════════ */
.populares {
  padding: var(--s-16) 0; background: var(--off-white);
  position: relative; overflow: hidden;
}
.populares::before {
  content: 'BIOS'; position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); font-size: 18vw; font-weight: 700;
  color: rgba(69,99,165,.04); line-height: 1; pointer-events: none; user-select: none;
}
.populares-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--s-10); flex-wrap: wrap; gap: var(--s-4);
}
.ver-todos-link { display: flex; align-items: center; gap: var(--s-2); font-size: .875rem; font-weight: 600; color: var(--blue); transition: gap var(--ease-base); }
.ver-todos-link:hover { gap: var(--s-3); }
.ver-todos-link svg { width: 16px; height: 16px; }
.estudios-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-5); position: relative; z-index: 1; }
.estudio-card { background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--gray-100); box-shadow: var(--sh-sm); overflow: hidden; display: flex; flex-direction: column; transition: all var(--ease-base); }
.estudio-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(69,99,165,.2); }
.estudio-card-img-wrap { height: 140px; overflow: hidden; position: relative; flex-shrink: 0; }
.estudio-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.65,0,.35,1); }
.estudio-card:hover .estudio-card-img { transform: scale(1.06); }
.estudio-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,18,32,.5) 0%, transparent 60%); }
.estudio-promo-badge { position: absolute; top: var(--s-3); left: var(--s-3); background: var(--green); color: #fff; border-radius: var(--r-full); padding: 2px var(--s-3); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.estudio-card-price-overlay { position: absolute; bottom: var(--s-3); right: var(--s-3); background: rgba(15,18,32,.7); backdrop-filter: blur(8px); border-radius: var(--r-md); padding: 2px var(--s-3); font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: #fff; }
.estudio-card-price-overlay.promo { color: var(--green-light); }
.estudio-card-body { padding: var(--s-4); flex: 1; display: flex; flex-direction: column; }
.estudio-card-cat  { font-size: .68rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--s-1); }
.estudio-card-name { font-family: var(--f-body); font-size: .95rem; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: var(--s-2); }
.estudio-card-desc { font-size: .8rem; color: var(--gray-400); line-height: 1.55; flex: 1; margin-bottom: var(--s-4); }
.estudio-card-footer { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); }
.estudio-card-price-old  { font-size: .75rem; color: var(--gray-200); text-decoration: line-through; line-height: 1; }
.estudio-card-price-curr { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.estudio-card-price-curr small { font-size: .65rem; font-family: var(--f-body); font-weight: 500; color: var(--gray-400); }
.estudio-add-btn { display: flex; align-items: center; gap: var(--s-1); background: var(--blue-xlight); color: var(--blue); border: 1px solid rgba(69,99,165,.2); border-radius: var(--r-lg); padding: var(--s-2) var(--s-3); font-family: var(--f-body); font-size: .78rem; font-weight: 700; cursor: pointer; transition: all var(--ease-bounce); white-space: nowrap; flex-shrink: 0; }
.estudio-add-btn svg { width: 14px; height: 14px; transition: transform var(--ease-bounce); }
.estudio-add-btn:hover { background: var(--blue); color: #fff; transform: scale(1.05); }
.estudio-add-btn:hover svg { transform: rotate(90deg); }
.estudio-add-btn.added { background: var(--green-xlight); color: var(--green-dark); border-color: rgba(152,176,69,.3); }

/* ══════════════════════════════════════════════════
   CATEGORÍAS
══════════════════════════════════════════════════ */
.categorias { padding: var(--s-16) 0; background: var(--white); }
.categorias-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--s-10); flex-wrap: wrap; gap: var(--s-4); }
.cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-5); }
.cat-card { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--gray-100); background: var(--white); box-shadow: var(--sh-sm); transition: all var(--ease-base); display: flex; flex-direction: column; text-decoration: none; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(69,99,165,.2); }
.cat-img-wrap { position: relative; height: 130px; overflow: hidden; flex-shrink: 0; }
.cat-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.65,0,.35,1); }
.cat-card:hover .cat-img { transform: scale(1.05); }
.cat-pill { position: absolute; top: var(--s-3); right: var(--s-3); background: rgba(15,18,32,.55); backdrop-filter: blur(6px); color: #fff; font-size: .7rem; font-weight: 600; border-radius: var(--r-full); padding: 2px var(--s-3); }
.cat-body { padding: var(--s-4); flex: 1; display: flex; flex-direction: column; }
.cat-accent { height: 2.5px; border-radius: 2px; margin-bottom: var(--s-3); }
.cat-accent-blue  { background: var(--blue); }
.cat-accent-dblue { background: var(--blue-dark); }
.cat-accent-slate { background: #3d5a96; }
.cat-accent-green { background: var(--green); }
.cat-icon-row { display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-1); }
.cat-ico { width: 28px; height: 28px; border-radius: var(--r-md); background: var(--blue-xlight); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-ico svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; }
.cat-ico-green { background: var(--green-xlight); }
.cat-ico-green svg { stroke: var(--green-dark); }
.cat-name { font-size: .95rem; font-weight: 700; color: var(--black); }
.cat-sub  { font-size: .78rem; color: var(--gray-400); margin-top: var(--s-1); margin-bottom: var(--s-3); flex: 1; line-height: 1.5; }
.cat-cta  { display: inline-flex; align-items: center; gap: var(--s-2); font-size: .8rem; font-weight: 600; color: var(--blue); transition: gap var(--ease-base); }
.cat-cta svg { width: 12px; height: 12px; stroke: var(--blue); fill: none; transition: transform var(--ease-base); }
.cat-card:hover .cat-cta { gap: var(--s-3); }
.cat-card:hover .cat-cta svg { transform: translateX(3px); }
.cat-cta-green { color: var(--green-dark); }
.cat-cta-green svg { stroke: var(--green-dark); }
.cats-ver-todas { margin-top: var(--s-8); display: flex; justify-content: center; }
.cats-ver-todas-btn { display: inline-flex; align-items: center; gap: var(--s-2); border: 1.5px solid var(--gray-200); border-radius: var(--r-full); padding: var(--s-3) var(--s-8); font-family: var(--f-body); font-size: .875rem; font-weight: 600; color: var(--blue); background: var(--white); transition: all var(--ease-base); cursor: pointer; }
.cats-ver-todas-btn:hover { border-color: var(--blue); background: var(--blue-xlight); }
.cats-ver-todas-btn svg { width: 15px; height: 15px; stroke: var(--blue); fill: none; }

/* ══════════════════════════════════════════════════
   RESULTADOS PARALLAX
══════════════════════════════════════════════════ */
.resultados-cta { padding: var(--s-20) 0; position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.resultados-bg { position: absolute; inset: -30%; background-image: url('/assets/img/resultadoshome.jpg'); background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.resultados-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,45,90,.96) 0%, rgba(46,66,128,.92) 50%, rgba(30,45,90,.96) 100%); z-index: 1; }
.resultados-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; z-index: 2; pointer-events: none; }
.resultados-orb { position: absolute; top: -80px; right: -80px; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(152,176,69,.18) 0%, transparent 65%); z-index: 2; pointer-events: none; }
.resultados-inner { position: relative; z-index: 3; max-width: 580px; }
.resultados-title { font-family: var(--f-display); font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: var(--s-4); }
.resultados-sub { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: var(--s-5); max-width: 440px; }
.resultados-list { display: flex; flex-direction: column; gap: var(--s-3); list-style: none; padding: 0; }
.resultados-list li { display: flex; align-items: center; gap: var(--s-3); color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500; }
.resultados-list li svg { color: var(--green-light); flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — CONSOLIDADO SIN DUPLICADOS
══════════════════════════════════════════════════ */
@media(max-width: 1024px) {
  .estudios-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid     { grid-template-columns: repeat(2, 1fr); }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .proceso-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media(max-width: 768px) {
  /* Topbar */
  .topbar-input-wrap { width: 90%; }

  /* Hero — imagen fluida en mobile */
  .hero { height: auto; margin-top: calc(var(--nav-h) + var(--bar-h)); min-height: unset; overflow: visible; }
  .hero-slide { position: relative; inset: auto; opacity: 0; height: 0; overflow: hidden; transition: none; pointer-events: none; }
  .hero-slide.active { opacity: 1; height: auto; overflow: visible; pointer-events: all; }
  .hero-slide-link { position: relative; inset: auto; display: block; }
  .hero-slide-img { position: relative; inset: auto; width: 100%; height: auto; object-fit: unset; object-position: unset; display: block; background: #fff; }
  .hero-slide::after { display: none; }
  .hero-progress { display: none; }
  .hero-arrow    { display: none; }
  .hero-dots { position: relative; left: auto; transform: none; bottom: auto; justify-content: center; margin: var(--s-3) 0; background: transparent; border: none; backdrop-filter: none; }

  /* Proceso */
  .proceso-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
  .proceso-btn   { padding: var(--s-4) var(--s-6); font-size: .9rem; }

  /* Grids */
  .estudios-grid { grid-template-columns: 1fr; }
  .cats-grid     { grid-template-columns: 1fr; }
}

@media(max-width: 480px) {
  .proceso-strip { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
}

@media(max-width: 768px) and (orientation: landscape) {
  .proceso-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-2); }
  .paso-circle   { width: 44px; height: 44px; }
  .paso-circle svg { width: 18px; height: 18px; }
  .paso-label    { font-size: .75rem; }
  .paso-num-bg   { font-size: 3rem; }
}