*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --navy:    #0B2545;
  --navy-mid:#134074;
  --gold:    #C8A84B;
  --gold-lt: #E8D5A3;
  --cream:   #F7F4EE;
  --white:   #FFFFFF;
  --text:    #1C1C2E;
  --muted:   #5A6478;
  --border:  #DDD8CC;
  --wapp:    #25D366;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(11,37,69,.10);
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
 
/* ─── UTILITIES ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #b8962e; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,168,75,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
 
/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(11,37,69,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  gap: 8px;
}
.nav-logo span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo span:last-child {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--wapp);
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
}
.nav-cta:hover { background: #1fb855; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; }
 
/* ─── HERO ─── */
#inicio {
  min-height: 100vh;
  background: linear-gradient(140deg, #071a35 0%, #0B2545 50%, #134074 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
#inicio::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 70%);
  pointer-events: none;
}
#inicio::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,64,116,.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,.15);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-tagline {
  color: var(--gold-lt);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 4px; line-height: 1.3; }
 
.hero-photo-wrap { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; }
.hero-photo-frame {
  width: 340px; height: 420px;
  border-radius: 200px 200px 160px 160px;
  border: 2px solid rgba(200,168,75,.3);
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-caption {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}
.hero-photo-caption span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
 
/* ─── HERO STATS BAR (ancho completo) ─── */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0 52px;
  border-top: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.hero-stat-item .hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-item .hero-stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}
.hero-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-stats-bar { padding: 24px 0 40px; gap: 0; }
  .hero-stat-item { padding: 0 12px; }
  .hero-stat-item .hero-stat-num { font-size: 2rem; }
  .hero-stat-item .hero-stat-label { font-size: .75rem; }
  .hero-stat-divider { height: 36px; }
}
 
/* ─── ASEGURADORAS ─── */
#aseguradoras {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.asseg-header { text-align: center; margin-bottom: 40px; }
.asseg-header p { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.asseg-header .tag { display: block; }
.logos-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logos-grid::-webkit-scrollbar { display: none; }
.logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: all .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.logo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,168,75,.15);
}
.logo-card .logo-img {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Real logo once uploaded */
.logo-card .logo-img img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Placeholder shown before real logo */
.logo-placeholder {
  width: 130px; height: 48px;
  border: 2px dashed var(--border);
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.logo-placeholder .ph-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-placeholder .ph-hint {
  font-size: .65rem;
  color: var(--muted);
}
.asseg-note {
  text-align: center;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--muted);
}
.asseg-note strong { color: var(--navy); }
 
/* ─── SERVICIOS ─── */
#servicios { padding: 100px 0; }
.servicios-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.servicios-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: stretch;
}
.servicios-grid::-webkit-scrollbar { display: none; }
.servicio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
}
.servicio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.servicio-card:hover { border-color: rgba(200,168,75,.4); box-shadow: var(--shadow); transform: translateY(-4px); }
.servicio-card:hover::before { transform: scaleX(1); }
.servicio-card.featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.servicio-card.featured::before { background: var(--gold); transform: scaleX(1); }
.servicio-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.servicio-card.featured .servicio-icon { background: rgba(200,168,75,.15); }
.servicio-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.servicio-card.featured h3 { color: var(--gold); }
.servicio-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.servicio-card.featured p { color: rgba(255,255,255,.65); }
.badge-esp {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,.15);
  padding: 4px 10px;
  border-radius: 50px;
}
 
/* Lista dentro de cards de cobertura */
.card-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-list li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.card-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.servicio-card.featured .card-list li { color: rgba(255,255,255,.7); }
.servicio-card.featured .card-list li::before { color: var(--gold); }
 
/* ─── POR QUÉ ─── */
#por-que {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#por-que::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.08) 0%, transparent 70%);
}
#por-que .section-title { color: var(--white); }
#por-que .section-sub { color: rgba(255,255,255,.55); }
.porq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.porq-items { display: flex; flex-direction: column; gap: 24px; }
.porq-item { display: flex; gap: 18px; align-items: flex-start; }
.porq-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,168,75,.15);
  border: 1px solid rgba(200,168,75,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.porq-text h4 { font-weight: 600; color: var(--white); margin-bottom: 4px; font-size: .97rem; }
.porq-text p { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.porq-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 20px;
  padding: 40px;
}
.porq-visual-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); margin-bottom: 20px; }
.coverage-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.coverage-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200,168,75,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.coverage-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 20px 0; }
.coverage-provinces { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.prov-badge {
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-lt);
}
 
/* ─── ESPECIALIDAD ─── */
#especialidad { padding: 100px 0; background: var(--cream); }
.espec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.espec-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: var(--shadow);
}
.espec-icon-big { font-size: 3rem; margin-bottom: 20px; display: block; }
.espec-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.espec-visual p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.espec-targets { display: flex; flex-wrap: wrap; gap: 8px; }
.espec-target {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy);
}
.espec-content .section-sub { max-width: 100%; }
.espec-items { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.espec-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s;
}
.espec-item:hover { border-color: var(--gold); }
.espec-item-icon { font-size: 1.4rem; }
.espec-item h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.espec-item p { font-size: .82rem; color: var(--muted); }
 
/* ─── TESTIMONIOS ─── */
#testimonios { padding: 100px 0; }
.test-head { text-align: center; margin-bottom: 52px; }
.test-head .section-sub { margin: 10px auto 0; }
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow .25s;
}
.test-card:hover { box-shadow: var(--shadow); }
.test-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.test-text { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.test-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
.test-role { font-size: .78rem; color: var(--muted); }
.test-placeholder-note {
  text-align: center;
  margin-top: 28px;
  font-size: .82rem;
  color: rgba(200,168,75,.7);
  background: rgba(200,168,75,.06);
  border: 1px dashed rgba(200,168,75,.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: inline-block;
}
 
/* ─── CONTACTO ─── */
#contacto { background: var(--navy); padding: 100px 0; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
#contacto .section-title { color: var(--white); }
#contacto .section-sub { color: rgba(255,255,255,.55); }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 3px; font-weight: 400; }
.contact-item a, .contact-item p {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
  display: block;
}
.contact-item a:hover { color: var(--gold); }
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: 20px;
  padding: 40px;
}
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
.contact-card p { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 28px; line-height: 1.6; }
.wapp-big {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wapp);
  color: var(--white);
  border-radius: 50px;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  margin-bottom: 16px;
}
.wapp-big:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.contact-card .email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.contact-card .email-link:hover { color: var(--gold); }
.contact-hours { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.4); }
 
/* ─── FOOTER ─── */
footer { background: #060f1e; color: rgba(255,255,255,.4); padding: 32px 0; font-size: .82rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 600; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
 
/* ─── WHATSAPP FLOTANTE ─── */
.wapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: all .25s;
  animation: wapp-pulse 3s ease-in-out infinite;
}
.wapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wapp-float svg { width: 30px; height: 30px; }
@keyframes wapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}
 
/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 20px 24px 28px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .mobile-menu a.wapp-mobile {
    background: var(--wapp);
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    border: none;
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 60px; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-frame { width: 220px; height: 260px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.7rem; }
  .servicios-grid { gap: 16px; }
  .porq-grid { grid-template-columns: 1fr; gap: 36px; }
  .espec-grid { grid-template-columns: 1fr; }
  .espec-visual { order: 2; }
  .espec-content { order: 1; }
  .test-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; gap: 36px; }
  .servicios-head { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .logos-grid { gap: 12px; }
  .logo-card { min-width: 130px; padding: 16px 20px; }
}