*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --azul:        #1a3a5c;
  --azul-med:    #1e4976;
  --azul-claro:  #2563a8;
  --acento:      #7ec8f7;
  --verde:       #25d366;
  --gris-bg:     #f7f8fa;
  --gris-borde:  #e8eaed;
  --texto:       #1e2329;
  --texto-sub:   #5a6270;
  --blanco:      #ffffff;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px;
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 8px 40px rgba(0,0,0,.13);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

header {
  background: var(--azul);
  color: var(--blanco);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 12px;
}
.logo { font-size: 1.25rem; font-weight: 800; white-space: nowrap; flex-shrink: 0; }
.logo span { color: var(--acento); }
nav { display: flex; gap: 2px; }
nav a {
  font-size: .875rem; font-weight: 500;
  padding: 7px 11px; border-radius: var(--r-sm);
  opacity: .82; transition: opacity .2s, background .2s; white-space: nowrap;
}
nav a:hover { opacity: 1; background: rgba(255,255,255,.1); }
.header-cta {
  background: var(--verde); color: var(--blanco);
  padding: 9px 18px; border-radius: 50px;
  font-weight: 700; font-size: .875rem;
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; box-shadow: 0 2px 10px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.45); }
.nav-toggle {
  display: none; background: none;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--blanco); padding: 6px 10px;
  border-radius: var(--r-sm); font-size: 1.2rem; line-height: 1;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--azul-med); padding: 12px 20px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--blanco); padding: 11px 0;
  font-size: .97rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1); opacity: .88;
}
.mobile-nav a:last-child { border-bottom: none; }

.hero {
  background: linear-gradient(150deg, var(--azul) 0%, #0d2035 100%);
  color: var(--blanco); padding: 72px 20px 64px; text-align: center;
}
.hero-content { max-width: 680px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(126,200,247,.12); border: 1px solid rgba(126,200,247,.3);
  color: var(--acento); font-size: .82rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.9rem, 5.5vw, 3rem); font-weight: 800;
  line-height: 1.18; margin-bottom: 18px; letter-spacing: -.5px;
}
.hero h1 em { font-style: normal; color: var(--acento); }
.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.12rem); opacity: .88;
  max-width: 520px; margin: 0 auto 36px;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 44px;
}
.btn-wa {
  background: var(--verde); color: var(--blanco);
  padding: 15px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  transition: transform .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,.52); }
.btn-tel {
  background: transparent; color: var(--blanco);
  padding: 15px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-tel:hover { border-color: var(--blanco); background: rgba(255,255,255,.08); }
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px;
}
.stat { padding: 0 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--acento); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: .78rem; opacity: .7; }

.servicios { background: var(--gris-bg); padding: 72px 20px; }
.section-hd { text-align: center; margin-bottom: 44px; }
.tag {
  display: inline-block; background: rgba(37,99,168,.1);
  color: var(--azul-claro); font-size: .75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800;
  color: var(--azul); margin-bottom: 10px; letter-spacing: -.3px;
}
.section-sub { color: var(--texto-sub); font-size: .97rem; max-width: 520px; margin: 0 auto; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--blanco); border-radius: var(--r-md);
  padding: 28px 24px 22px; box-shadow: var(--sh-sm);
  border: 1px solid var(--gris-borde);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.card-icon {
  width: 50px; height: 50px;
  background: rgba(26,58,92,.07); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--azul); margin-bottom: 8px; }
.card p { font-size: .92rem; color: var(--texto-sub); line-height: 1.6; flex: 1; }
.card-lnk {
  margin-top: 16px; color: var(--azul-claro);
  font-weight: 600; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.card-lnk:hover { gap: 8px; }
.card-lnk--secondary {
  display: block;
  margin-top: 6px;
  font-size: .85rem;
  opacity: .9;
}

.gradhermetic {
  background: linear-gradient(135deg, var(--azul) 0%, #0f2845 100%);
  color: var(--blanco); padding: 80px 20px;
}
.grad-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.gradhermetic-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(200px, 100%);
  max-height: 42px;
}
.gradhermetic-logo--sm { max-height: 32px; max-width: 150px; }
.gradhermetic-logo--card { max-height: 36px; max-width: 170px; }
.hero-badge--grad {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.grad-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 16px;
}
.grad-brand .gradhermetic-logo { max-height: 40px; }
.card-logo {
  margin-bottom: 14px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.card--gradhermetic .card-logo { margin-bottom: 12px; }
.motor-brands-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
}
.motor-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
}
.motor-brand--primary .motor-brand-logo { max-height: 36px; max-width: 130px; }
.motor-brands--card {
  margin-bottom: 12px;
  min-height: 40px;
}
.motor-brands--card .motor-brand-logo { max-height: 28px; max-width: 100px; }
.motor-brands--card .motor-brand-logo--somfy {
  filter: brightness(0) saturate(100%) invert(12%) sepia(42%) saturate(1200%) hue-rotate(182deg);
}
.motor-brands--hero {
  margin-bottom: 20px;
}
.motor-brands--hero .motor-brand {
  background: rgba(255,255,255,.95);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.motor-brands--hero .motor-brand-logo { max-height: 34px; max-width: 140px; }
.motor-brands--hero .motor-brand--primary .motor-brand-logo { max-height: 38px; }
.motor-brand-logo--somfy {
  filter: brightness(0) saturate(100%) invert(12%) sepia(42%) saturate(1200%) hue-rotate(182deg);
}
.motor-brands-note {
  margin: 12px 0 0;
  font-size: .88rem;
  opacity: .85;
}
.grad-lbl {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(126,200,247,.13); border: 1px solid rgba(126,200,247,.25);
  color: var(--acento); font-size: .75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .8px;
}
.grad-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -.3px;
}
.grad-text h2 span { color: var(--acento); }
.grad-text p { opacity: .87; line-height: 1.7; margin-bottom: 12px; font-size: .96rem; }
.grad-list { list-style: none; margin: 18px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.grad-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; opacity: .9; }
.check {
  width: 20px; height: 20px; background: var(--acento);
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--azul); font-weight: 900;
}
.grad-media {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4); position: relative;
}
.grad-media img { width: 100%; height: 380px; object-fit: cover; }
.content-figure--grad { margin: 0; position: relative; }
.content-figure--grad img { width: 100%; height: 380px; object-fit: cover; display: block; }
.content-figure--grad .content-figure-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(15,40,69,.85));
  color: #fff;
  font-size: .8rem;
}
.grad-media-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(15,40,69,.9); backdrop-filter: blur(8px);
  color: var(--blanco); padding: 9px 14px;
  border-radius: var(--r-sm); font-size: .8rem; font-weight: 600;
  border: 1px solid rgba(126,200,247,.25);
}

.como { padding: 72px 20px; }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 44px;
}
.step {
  background: var(--blanco); border: 1px solid var(--gris-borde);
  border-radius: var(--r-md); padding: 28px 20px;
  text-align: center; box-shadow: var(--sh-sm);
}
a.step-wa {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
a.step-wa:hover {
  border-color: var(--verde);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .18);
  transform: translateY(-2px);
}
a.step-wa:hover .step-n { background: var(--verde); }
a.step-wa:hover .step-cta { color: #0d6b60; }
a.step-wa:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 3px;
}
.step-n {
  width: 42px; height: 42px; background: var(--azul);
  color: var(--blanco); border-radius: 50%;
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: background .2s;
}
.step h3 { font-size: .97rem; font-weight: 700; color: var(--azul); margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--texto-sub); line-height: 1.55; margin-bottom: 10px; }
.step-cta {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--azul-claro);
}
.como-wa-hint {
  text-align: center;
  font-size: .88rem;
  color: var(--texto-sub);
  margin: 20px 0 0;
}
.como-wa-cta {
  text-align: center;
  margin-top: 20px;
}
.como-wa-cta .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
}
.tip-box {
  margin: 28px auto 0; max-width: 680px;
  background: #f0faf4; border: 1px solid #b7e4c7;
  border-radius: var(--r-md); padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 12px;
}
.tip-box p { font-size: .92rem; color: #1a6b3a; line-height: 1.6; }

.zonas { background: var(--gris-bg); padding: 72px 20px; }
.zonas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px; margin-top: 44px;
}
.zona {
  background: var(--blanco); border: 1px solid var(--gris-borde);
  border-radius: 50px; padding: 10px 14px;
  font-size: .87rem; font-weight: 500; color: var(--azul);
  text-align: center; display: block;
  transition: background .2s, color .2s, transform .2s;
}
.zona:hover { background: var(--azul); color: var(--blanco); transform: translateY(-2px); }
.zonas-more {
  text-align: center; margin-top: 24px;
}
.zonas-more a {
  color: var(--azul-claro); font-weight: 600; font-size: .95rem;
}

.faq { padding: 72px 20px; }
.faq-wrap { max-width: 740px; margin: 44px auto 0; }
.faq-item {
  border: 1px solid var(--gris-borde); border-radius: var(--r-md);
  margin-bottom: 10px; background: var(--blanco); box-shadow: var(--sh-sm); overflow: hidden;
}
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 22px; font-size: .97rem; font-weight: 600; color: var(--azul);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; line-height: 1.4;
}
.faq-ico {
  width: 26px; height: 26px; background: var(--gris-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
  transition: background .25s, transform .3s; color: var(--azul);
}
.faq-item.open .faq-ico { background: var(--azul); color: var(--blanco); transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body-in { padding: 0 22px 18px; font-size: .93rem; color: var(--texto-sub); line-height: 1.7; }
.faq-item.open .faq-body { max-height: 400px; }

.contacto { background: var(--gris-bg); padding: 72px 20px; }
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 44px;
}
.contacto-left h3 { font-size: 1.2rem; font-weight: 700; color: var(--azul); margin-bottom: 10px; }
.contacto-left p { color: var(--texto-sub); font-size: .94rem; margin-bottom: 24px; line-height: 1.65; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; }
.cta-btn {
  padding: 14px 20px; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; gap: 12px;
  transition: transform .2s; -webkit-tap-highlight-color: transparent;
}
.cta-btn:hover { transform: translateX(4px); }
.cta-btn.wa { background: var(--verde); color: var(--blanco); box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.cta-btn.tel { background: var(--azul); color: var(--blanco); box-shadow: 0 4px 14px rgba(26,58,92,.25); }
.cta-btn.form { background: var(--blanco); color: var(--azul-claro); border: 1.5px solid var(--azul-claro); }
.cta-btn.maps { background: var(--blanco); color: var(--azul); border: 1.5px solid var(--gris-borde); }
.contacto-right {
  background: var(--blanco); border-radius: var(--r-md);
  border: 1px solid var(--gris-borde); padding: 28px; box-shadow: var(--sh-sm);
}
.contacto-right h3 { font-size: 1rem; font-weight: 700; color: var(--azul); margin-bottom: 16px; }
.info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--gris-borde); font-size: .93rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.info-row strong { display: block; font-weight: 600; color: var(--texto); margin-bottom: 2px; }
.info-row span { color: var(--texto-sub); }

footer { background: #0d2035; color: rgba(255,255,255,.65); padding: 36px 20px; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: flex-start; margin-bottom: 24px;
}
.footer-brand .logo { font-size: 1.15rem; margin-bottom: 8px; }
.footer-year {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-left: 2px;
}
.footer-brand p { font-size: .85rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 700; margin-bottom: 12px; }
.footer-col a {
  display: block; font-size: .85rem; padding: 3px 0;
  opacity: .75; transition: opacity .2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; font-size: .8rem;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.footer-bottom a { opacity: .75; }
.footer-bottom a:hover { opacity: 1; }

.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 58px; height: 58px; background: var(--verde);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* Galería trabajos + YouTube (home) */
.trabajos {
  padding: 56px 20px;
  background: var(--gris-bg);
}
.trabajos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.trabajos-item {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gris-borde);
  background: var(--blanco);
  aspect-ratio: 3 / 2;
}
.trabajos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trabajos-cap {
  padding: 8px 12px;
  font-size: .78rem;
  color: var(--texto-sub);
}
.trabajos-empty {
  text-align: center;
  color: var(--texto-sub);
  max-width: 520px;
  margin: 0 auto 8px;
  line-height: 1.6;
}
.trabajos-maps-cta {
  text-align: center;
  margin-top: 28px;
}
.btn-maps {
  display: inline-block;
  padding: 12px 22px;
  background: var(--azul);
  color: var(--blanco);
  font-weight: 700;
  border-radius: var(--r-md);
  transition: background .2s;
}
.btn-maps:hover { background: var(--azul-claro); }
.trabajos-videos {
  padding: 48px 20px 56px;
  background: var(--blanco);
}
.trabajos-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.trabajos-video-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--azul);
}
.trabajos-video-desc {
  margin: 0 0 12px;
  font-size: .9rem;
  color: var(--texto-sub);
  line-height: 1.5;
}
.trabajos-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: #111;
}
.trabajos-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Reseñas Google (home) */
.reviews {
  padding: 56px 20px;
  background: var(--blanco);
}
.reviews--placeholder .reviews-cta-only {
  text-align: center;
  font-size: 1.05rem;
}
.reviews--placeholder .reviews-cta-only a {
  color: var(--azul-claro);
  font-weight: 700;
}
.reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.reviews-score-box {
  text-align: center;
  padding: 24px 20px;
  background: var(--gris-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--gris-borde);
}
.reviews-score {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
}
.reviews-stars-lg {
  display: block;
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin: 8px 0;
}
.reviews-count {
  font-size: .9rem;
  color: var(--texto-sub);
  margin-bottom: 12px;
}
.reviews-maps-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--azul-claro);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.review-card {
  padding: 18px 20px;
  border: 1px solid var(--gris-borde);
  border-radius: var(--r-md);
  background: var(--gris-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars {
  color: #f59e0b;
  font-size: .95rem;
  letter-spacing: 1px;
}
.review-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--texto);
  flex: 1;
}
.review-meta {
  font-size: .82rem;
  color: var(--texto-sub);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.review-meta cite { font-style: normal; font-weight: 600; color: var(--azul); }
.review-time::before { content: "·"; margin-right: 8px; }
.reviews-attribution {
  margin-top: 24px;
  font-size: .78rem;
  color: var(--texto-sub);
  text-align: center;
  line-height: 1.5;
}
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--texto-sub); }
@media (max-width: 768px) {
  .reviews-summary { grid-template-columns: 1fr; }
}

/* Mapa Google (home / contacto) */
.mapa-local {
  padding: 56px 20px 72px;
  background: var(--gris-bg);
}
.mapa-local .section-hd { text-align: left; margin-bottom: 20px; }
.mapa-local .section-title { text-align: left; }
.visit-notice {
  display: block;
  margin-top: 8px;
  font-size: .88rem;
  color: var(--texto-sub);
  line-height: 1.55;
}
.visit-notice--block {
  max-width: 640px;
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #fff;
  border-left: 4px solid var(--verde);
  border-radius: 6px;
  font-size: .92rem;
  color: var(--texto);
}
.visit-notice--block strong { color: var(--azul); }
.visit-notice a { color: var(--azul); font-weight: 600; }
.mapa-intro {
  color: var(--texto-sub);
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.65;
  font-size: .96rem;
}
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gris-borde);
  background: var(--blanco);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.map-actions a {
  color: var(--azul-claro);
  font-weight: 600;
  font-size: .92rem;
}
.map-actions a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .map-embed iframe { height: 280px; }
}

@media (max-width: 900px) {
  nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .grad-inner { grid-template-columns: 1fr; }
  .grad-media { order: -1; }
  .grad-media img { height: 260px; }
  .contacto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stat { padding: 12px 16px; border-right: none; width: 50%; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .hero { padding: 56px 16px 48px; }
  .servicios, .como, .zonas, .faq, .contacto, .gradhermetic { padding: 56px 16px; }
}
