﻿/* ============================================================
   EASY CAMINO SANTIAGO — style.css
   Versión multi-página para Netlify
   ============================================================ */

@import url('css2-1');

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

:root {
  --naranja:     #F3A949;
  --azul:        #56A1A4;
  --azul-dark:   #2D4A52;
  --azul-light:  #8FBECA;
  --naranja-dark:#d4882a;
  --crema:       #ECE7E2;
  --gris:        #5a6b6a;
  --dark:        #2D4A52;
  --text:        #2D4A52;
  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Lato', sans-serif;
}

html, body { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: white; font-weight: 400; line-height: 1.6; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ====== TIPOGRAFÍA GLOBAL — estilo Pilgrim ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--azul-dark);
  letter-spacing: -0.01em;
}
h1 { font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
p { font-family: var(--font-body); line-height: 1.7; }
strong { font-weight: 700; }

/* ====== NAVBAR ====== */
.ecs-nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.ecs-nav ul { list-style: none; display: flex; gap: 18px; align-items: center; }
.ecs-nav ul li { position: relative; }
.ecs-nav ul li a {
  color: var(--azul-dark); text-decoration: none;
  font-size: 0.88rem; font-family: var(--font-body);
  transition: color 0.2s; font-weight: 600;
}
.ecs-nav ul li a:hover { color: var(--naranja); }
.btn-nav {
  background: var(--azul) !important; color: white !important;
  padding: 10px 22px; border-radius: 25px; font-weight: 700 !important;
  font-family: var(--font-body); white-space: nowrap; font-size: 0.92rem;
  box-shadow: 0 3px 12px rgba(86,161,164,0.45);
}
.btn-nav:hover { background: var(--azul-dark) !important; box-shadow: 0 4px 18px rgba(86,161,164,0.6); }
.ecs-nav-logo { height: 52px; width: auto; display: block; mix-blend-mode: multiply; }

/* Dropdown rutas */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: white; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); min-width: 240px;
  padding: 10px 0 8px; z-index: 1000; border: 1px solid rgba(86,161,164,0.25);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block !important; padding: 9px 18px;
  color: var(--azul-dark) !important; font-size: 0.84rem !important;
  white-space: nowrap; border-bottom: 1px solid var(--crema);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--crema); color: var(--naranja) !important; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }

/* Lang toggle */
.lang-toggle { display: flex; gap: 4px; }
.lang-btn {
  background: transparent; border: 1px solid #8FBECA; color: var(--azul-dark);
  font-size: 0.78rem; font-family: var(--font-body); padding: 4px 10px;
  border-radius: 12px; cursor: pointer; transition: all 0.2s;
}
.lang-btn.active { background: var(--naranja); border-color: var(--naranja); color: white; font-weight: bold; }
.lang-btn:hover:not(.active) { background: var(--crema); }

/* Lang dropdown (desktop) */
.lang-dropdown { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid rgba(86,161,164,0.3);
  border-radius: 20px; padding: 5px 10px; cursor: pointer; font-size: 0.8rem;
  color: var(--azul-dark); font-family: var(--font-body); transition: background 0.2s;
}
.lang-trigger:hover { background: var(--crema); }
.lang-arrow { font-size: 0.6rem; color: #8FBECA; transition: transform 0.2s; }
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 150px; padding: 6px 0; z-index: 1000;
  border: 1px solid rgba(86,161,164,0.2);
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; font-size: 0.85rem; color: var(--azul-dark);
  font-family: var(--font-body); cursor: pointer; width: 100%;
  background: none; border: none; text-decoration: none; transition: background 0.15s;
}
.lang-option:hover { background: var(--crema); }
.lang-option.active { font-weight: 700; color: var(--naranja); }
.lang-flag { font-size: 1rem; }

/* Agente button */
.btn-agente {
  display: flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer;
  background: transparent; border: 2px solid #56A1A4;
  border-radius: 50px; padding: 4px 8px 4px 4px; transition: background 0.2s, border-color 0.2s;
}
.btn-agente:hover { background: rgba(86,161,164,.10); border-color: #56A1A4; }
.agente-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid #56A1A4; flex-shrink: 0; background: #56A1A4;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.agente-avatar img { width: 100%; height: 100%; object-fit: cover; }
.agente-avatar svg { width: 22px; height: 22px; fill: white; }
.agente-txt { line-height: 1.25; display: flex; flex-direction: column; }
.agente-txt strong { display: block; color: var(--azul-dark); font-size: 0.78rem; font-family: var(--font-body); }
.agente-txt span { color: #56A1A4; font-size: 0.7rem; font-family: var(--font-heading); font-weight: 700; }

/* Hamburger mobile */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--azul-dark); border-radius: 2px; }
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; background: white;
  z-index: 998; flex-direction: column; padding: 80px 24px 120px; overflow-y: auto;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  display: block; padding: 14px 0; border-bottom: 1px solid #ddeaec;
  color: var(--azul-dark); font-family: var(--font-body); font-size: 1rem; font-weight: 600;
}
.nav-mobile-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  font-size: 1.8rem; color: var(--azul-dark); cursor: pointer; line-height: 1;
}
.nav-mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; border-bottom: 1px solid #ddeaec;
  padding: 14px 0; color: var(--azul-dark); font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left;
}
.nav-mobile-sub-arrow { font-size: 0.7rem; color: var(--azul); transition: transform 0.2s; }
.nav-mobile-sub-toggle.open .nav-mobile-sub-arrow { transform: rotate(180deg); }
.nav-mobile-submenu { display: none; }
.nav-mobile-submenu.open { display: block; }
.nav-mobile-subroute {
  display: block; padding: 9px 0 9px 14px; border-bottom: 1px solid #f0f5f5;
  color: var(--azul-dark); font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 500; text-decoration: none;
}
.nav-mobile-subroute:hover { color: var(--naranja); }
.nav-mobile-overlay .nav-mobile-route { padding: 8px 0; font-size: 0.9rem; }

/* ====== HERO HOMEPAGE ====== */
.ecs-hero {
  background: linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url('img/hero-home-camino-santiago-peregrinos-galicia-desktop.png') center/cover no-repeat;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 100px 20px 60px;
}
@media (max-width: 768px) {
  .ecs-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
      url('img/hero-home-camino-santiago-peregrinos-galicia-mobile.png') center 40%/cover no-repeat;
    min-height: unset;
    padding: 110px 20px 60px;
  }
}
.ecs-hero h1 {
  color: white; font-size: 3.8rem; line-height: 1.15; max-width: 820px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  font-family: var(--font-heading); font-weight: 800;
}
.ecs-hero h1 span { color: var(--naranja); }
.ecs-hero p { color: #eee; font-size: 1.2rem; margin: 20px 0 36px; max-width: 600px; font-family: var(--font-body); }

/* ====== HERO PÁGINAS DE RUTA ====== */
.page-hero {
  min-height: 65vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 100px 24px 70px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.50));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 860px; width: 100%; text-align: center; }
.breadcrumb { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.95); }
.page-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 2.5rem; color: white; line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6); margin-bottom: 14px;
}
.page-hero h1 em { color: var(--naranja); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.85); font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6; max-width: 620px; margin: 0 auto 24px; }
.page-hero-badges, .hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  color: white; padding: 7px 16px; border-radius: 30px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: bold;
  backdrop-filter: blur(4px);
}
.hero-badge.orange { background: var(--naranja); border-color: var(--naranja); }
.hero-cta-group { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====== GALLERY SLIDER ====== */
.gallery-slider-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.gallery-viewport { flex: 1; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-track { display: flex; gap: 12px; padding: 4px 0; }
.gallery-slide { flex: 0 0 260px; height: 180px; border-radius: 12px; overflow: hidden; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; scroll-snap-align: start; }
.gallery-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #ddeaec; background: white; color: var(--azul-dark);
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: background 0.2s;
}
.gallery-btn:hover { background: var(--azul); color: white; border-color: var(--azul); }

/* ====== ROUTE STATS STRIP ====== */
.route-strip {
  background: var(--azul); display: flex;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.route-strip-item {
  text-align: center; padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.2); flex: 1; min-width: 120px;
}
.route-strip-item:last-child { border-right: none; }
.route-strip-item strong {
  display: block; color: var(--naranja);
  font-size: 1.5rem; font-family: var(--font-body); font-weight: 800;
  white-space: nowrap;
}
.route-strip-item span { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-family: var(--font-body); }

/* ====== BOTONES ====== */
/* BOTÓN PRINCIPAL */
.btn-primary {
  background: var(--azul);
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: var(--azul-dark);
}

/* BOTÓN SECUNDARIO */
.btn-secondary {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid var(--azul);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: var(--azul);
  color: white;
}

/* BOTÓN BLOQUE */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* GRUPO DE BOTONES */
.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* BOTÓN SECUNDARIO SOBRE FONDO OSCURO */
.btn-secondary-light {
  background: transparent;
  color: white;
  border: 1.5px solid white;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,0.14);
  color: white;
}

.btn-pricing {
  background: var(--azul); color: white; padding: 16px 30px;
  border-radius: 35px; font-size: 1rem; font-weight: bold;
  text-decoration: none; font-family: var(--font-body);
  display: inline-block; transition: transform 0.2s, background 0.2s;
  margin-top: 20px;
}
.btn-pricing:hover { transform: scale(1.02); background: var(--azul-dark); color: white; }

.btn-dark {
  background: var(--azul-dark); color: white; padding: 14px 32px;
  border-radius: 35px; font-size: 1rem; font-weight: bold;
  text-decoration: none; font-family: var(--font-body);
  display: inline-block; transition: transform 0.2s, background 0.2s;
}
.btn-dark:hover { transform: scale(1.02); background: #000; color: white; }

.pricing-section .section-subtitle { margin: 0 auto 28px; max-width: 740px; }
.pricing-section .pricing-note { margin-top: 32px; }

.btn-hero-primary {
    background: white; color: var(--azul); padding: 16px 40px;
    border-radius: 35px; font-size: 1.05rem; font-weight: bold;
    text-decoration: none; font-family: var(--font-body);
    transition: transform 0.2s, background 0.2s, color 0.2s; display: inline-block;
  }
  .btn-hero-primary:hover { transform: scale(1.04); background: var(--azul); color: white; }
.ecs-hero .btn-hero-primary { background: var(--azul); color: white; }
.ecs-hero .btn-hero-primary:hover { background: var(--azul-dark); color: white; }
  .btn-cta-primary {
    background: var(--azul); color: white; padding: 16px 40px;
    border-radius: 35px; font-size: 1.05rem; font-weight: bold;
    text-decoration: none; font-family: var(--font-body);
    transition: transform 0.2s, background 0.2s; display: inline-block;
  }
  .btn-cta-primary:hover { transform: scale(1.04); background: var(--azul-dark); }
  .btn-hero-secondary,
  .btn-cta-secondary {
    background: transparent; color: white; padding: 14px 36px;
    border-radius: 35px; font-size: 1rem; font-weight: bold;
    text-decoration: none; font-family: var(--font-body);
    border: 2px solid white; margin-left: 14px;
    transition: background 0.2s; display: inline-block;
  }
  .btn-hero-secondary:hover,
  .btn-cta-secondary:hover { background: rgba(255,255,255,0.15); }
/* ====== STATS ====== */
.ecs-stats {
  background: var(--azul); display: flex; justify-content: center;
  gap: 60px; padding: 28px 40px; flex-wrap: wrap;
}
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat strong { display: block; color: var(--naranja); font-size: 2rem; font-family: var(--font-body); }
.stat span { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-family: var(--font-body); }

/* ====== SECCIONES ====== */
section { padding: 80px 40px; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.1rem; color: var(--azul-dark); margin-bottom: 12px; }
.section-title p { color: var(--gris); font-size: 1.05rem; font-family: var(--font-body); max-width: 600px; margin: 0 auto; }
.section-title .linea { width: 60px; height: 4px; background: var(--naranja); margin: 16px auto 0; border-radius: 2px; }
.brochure-section .brochure-content { max-width: 760px; margin: 0 auto; text-align: center; }
.brochure-section .brochure-content p { margin-bottom: 22px; color: #5a6772; font-size: 1rem; line-height: 1.7; }
.brochure-btn { padding: 14px 42px; }

/* ====== TABS ====== */
.rutas-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.tab-btn {
  background: white; border: 2px solid var(--azul); color: var(--azul);
  padding: 11px 28px; border-radius: 30px; font-size: 0.95rem;
  font-family: var(--font-heading); font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.tab-btn:hover { background: var(--azul); color: white; }
.tab-btn.active { background: var(--naranja); border-color: var(--naranja); color: white; }
.ver-mas-btn {
  display: inline-block; background: transparent; border: 2px solid var(--azul); color: var(--azul);
  padding: 13px 36px; border-radius: 30px; font-size: 0.95rem; font-family: var(--font-body);
  font-weight: bold; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.ver-mas-btn:hover { background: var(--azul); color: white; }

/* ====== CARDS ====== */
.rutas { background: white; }
.ecs-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.card {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
.card-img { width: 100%; height: 200px; object-fit: cover; object-position: center center; display: block; }
.card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--azul), var(--azul-dark));
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.card-body { padding: 22px; }
.badge {
  background: rgba(86,161,164,0.1); color: var(--azul-dark); border: 1px solid rgba(86,161,164,0.3);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 12px; font-family: var(--font-body);
  display: inline-block; margin-bottom: 10px; letter-spacing: 0.5px; cursor: default;
}
.card-body h3 { font-size: 1.2rem; color: var(--azul-dark); margin-bottom: 8px; }
.card-body > p { color: var(--gris); font-size: 0.9rem; font-family: var(--font-body); line-height: 1.6; margin-bottom: 14px; }
.card-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.card-meta span { font-size: 0.8rem; color: var(--gris); font-family: var(--font-body); }
.card-meta span strong { color: var(--azul-dark); }
.precios-tabla { background: var(--crema); border-radius: 8px; padding: 12px; margin-bottom: 16px; font-family: var(--font-body); font-size: 0.82rem; }
.precio-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #dce9f0; color: var(--gris); }
.precio-row:last-child { border-bottom: none; }
.precio-row strong { color: var(--azul-dark); }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.precio-desde { font-size: 1.4rem; font-weight: bold; color: var(--naranja-dark); }
.precio-desde small { font-size: 0.78rem; font-weight: normal; color: var(--gris); font-family: var(--font-body); }
.btn-card {
  background: var(--azul); color: white; padding: 10px 22px;
  border-radius: 25px; text-decoration: none; font-size: 0.88rem;
  font-family: var(--font-heading); font-weight: 700; transition: background 0.2s;
}
.btn-card:hover { background: var(--azul-dark); color: white; }

/* ====== TABLA DE PRECIOS (páginas de ruta) ====== */
.pricing-section { background: var(--crema); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 920px; margin: 0 auto; }
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white; border-radius: 18px; padding: 32px 28px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s; position: relative;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--azul); }
.pricing-card.featured { border-color: var(--naranja); box-shadow: 0 8px 36px rgba(240,161,69,0.18); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--naranja); color: white; padding: 4px 18px;
  border-radius: 20px; font-family: var(--font-body); font-size: 0.75rem; font-weight: bold; white-space: nowrap;
}
.pricing-card h3 { color: var(--azul-dark); font-size: 1.1rem; margin-bottom: 6px; font-family: var(--font-body); }
.pricing-card .price { font-size: 2.5rem; font-weight: bold; color: var(--naranja-dark); margin: 16px 0 4px; font-family: var(--font-body); }
.pricing-card .price-sub { color: var(--gris); font-family: var(--font-body); font-size: 0.82rem; margin-bottom: 22px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 26px; }
.pricing-card ul li {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--gris);
  padding: 7px 0; border-bottom: 1px solid #ECE7E2; display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card ul li::before { content: '✓'; color: var(--azul); font-weight: bold; flex-shrink: 0; }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card .btn-primary { width: 100%; text-align: center; display: block; }
.pricing-card .btn-pricing { margin-top: auto; width: 100%; }
.pricing-card .btn-pricing:hover { transform: scale(1.02); }

/* ====== ITINERARIO ====== */
.itinerary-section { background: #f5f0eb; }
.itinerary { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.etapa {
  display: flex; gap: 0; align-items: stretch;
  background: white; border: 1px solid #d6eae6; border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.etapa:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.etapa-num {
  width: 64px; min-width: 64px;
  background: var(--azul); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
}
.etapa-content { flex: 1; padding: 20px 24px; }
.etapa-content h4, .etapa-content h3 {
  color: var(--azul-dark); font-size: 1.05rem; margin-bottom: 8px;
  font-family: var(--font-heading); font-weight: 700;
}
.etapa-content p { color: var(--gris); font-family: var(--font-body); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0; }
.etapa-meta { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.etapa-meta span {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 600;
  color: var(--azul); background: var(--crema);
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(86,161,164,0.18);
}

/* ====== QUÉ INCLUYE ====== */
.included-section { background: var(--crema); }
.included-section h2 { margin-bottom: 24px; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.included-item { background: white; border-radius: 12px; padding: 22px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; box-shadow: 0 2px 12px rgba(86,161,164,0.1); border-left: 3px solid var(--azul); }
.included-item h4 { color: var(--azul-dark); font-size: 0.92rem; margin-bottom: 8px; }
.included-item p { color: var(--gris); font-family: var(--font-body); font-size: 0.82rem; line-height: 1.6; margin: 0; }

/* ====== PKG INCLUYE — solo camino-frances-sarria ====== */
.pkg-section { background: var(--crema); padding: 72px 40px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pkg-item { background: white; border-radius: 16px; padding: 28px 20px; text-align: center; border: 1px solid rgba(86,161,164,0.14); box-shadow: 0 2px 10px rgba(86,161,164,0.07); }
.pkg-icon { width: 52px; height: 52px; background: rgba(86,161,164,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--azul); }
.pkg-icon svg { width: 24px; height: 24px; stroke: var(--azul); fill: none; }
.pkg-title { display: block; color: var(--azul-dark); font-size: 0.95rem; font-family: var(--font-heading); font-weight: 700; margin-bottom: 8px; }
.pkg-desc { color: var(--gris); font-size: 0.82rem; font-family: var(--font-body); line-height: 1.6; margin: 0; }
.pkg-note { max-width: 700px; margin: 36px auto 0; background: white; border-radius: 12px; padding: 20px 24px; border: 1px solid rgba(86,161,164,0.18); font-family: var(--font-body); font-size: 0.86rem; color: var(--gris); }
.pkg-note strong { color: var(--azul); }

/* ====== SERVICIOS ====== */
.servicios { background: white; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1050px; margin: 0 auto; }
.feature { text-align: center; padding: 28px 18px; border-radius: 14px; background: #f0f7f8; border: 1px solid rgba(86,161,164,0.18); box-shadow: 0 2px 10px rgba(86,161,164,0.08); transition: transform 0.2s; }
.feature:hover { transform: translateY(-4px); }
.feature-icon-wrap { width: 48px; height: 48px; background: none; border-radius: 0; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.feature-icon-img { width: 48px; height: 48px; filter: brightness(0) saturate(100%) invert(57%) sepia(20%) saturate(600%) hue-rotate(147deg) brightness(95%); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0 auto 16px; }
.feature-icon svg { width: 48px !important; height: 48px !important; max-width: 48px !important; max-height: 48px !important; }
/* Regla defensiva global: iconos en secciones de servicios/tarjetas — máx 48px */
.feature-icon-img,
.feature-icon-wrap img,
[class*="icon-img"] {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}
/* Regla defensiva global: iconos en sección de pasos — máx 34px */
.paso-icon,
.paso-icon-wrap img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  display: block !important;
}
.feature h3 { color: var(--azul-dark); font-size: 1rem; margin-bottom: 8px; }
.feature p { color: var(--gris); font-size: 0.88rem; font-family: var(--font-body); line-height: 1.6; }

/* ====== ICONOS ====== */
.footer-ico { display: inline-flex; vertical-align: middle; margin-right: 6px; color: var(--naranja); }
.footer-ico svg { width: 15px; height: 15px; }
.ecs-ico { display: inline-flex; vertical-align: middle; margin-right: 4px; color: var(--azul); flex-shrink: 0; }
.ecs-ico svg { width: 13px; height: 13px; }
.ecs-ico-lg { display: inline-flex; vertical-align: middle; margin-right: 7px; }
.ecs-ico-lg svg { width: 18px; height: 18px; }
.pago-item .pago-icon svg { width: 22px; height: 22px; }

/* ====== CÓMO FUNCIONA ====== */
.como { background: var(--azul); }
.como .section-title h2 { color: white; }
.como .section-title p { color: rgba(255,255,255,0.82); }
.como .section-title .linea { background: var(--naranja); }
.como .paso-card { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.como .paso-card h4 { color: white; }
.como .paso-card p { color: white; }
.como .paso-icon-wrap { background: rgba(255,255,255,0.20); }
.como .paso-card:not(:last-child)::after { color: rgba(255,255,255,0.5); }
.pasos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
.paso-card { background: white; border-radius: 16px; padding: 32px 20px 28px; text-align: center; box-shadow: 0 2px 18px rgba(86,161,164,0.09); border: 1px solid rgba(86,161,164,0.13); position: relative; }
.paso-num-label { position: absolute; top: 14px; left: 18px; font-size: 0.68rem; font-weight: 800; color: var(--azul); letter-spacing: 1px; font-family: var(--font-body); opacity: 0.65; }
.paso-icon-wrap { width: 72px; height: 72px; background: var(--azul); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.paso-icon { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.paso-card h4 { color: var(--azul-dark); font-size: 1rem; font-weight: 700; margin-bottom: 10px; font-family: var(--font-heading); line-height: 1.3; }
.paso-card p { color: var(--gris); font-size: 0.85rem; font-family: var(--font-body); line-height: 1.6; margin: 0; }
.paso-card:not(:last-child)::after { content: '›'; position: absolute; right: -14px; top: 68px; transform: translateY(-50%); font-size: 1.5rem; font-weight: 300; color: var(--azul); opacity: 0.35; line-height: 1; z-index: 2; pointer-events: none; }

/* ====== FAQ ====== */
.faq-section { background: white; }
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #B5D5D8; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul-dark);

  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  margin-top: 16px;
  margin-bottom: 6px;
}
.faq-q:focus {
  outline: 2px solid var(--azul);
  outline-offset: 3px;
}
.faq-q::after { content: '▾'; font-size: 1.2rem; color: var(--azul); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  color: #5f6f73;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.faq-item.open .faq-a { display: block; }

/* ====== FORMULARIO ====== */
.form-section { background: #f0f7f8; }
.form-container { max-width: 750px; margin: 0 auto; background: white; border-radius: 20px; padding: 44px; box-shadow: 0 6px 30px rgba(86,161,164,0.15); border: 1px solid #B5D5D8; }
.form-container h3 { color: var(--azul-dark); font-size: 1.5rem; margin-bottom: 6px; text-align: center; }
.form-sub { text-align: center; color: var(--gris); font-family: var(--font-body); font-size: 0.92rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.8rem; font-family: var(--font-heading); font-weight: 700; color: var(--azul-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #8FBECA;
  border-radius: 8px; font-size: 0.93rem; font-family: var(--font-body);
  color: var(--text); background: white; transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--azul); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-form { width: 100%; background: var(--azul); color: white; padding: 16px; border: none; border-radius: 35px; font-size: 1.05rem; font-weight: bold; font-family: var(--font-body); cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-form:hover { background: var(--azul-dark); transform: scale(1.02); }
.form-nota { text-align: center; color: var(--gris); font-size: 0.82rem; font-family: var(--font-body); margin-top: 14px; }

/* ====== TESTIMONIOS ====== */
.testimonios { background: var(--crema); }
.testimonios .section-title h2 { color: var(--azul-dark); }
.testimonios .section-title p { color: var(--gris); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1000px; margin: 0 auto; }
.testi { background: white; border-radius: 14px; padding: 26px; border: 1px solid rgba(86,161,164,0.2); box-shadow: 0 2px 14px rgba(0,0,0,0.06); }
.stars { color: var(--naranja); font-size: 1.1rem; margin-bottom: 12px; }
.testi p { color: var(--gris); font-size: 0.92rem; font-family: var(--font-body); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-autor { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; min-width: 42px; min-height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--azul); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: bold; color: white; font-family: var(--font-body); }
.testi-autor div strong { color: var(--azul-dark); font-size: 0.92rem; display: block; }
.testi-autor div small { color: var(--gris); font-size: 0.8rem; font-family: var(--font-body); }

/* ====== PAGOS ====== */
.pagos { background: var(--crema); text-align: center; padding: 50px 40px; }
.pagos h3 { color: var(--azul-dark); font-size: 1.2rem; margin-bottom: 24px; font-family: var(--font-body); }
.pagos-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.pago-item { background: white; border: 1.5px solid #8FBECA; border-radius: 12px; padding: 14px 24px; display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.9rem; font-weight: bold; color: var(--azul-dark); box-shadow: 0 2px 8px rgba(86,161,164,0.1); }
.pago-item .pago-icon { color: var(--azul); display: flex; }

/* ====== CTA FINAL ====== */
.cta-final { position: relative; overflow: hidden; background-image: url('img/peregrina-camino-santiago-costa-mar-mochila.jpg'); background-size: cover; background-position: 60% center; text-align: center; padding: 110px 40px; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.32)); }
.cta-final h2, .cta-final p, .cta-final a { position: relative; z-index: 1; }
.cta-final h2 { color: white; font-size: 2.3rem; margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.88); font-size: 1.1rem; font-family: var(--font-body); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-final .btn-primary { background: transparent; border: 2px solid white; color: white; }
.cta-final .btn-primary:hover { background: white; color: var(--azul-dark); }

/* ====== FOOTER ====== */
.ecs-footer { background: var(--dark); color: #9ABCC4; padding: 50px 40px 28px; font-family: var(--font-body); font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto 36px; }
.footer-col h4 { color: var(--naranja); font-size: 0.9rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { color: #9ABCC4; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-col p { line-height: 1.8; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 46px; width: auto; filter: brightness(0) invert(1) opacity(0.85); }
.social-links { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.social-btn { background: rgba(255,255,255,0.1); color: white !important; padding: 8px 14px; border-radius: 8px; font-weight: bold; font-size: 0.82rem; transition: background 0.2s !important; }
.social-btn:hover { background: var(--naranja) !important; }
.footer-social { display:flex; gap:14px; align-items:center; margin-top:16px; }
.footer-social a { color:#fff; width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; opacity:.8; transition:opacity 0.2s; margin-bottom:0 !important; }
.footer-social a:hover { opacity:1; }
.footer-social svg { width:22px; height:22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; text-align: center; max-width: 1100px; margin: 0 auto; }
.footer-bottom a { color: var(--naranja); }

/* ====== HERO FORM ====== */
.hero-form-wrap { background: rgba(20,50,65,0.78); backdrop-filter: blur(10px); border-radius: 16px; padding: 28px 30px 22px; border: 1px solid rgba(255,255,255,0.15); width: 100%; max-width: 560px; margin-top: 32px; }
.hero-form-wrap h3 { color: white; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; text-align: center; font-weight: 700; }
.hero-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.hero-form-grid .full { grid-column: 1 / -1; }
.hero-form-wrap input,
.hero-form-wrap select { width: 100%; padding: 11px 13px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; color: white; font-family: var(--font-body); font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.hero-form-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form-wrap input:focus,
.hero-form-wrap select:focus { border-color: var(--naranja); }
.hero-form-wrap select option { background: #2D4A52; color: white; }
.hero-form-submit { width: 100%; background: var(--azul); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 1rem; font-weight: bold; font-family: var(--font-body); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-form-submit:hover { background: var(--azul-dark); transform: scale(1.02); }
.hero-form-nota { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.74rem; font-family: var(--font-body); margin-top: 10px; }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 20px; border-radius: 50px; text-decoration: none; font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.06); color: white; }
body:has(.nav-mobile-overlay.open) .whatsapp-float { display: none; }
.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.wa-pulse { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; background: var(--naranja); border-radius: 50%; animation: ecs-pulse 1.8s infinite; }
@keyframes ecs-pulse { 0% { transform: scale(1); opacity: 1; } 70% { transform: scale(2.2); opacity: 0; } 100% { transform: scale(1); opacity: 0; } }

/* ====== POPUP CALLBACK ====== */
#ecs-callback-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99999; align-items: center; justify-content: center; padding: 16px; }
#ecs-callback-overlay.open { display: flex; }
#ecs-callback-box { background: white; border-radius: 20px; width: 100%; max-width: 380px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.35); animation: ecs-popup-in 0.25s ease; }
@keyframes ecs-popup-in { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#ecs-callback-header { background: linear-gradient(135deg, var(--azul-light), var(--azul)); padding: 24px 20px 20px; text-align: center; position: relative; }
#ecs-callback-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.4rem; cursor: pointer; line-height: 1; }
#ecs-callback-close:hover { color: white; }
#ecs-callback-header img.cb-logo { height: 42px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
#ecs-callback-header .cb-agente-foto { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--naranja); margin: 0 auto 10px; display: block; background: var(--azul); overflow: hidden; }
#ecs-callback-header .cb-agente-foto img { width: 100%; height: 100%; object-fit: cover; }
#ecs-callback-header h3 { color: white; font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; }
#ecs-callback-header p { color: #8FBECA; font-family: var(--font-body); font-size: 0.82rem; }
#ecs-callback-body { padding: 24px 24px 20px; }
#ecs-callback-body h4 { color: var(--azul-dark); font-family: var(--font-body); font-size: 1rem; margin-bottom: 6px; text-align: center; }
#ecs-callback-body p { color: var(--gris); font-size: 0.82rem; font-family: var(--font-body); text-align: center; margin-bottom: 18px; }
#ecs-cb-tel { width: 100%; padding: 13px 16px; border: 2px solid #8FBECA; border-radius: 10px; font-size: 1rem; font-family: var(--font-body); color: var(--text); outline: none; transition: border-color 0.2s; margin-bottom: 12px; }
#ecs-cb-tel:focus { border-color: var(--azul); }
#ecs-cb-privacy { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
#ecs-cb-privacy input { margin-top: 2px; flex-shrink: 0; accent-color: var(--azul); width: 15px; height: 15px; }
#ecs-cb-privacy label { font-size: 0.75rem; color: var(--gris); font-family: var(--font-body); line-height: 1.4; }
#ecs-cb-privacy label a { color: var(--azul); }
#ecs-cb-submit { width: 100%; background: var(--azul); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 1rem; font-weight: bold; font-family: var(--font-body); cursor: pointer; transition: background 0.2s; }
#ecs-cb-submit:hover { background: var(--azul-dark); }
#ecs-cb-nota { text-align: center; color: #a0a0a0; font-size: 0.72rem; font-family: var(--font-body); margin-top: 12px; }

/* ====== LEGAL PAGES ====== */
.legal-section { max-width: 860px; margin: 0 auto; padding: 80px 40px; }
.legal-section h1 { color: var(--azul-dark); font-size: 2rem; margin-bottom: 8px; }
.legal-section .legal-fecha { color: var(--gris); font-family: var(--font-body); font-size: 0.85rem; margin-bottom: 40px; }
.legal-section h2 { color: var(--azul-dark); font-size: 1.2rem; margin: 32px 0 12px; }
.legal-section p, .legal-section li { color: var(--gris); font-family: var(--font-body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { padding-left: 22px; margin-bottom: 16px; }
.legal-section a { color: var(--azul); }

/* ====== WHY SECTION ====== */
.why-section { background: #f0f7f8; padding: 64px 40px; }
.why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 800; color: var(--azul-dark); margin-bottom: 10px; }
.why-line { width: 48px; height: 4px; background: var(--naranja); border-radius: 2px; margin-bottom: 32px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-family: var(--font-body); color: var(--azul-dark); font-size: 1rem; }
.why-list li span { color: var(--naranja); font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }
.why-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); display: block; }

/* ====== MID BANNER ====== */
.mid-banner {
  position: relative; overflow: hidden;
  background-image: url('img/camino-santiago-agencia-local-galicia-banner.jpg');
  background-size: cover; background-position: center;
  height: 400px; display: flex; align-items: center; justify-content: center;
}
.mid-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
}
.mid-banner-content {
  position: relative; z-index: 1; text-align: center; padding: 0 24px; max-width: 680px;
}
.mid-banner-content h2 {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: white; margin-bottom: 14px;
}
.mid-banner-content p {
  font-family: var(--font-body); font-size: 1.1rem; color: rgba(255,255,255,0.88);
  margin-bottom: 28px; line-height: 1.6;
}

/* ====== RUTAS RELACIONADAS ====== */
.related-routes { background: #f0f7f8; padding: 60px 40px; }
.related-routes h2 { text-align: center; color: var(--azul-dark); font-size: 1.6rem; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.related-card { background: white; border-radius: 14px; text-decoration: none; display: block; border: 1px solid rgba(86,161,164,0.18); box-shadow: 0 2px 10px rgba(86,161,164,0.08); transition: transform 0.2s, box-shadow 0.2s; overflow: hidden; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(86,161,164,0.18); }
.related-card-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.related-card-body { padding: 24px 22px; display: flex; flex-direction: column; }
.related-tag { display: block; font-size: 0.75rem; color: var(--azul); font-weight: 700; margin-bottom: 8px; letter-spacing: 0.03em; font-family: var(--font-body); text-transform: uppercase; }
.related-card h4 { color: var(--azul-dark); font-size: 1rem; margin-bottom: 10px; font-family: var(--font-heading); line-height: 1.3; }
.related-price { color: var(--naranja); font-weight: 800; font-size: 1rem; font-family: var(--font-heading); margin-bottom: 16px; }
.related-btn { display: inline-block; margin-top: auto; background: var(--azul); color: white; padding: 9px 20px; border-radius: 25px; font-size: 0.85rem; font-family: var(--font-heading); font-weight: 700; align-self: flex-start; }

/* ====== GRUPOS / ASOCIACIONES ====== */
.grupos-section { background: #f0f7f8; padding: 72px 40px; }
.grupos-editorial { max-width: 860px; margin: 0 auto; border-left: 4px solid var(--azul); padding-left: 28px; }
.grupos-intro { font-size: 1.05rem; line-height: 1.8; color: #4b5b5a; margin-bottom: 28px; font-family: var(--font-body); }
.grupos-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.grupos-feature { background: white; border-radius: 12px; padding: 20px 18px; border-top: 3px solid var(--naranja); }
.grupos-feature strong { display: block; color: var(--azul-dark); font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 6px; }
.grupos-feature p { color: #6b6b6b; font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-routes { padding: 40px 20px; }
  .included-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-section { padding: 48px 20px; }
  .grupos-section { padding: 48px 20px; }
  .grupos-editorial { padding-left: 18px; }
  .grupos-features { grid-template-columns: 1fr; }
  .mid-banner { height: auto; display: block; background-image: none; background-color: transparent; }
  .mid-banner::before { position: relative; inset: auto; display: block; height: 250px; background: url('img/camino-santiago-agencia-local-galicia-banner.jpg') center center / cover no-repeat; }
  .mid-banner-content { position: relative; z-index: 1; margin: -30px 16px 0; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); padding: 22px 20px 24px; }
  .mid-banner-content h2 { color: var(--azul-dark); font-size: 1.35rem; }
  .mid-banner-content p { color: #5f6f73; font-size: 0.93rem; margin-bottom: 18px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-image { margin: 0 -20px; }
  .why-image img { height: 260px; border-radius: 14px; }
  .ecs-hero h1 { font-size: 1.6rem; }
  .ecs-nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .ecs-stats { gap: 28px; }
  .features { grid-template-columns: 1fr; gap: 14px; }
  .pasos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .paso-icon-wrap { width: 58px; height: 58px; }
  .paso-icon { width: 28px; height: 28px; }
  .paso-card { padding: 26px 14px 20px; box-shadow: 0 4px 24px rgba(86,161,164,0.18); }
  .paso-card::after { display: none; }
  .paso-card h4 { font-size: 0.9rem; }
  .btn-secondary { margin-left: 0; margin-top: 12px; display: block; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-container { padding: 24px 18px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .hero-form-grid { grid-template-columns: 1fr; }
  .hero-form-wrap { padding: 20px 16px 16px; margin-top: 20px; }
  .agente-txt { display: none; }
  section { padding: 60px 20px; }
  .como { padding-top: 90px; }
  .ecs-nav { padding: 10px 16px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero { min-height: unset; padding: 110px 20px 60px; }
  .route-strip-item { padding: 16px 16px; }
  .etapa { flex-direction: column; gap: 0; }
  .etapa-num { width: 100%; height: 48px; min-width: unset; font-size: 1.1rem; }
  .pricing-card { padding: 24px 20px; }
  .cta-final { background-position: center 25%; padding: 70px 24px; }
  .cta-final h2 { font-size: 1.8rem; }
  .legal-section { padding: 60px 20px; }
  .ecs-footer { padding:36px 18px 22px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:22px 18px; margin-bottom:24px; }
  .footer-col:first-child { grid-column:1 / -1; }
  .footer-logo img { max-width:140px; height:auto; }
  .footer-col p { font-size:.9rem; line-height:1.5; margin-bottom:8px; }
  .footer-col h4 { font-size:.9rem; margin-bottom:10px; }
  .footer-col a { font-size:.9rem; margin-bottom:7px; }
  .footer-bottom { margin-top:22px; padding-top:14px; font-size:.8rem; }
  .footer-social { margin-top:12px; }
}
@media (max-width: 480px) {
  .section-title h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 1.4rem; }
  .page-hero { padding: 100px 16px 50px; }
}

/* ====== STICKY SUB-NAV (estilo Macs Adventure) ====== */
.page-subnav {
  background: white;
  border-bottom: 2px solid #e0eeec;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  position: sticky;
  top: 72px;
  z-index: 90;
  margin-top: 6px;
}
.page-subnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-subnav-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav-tabs::-webkit-scrollbar { display: none; }
.subnav-tab {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gris);
  padding: 16px 18px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.subnav-tab:hover { color: var(--azul); border-bottom-color: rgba(86,161,164,0.3); }
.subnav-tab.active { color: var(--azul); border-bottom-color: var(--azul); font-weight: 700; }
.page-subnav-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.subnav-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .22s ease;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.subnav-btn-primary {
  background: #56A1A4;
  color: #fff !important;
  border-color: #56A1A4;
}
.subnav-btn-primary:hover {
  background: #2D4A52;
  border-color: #2D4A52;
  color: #fff !important;
  transform: translateY(-1px);
}
.subnav-btn-outline {
  background: transparent;
  color: #56A1A4 !important;
  border-color: #56A1A4;
}
.subnav-btn-outline:hover {
  background: #56A1A4;
  border-color: #56A1A4;
  color: #fff !important;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .page-subnav-inner { padding: 0 12px; }
  .subnav-tab { padding: 12px 10px; font-size: 0.75rem; }
  .subnav-btn { padding: 0 14px; font-size: 0.8rem; min-height: 44px; min-width: 0; flex: 1 1 auto; }
  .page-subnav { top: 60px; margin-top: 4px; }
  .page-subnav-btns {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
  }
  .page-subnav-btns a,
  .page-subnav-btns button {
    flex: 1 1 auto;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .page-subnav-inner { flex-wrap: wrap; padding-bottom: 6px; }
  .page-subnav-tabs { flex: 1 1 100%; }
  .page-subnav-btns { width: 100%; justify-content: stretch; }
}

/* ====== SARRIA PAGE — hero overrides (alta especificidad) ====== */
body.sarria-page .page-hero-content {
  max-width: 720px;
}
body.sarria-page .page-hero p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
body.sarria-page .page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  body.sarria-page .page-hero {
    min-height: 620px;
  }
  body.sarria-page .page-hero-content {
    max-width: 330px;
    padding-left: 18px;
    padding-right: 18px;
  }
  body.sarria-page .page-hero h1 {
    font-size: 1.45rem;
    line-height: 1.15;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  body.sarria-page .page-hero p {
    font-size: .95rem;
    line-height: 1.45;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  body.sarria-page .page-hero-img {
    object-position: 55% center;
  }
}
body.sarria-page .btn-hero-primary {
  background: #fff;
  color: #56A1A4;
  border: 2px solid #fff;
  transition: all .25s ease;
}
body.sarria-page .btn-hero-primary:hover {
  background: #56A1A4;
  color: #fff;
  border-color: #56A1A4;
  transform: translateY(-2px);
}
body.sarria-page .btn-hero-primary:focus-visible {
  outline: 3px solid rgba(86,161,164,.35);
  outline-offset: 3px;
}

/* ====== OLD EN ROUTE PAGES (ingles · finisterre · bicicleta) ====== */
/* These pages use a different HTML structure. CSS added here so they render correctly. */

/* — Navbar — */
.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 900; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; gap: 16px; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; margin: 0 auto 0 24px; padding: 0; gap: 2px; align-items: center; }
.nav-links li a, .nav-links li .dropbtn { font-family: var(--font-heading); font-size: 0.84rem; font-weight: 600; color: var(--azul-dark); padding: 8px 12px; text-decoration: none; border-radius: 6px; transition: color .2s; white-space: nowrap; background: none; border: none; cursor: pointer; }
.nav-links li a:hover, .nav-links li .dropbtn:hover { color: var(--azul); }
.nav-links .dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.12); min-width: 230px; z-index: 200; padding: 6px 0; }
.nav-links .dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { display: block; padding: 10px 18px; font-size: 0.85rem; font-family: var(--font-heading); color: var(--azul-dark); text-decoration: none; border-bottom: 1px solid #f4f4f4; transition: background .15s, color .15s; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: var(--crema); color: var(--naranja); }

/* — Hamburger — */
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--azul-dark); padding: 8px; line-height: 1; margin-left: auto; }

/* — Mobile nav — */
.mobile-nav { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 85%; max-width: 320px; height: 100vh; background: #fff; z-index: 1000; overflow-y: auto; padding: 56px 24px 32px; box-shadow: -4px 0 28px rgba(0,0,0,.18); }
.mobile-nav.open { display: flex; }
.mobile-nav-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--azul-dark); line-height: 1; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li { border-bottom: 1px solid #f0f4f5; }
.mobile-nav ul li a, .mobile-nav ul li .btn-nav { display: block; padding: 13px 0; font-family: var(--font-heading); font-size: 0.95rem; color: var(--azul-dark); text-decoration: none; transition: color .2s; }
.mobile-nav ul li a:hover { color: var(--naranja); }
.mobile-nav ul li strong { display: block; padding: 13px 0 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: #8FBECA; font-family: var(--font-heading); border-bottom: none; }
.mobile-nav ul li .btn-nav { background: var(--azul); color: #fff; border-radius: 8px; padding: 12px 16px; margin-top: 8px; text-align: center; }

/* — Hero — */
.ruta-hero { position: relative; background-size: cover; background-position: center; display: flex; align-items: flex-end; min-height: 480px; height: 62vh; max-height: 620px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.58) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 940px; margin: 0 auto; padding: 0 28px 56px; }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: #fff; margin: 0 0 10px; line-height: 1.1; }
.hero-subtitle { display: block; font-size: .62em; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* — Route strip (stat variant) — */
.route-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: 0 auto; }
.route-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; min-width: 90px; }
.route-stat:last-child { border-right: none; }
.stat-icon { font-size: 1.25rem; margin-bottom: 4px; }
.stat-label { color: rgba(255,255,255,.75); font-size: .72rem; font-family: var(--font-body); order: -1; }
.stat-value { color: #fff; font-weight: 700; font-family: var(--font-heading); font-size: .95rem; }

/* — Subnav — */
.ruta-subnav { background: #fff; border-bottom: 2px solid #e0eeec; box-shadow: 0 2px 8px rgba(0,0,0,.07); position: sticky; top: 72px; z-index: 89; display: flex; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.ruta-subnav::-webkit-scrollbar { display: none; }
.ruta-subnav a { font-family: var(--font-heading); font-size: .82rem; font-weight: 600; color: var(--gris); padding: 15px 20px; border-bottom: 2.5px solid transparent; text-decoration: none; white-space: nowrap; transition: color .2s, border-color .2s; }
.ruta-subnav a:hover { color: var(--azul); border-bottom-color: var(--azul); }

/* — Sections & layout — */
.ruta-section { padding: 56px 0; }
.ruta-section--alt { background: var(--crema); }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section-intro { font-size: 1.05rem; color: var(--gris); line-height: 1.7; margin-bottom: 36px; }

/* — Final / optional stage card variants — */
.etapa-card--final .etapa-header { background: var(--azul); }
.etapa-card--final .etapa-num { background: rgba(255,255,255,.18); }
.etapa-card--final .etapa-ruta { color: #fff; }
.etapa-card--final .etapa-km { color: rgba(255,255,255,.8); }
.etapa-card--optional { border-style: dashed; }
.etapa-card--optional .etapa-header { background: #f0f8f6; }
.etapa-card--optional .etapa-num { background: var(--naranja); }

/* — Final CTA section — */
.ruta-cta-final { background: var(--azul-dark); color: #fff; text-align: center; padding: 64px 24px; }
.ruta-cta-final h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.ruta-cta-final p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 32px; line-height: 1.65; }
.ruta-cta-final .cta-buttons { justify-content: center; }

/* — Related routes — */
.ruta-rel-card { background: #fff; border: 1px solid #e0eeec; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; }
.ruta-rel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.ruta-rel-img { width: 100%; height: 140px; background-size: cover; background-position: center; display: block; }
.ruta-rel-body { padding: 14px 16px; }
.ruta-rel-body h4 { font-family: var(--font-heading); font-size: .92rem; color: var(--azul-dark); margin: 0 0 4px; }
.ruta-rel-body p { font-size: .82rem; color: var(--gris); margin: 0 0 8px; }
.ruta-rel-price { font-family: var(--font-heading); font-size: .85rem; font-weight: 700; color: var(--naranja-dark); }

/* — CTA buttons — */
.cta-buttons, .cta-inline { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 6px; background: #25D366; color: #fff; font-family: var(--font-heading); font-size: .9rem; font-weight: 700; padding: 13px 22px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .2s; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-callback { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--azul); border: 2px solid var(--azul); font-family: var(--font-heading); font-size: .9rem; font-weight: 700; padding: 11px 20px; border-radius: 10px; cursor: pointer; transition: background .2s, color .2s; }
.btn-callback:hover { background: var(--azul); color: #fff; }
.btn-lg { padding: 15px 28px !important; font-size: 1rem !important; }

/* — Itinerary cards — */
.etapas-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.etapa-card { border: 1px solid #e0eeec; border-radius: 12px; overflow: hidden; }
.etapa-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #f5fafa; border-bottom: 1px solid #e0eeec; flex-wrap: wrap; }
.etapa-num { font-family: var(--font-heading); font-size: .78rem; font-weight: 700; color: #fff; background: var(--azul); border-radius: 6px; padding: 3px 10px; white-space: nowrap; }
.etapa-ruta { font-family: var(--font-heading); font-size: .92rem; font-weight: 700; color: var(--azul-dark); flex: 1; }
.etapa-km { font-family: var(--font-body); font-size: .82rem; color: var(--gris); white-space: nowrap; }
.etapa-body { padding: 16px 18px; }
.etapa-stats { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.etapa-stats span { font-size: .82rem; color: var(--gris); font-family: var(--font-body); }

/* — Footer wrapper — */
.footer { background: var(--azul-dark); color: rgba(255,255,255,.8); padding: 56px 0 0; font-family: var(--font-body); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto 36px; padding: 0 24px; }
.footer p { font-size: .9rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,.8); }
.footer-bottom { padding: 20px 24px; }

/* — Mobile breakpoints — */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .ruta-hero { min-height: 360px; height: 55vh; }
  .hero-content { padding: 0 20px 40px; }
  .hero-content h1 { font-size: 1.9rem; }
  .route-stat { padding: 10px 12px; min-width: 70px; }
  .stat-value { font-size: .88rem; }
  .stat-icon { font-size: 1.1rem; }
  .ruta-subnav { top: 60px; }
  .ruta-subnav a { padding: 12px 14px; font-size: .76rem; }
  .ruta-section { padding: 36px 0; }
  .etapas-grid { gap: 12px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-container > div:first-child { grid-column: 1 / -1; }
  .navbar .lang-dropdown { display: none; }
}
@media (max-width: 480px) {
  .cta-buttons, .cta-inline { flex-direction: column; align-items: stretch; }
  .cta-buttons a, .cta-buttons button, .cta-inline a, .cta-inline button { text-align: center; justify-content: center; }
  .footer-container { grid-template-columns: 1fr; }
  .etapa-header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* — What's included — */
.incluye-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 28px; }
.incluye-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: #f5fafa; border-radius: 12px; border: 1px solid #e0eeec; }
.incluye-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.incluye-item h4 { margin: 0 0 4px; font-family: var(--font-heading); font-size: .9rem; color: var(--azul-dark); }
.incluye-item p { margin: 0; font-size: .84rem; color: var(--gris); line-height: 1.5; }

/* — Pricing (old-page variant) — */
.pricing-grid.pricing-grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.pricing-card.pricing-card--featured { border-color: var(--naranja); box-shadow: 0 8px 36px rgba(240,161,69,.18); }
.pricing-badge { display: inline-block; background: var(--naranja); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--naranja-dark); font-family: var(--font-body); line-height: 1; margin: 12px 0 4px; }
.pricing-price small { font-size: .5em; font-weight: 400; color: var(--gris); }
.pricing-includes { list-style: none; padding: 0; margin: 16px 0 20px; }
.pricing-includes li { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid #f0f4f5; font-size: .84rem; color: var(--gris); font-family: var(--font-body); }
.pricing-includes li::before { content: '✓'; color: var(--azul); font-weight: 700; flex-shrink: 0; }
.pricing-includes li:last-child { border-bottom: none; }
.pricing-note { font-size: .82rem; color: var(--gris); text-align: center; margin-top: 20px; line-height: 1.5; }

/* — FAQ (old-page variant — uses native <details>/<summary>) — */
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid #e0eeec; }
details.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; font-family: var(--font-heading); font-size: .95rem; font-weight: 600; color: var(--azul-dark); cursor: pointer; list-style: none; gap: 12px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '▾'; color: var(--azul); flex-shrink: 0; transition: transform .2s; }
details.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { font-size: .9rem; color: var(--gris); line-height: 1.7; padding: 0 4px 18px; }

/* — Related routes — */
.rutas-relacionadas { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 28px; }

/* — Blog cards (used in route pages) — */
.blog-grid { display: grid; gap: 24px; }
.blog-grid.blog-grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.blog-card { background: #fff; border: 1px solid #e0eeec; border-radius: 14px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.blog-card-img { width: 100%; height: 180px; background-size: cover; background-position: center; display: block; }
.blog-card-body { padding: 18px; }
.blog-tag { display: inline-block; background: #e8f4f5; color: var(--azul); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.blog-card-body h3 { font-family: var(--font-heading); font-size: .95rem; color: var(--azul-dark); margin: 0 0 8px; line-height: 1.35; }
.blog-card-body p { font-size: .84rem; color: var(--gris); line-height: 1.6; margin: 0 0 14px; }

/* — Folleto CTA — */
.folleto-cta { display: flex; align-items: center; gap: 20px; background: #f5fafa; border: 2px solid #e0eeec; border-radius: 14px; padding: 24px; flex-wrap: wrap; }
.folleto-cta p { margin: 0; flex: 1; font-size: .95rem; color: var(--azul-dark); line-height: 1.5; }
.btn-folleto { display: inline-flex; align-items: center; gap: 6px; background: var(--azul-dark); color: #fff; font-family: var(--font-heading); font-size: .9rem; font-weight: 700; padding: 12px 22px; border-radius: 10px; text-decoration: none; transition: background .2s; white-space: nowrap; }
.btn-folleto:hover { background: var(--azul); }

/* — Link button — */
.link-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--azul); font-family: var(--font-heading); font-size: .88rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.link-btn:hover { color: var(--naranja); }
