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

:root {
  --teal:        #1B7B6D;
  --teal-dark:   #145F54;
  --teal-light:  #E8F4F2;
  --dark:        #1A2332;
  --dark-mid:    #243040;
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --gray-light:  #EDECEA;
  --text:        #2A2A2A;
  --text-light:  #666666;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-align: right;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-call:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-call svg { flex-shrink: 0; }

/* ─── NAV ─── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.header-nav > a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav > a:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown-trigger {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.5rem 0;
  transition: color 0.2s;
  user-select: none;
}
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--white); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.4rem;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a {
  padding: 0.55rem 0.9rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--off-white);
  padding: 0.65rem 2rem;
  margin-top: 68px;
  font-size: 0.8rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ─── HERO (main landing) ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 3rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,35,50,0.88) 0%, rgba(26,35,50,0.65) 55%, rgba(26,35,50,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px; width: 100%;
  text-align: center;
}
.hero-ctas { justify-content: center; }
.hero-stats { justify-content: center; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,123,109,0.25);
  border: 1px solid rgba(27,123,109,0.6);
  color: #7ECFC5;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  animation: pulse-border 2.5s ease-in-out infinite;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #7ECFC5;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,123,109,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(27,123,109,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27,123,109,0.45);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,123,109,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { text-align: left; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--teal); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,35,50,0.90) 0%, rgba(26,35,50,0.60) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 700px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.page-hero h1 span { color: var(--teal); }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.page-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--teal); padding: 1.5rem 2rem; }
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.trust-text span { font-size: 0.78rem; opacity: 0.82; }

/* ─── SECTION COMMONS ─── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.05;
  color: var(--dark); margin-bottom: 0.75rem;
}
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 520px; margin: 0 auto; }

/* ─── SERVICIOS ─── */
.servicios { background: var(--off-white); }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.servicio-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.servicio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.servicio-img { height: 210px; overflow: hidden; position: relative; }
.servicio-img img { transition: transform 0.5s ease; }
.servicio-card:hover .servicio-img img { transform: scale(1.06); }
.servicio-body { padding: 1.4rem; }
.servicio-icon {
  width: 44px; height: 44px;
  background: var(--teal-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.servicio-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.servicio-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.servicio-body .servicio-link { display: inline-block; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--teal); }
.servicio-body .servicio-link:hover { text-decoration: underline; }
.servicio-card:nth-child(4) { grid-column: 1 / 2; }
.servicio-card:nth-child(5) { grid-column: 2 / 4; }

/* ─── POR QUÉ ELEGIRNOS ─── */
.por-que { background: var(--white); }
.porq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.porq-item { text-align: center; padding: 2rem 1rem; border-radius: var(--radius); transition: background 0.2s; }
.porq-item:hover { background: var(--off-white); }
.porq-icon {
  width: 60px; height: 60px;
  background: var(--teal-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.porq-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.porq-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ─── GALERÍA ─── */
.galeria { background: var(--gray-light); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.galeria-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.galeria-item:first-child { grid-row: 1 / 3; }
.galeria-item img { transition: transform 0.5s ease; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span { color: var(--white); font-size: 0.88rem; font-weight: 600; }

/* ─── ZONA DE COBERTURA ─── */
.zona { background: var(--dark); }
.zona .section-title { color: var(--white); }
.zona .section-sub { color: rgba(255,255,255,0.6); }
.zona .section-label { color: #7ECFC5; }
.zona-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.zona-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.zona-pill:hover { border-color: var(--teal); color: var(--white); background: rgba(27,123,109,0.15); }
.zona-pill svg { opacity: 0.5; }

/* ─── CONTACTO ─── */
.contacto { background: var(--off-white); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contacto-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.1; }
.contacto-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contacto-detail { display: flex; align-items: flex-start; gap: 14px; }
.contacto-detail-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.contacto-detail-text strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; }
.contacto-detail-text span { font-size: 1rem; color: var(--text); font-weight: 500; }
.contacto-local-img { height: 180px; border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem; }
.contacto-cta-box { background: var(--dark); border-radius: 20px; padding: 2.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.contacto-cta-logo { height: 52px; width: auto; object-fit: contain; margin: 0 auto 1.2rem; }
.contacto-cta-box h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.contacto-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1.8rem; }
.btn-cta-large {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--teal); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s; margin-bottom: 0.8rem;
}
.btn-cta-large:hover { background: var(--teal-dark); transform: translateY(-2px); }
.contacto-email-link { display: inline-block; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.2s; }
.contacto-email-link:hover { color: rgba(255,255,255,0.85); }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding: 3rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 190px 190px 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  align-items: start;
}
.footer-brand img { height: 44px; width: auto; object-fit: contain; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.6; }
.footer-services h4, .footer-zones h4 { color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.footer-services ul, .footer-zones ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-services ul li a, .footer-zones ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-services ul li a:hover, .footer-zones ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-nap address { font-style: normal; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-nap address strong { display: block; color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── FAB MÓVIL ─── */
.fab {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 58px; height: 58px;
  background: var(--teal); border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,123,109,0.5);
  color: white;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
  background: var(--dark); border-top: 2px solid var(--teal);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.7); flex: 1; min-width: 200px; }
.cookie-banner p a { color: #7ECFC5; text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept { background: var(--teal); color: white; border: none; padding: 0.5rem 1.2rem; border-radius: 6px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1.2rem; border-radius: 6px; font-family: var(--font-body); font-size: 0.88rem; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ─── FORMULARIO ─── */
.formulario { background: var(--dark); }
.formulario .section-title { color: var(--white); }
.formulario .section-sub { color: rgba(255,255,255,0.55); }
.formulario .section-label { color: #7ECFC5; }
.form-card { background: var(--white); border-radius: 20px; padding: 2.5rem; max-width: 680px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group-lead { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-lead.full { grid-column: 1 / -1; }
.form-group-lead label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.form-group-lead input,
.form-group-lead select,
.form-group-lead textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--off-white); border: 1.5px solid #E0DEDB; border-radius: 10px; padding: 0.65rem 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.form-group-lead input:focus,
.form-group-lead select:focus,
.form-group-lead textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,123,109,0.12); }
.form-group-lead textarea { resize: vertical; min-height: 80px; }
.btn-form-submit { width: 100%; background: var(--teal); color: var(--white); border: none; padding: 0.95rem; border-radius: 12px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 0.5rem; }
.btn-form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-legal-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; }

/* ─── INCLUDES GRID (service pages) ─── */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.include-item { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.include-item .porq-icon { margin: 0 0 1rem 0; }
.include-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.include-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ─── PROCESS STEPS ─── */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; margin: 0 auto; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.process-step-num { width: 48px; height: 48px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.process-step-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.process-step-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ─── RELACIONADOS ─── */
.relacionados { background: var(--off-white); }
.relacionados-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.relacionado-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.2rem; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; display: block; }
.relacionado-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.relacionado-card .porq-icon { margin: 0 auto 0.75rem; }
.relacionado-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.relacionado-card p { font-size: 0.8rem; color: var(--text-light); }

/* ─── FAQ ACCORDION ─── */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; cursor: pointer; gap: 1rem; }
.faq-q strong { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.faq-q svg { flex-shrink: 0; color: var(--teal); transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.2rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* ─── INTRO CONTENT ─── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.intro-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.1; }
.intro-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; }
.intro-img { border-radius: var(--radius); overflow: hidden; height: 380px; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--teal); padding: 4.5rem 2rem; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--teal); box-shadow: none; margin: 0 auto; }
.cta-banner .btn-primary:hover { background: var(--off-white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .servicio-card:nth-child(4) { grid-column: auto; }
  .servicio-card:nth-child(5) { grid-column: auto; }
  .porq-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-services { grid-column: 1 / -1; order: -1; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .relacionados-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { height: 260px; }
}

@media (max-width: 640px) {
  .header { padding: 0 1rem; }
  .header-hours { display: none; }
  .hero { padding: 90px 1.2rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .porq-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .galeria-item:first-child { grid-row: 1 / 3; }
  section { padding: 3.5rem 1.2rem; }
  .fab { display: flex; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; }
  .relacionados-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 0.65rem 1.2rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 3rem); }
}
