/* ==========================================================
   TaxisCastelldefels.es — empresas.css
   Estilos específicos: /taxi-empresas/
   Se carga DESPUÉS de styles.css (reset, variables, botones
   base, header, footer, container, secciones, faq, fab-bar).
   Este archivo solo contiene lo que styles.css NO tiene o
   necesita sobreescribirse para esta página.
   ========================================================== */

/* ── TIPOGRAFÍA DIRECTA ── */
h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }

/* ── .label (eyebrow de página) ── */
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.section--light .label,
.section--light-alt .label { color: var(--yellow-dark); }

/* ── .btn base definido en styles.css ── */

/* Cabecera y menú móvil: gestionados en styles.css — no redefinir */

/* ── SECTION HEAD: sub-reglas de esta página ── */
.section-head .label { margin-bottom: 0.75rem; display: block; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p {
  color: var(--gray-light);
  max-width: 620px;
  font-size: var(--text-base);
  line-height: 1.65;
}
.section-head.center p { margin: 0 auto; }

/* ════════════════════════════
   01. HERO EMPRESAS
═══════════════════════════════ */
.hero-empresas {
  background: var(--black);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-empresas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-empresas .hero-badge {
  position: static;
  inset: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-start;
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-empresas .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: empresas-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes empresas-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-h1 { margin-bottom: 1.25rem; }
.hero-h1 em { font-style: normal; color: var(--yellow); }

.hero-empresas .hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  max-width: none;
}
.hero-return {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.hero-return a { color: var(--yellow); font-weight: 600; }
.hero-return a:hover { text-decoration: underline; }

.hero-empresas .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-microcopy {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-microcopy span::before { content: "✓ "; color: var(--green); }

.hero-img-side {
  position: relative;
  padding-bottom: 16px;
  padding-right: 16px;
}
.hero-img-side::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 76%; height: 50%;
  background: var(--yellow);
  border-radius: var(--radius-md);
  z-index: 0;
}
.hero-img-side img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.hero-img-overlay {
  position: absolute;
  bottom: calc(1.5rem + 16px);
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.overlay-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-icon svg { color: var(--yellow); }
.overlay-text strong { display: block; font-size: 0.95rem; font-weight: 700; }
.overlay-text span { font-size: 0.78rem; color: var(--gray); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-img-side { display: none; }
}
@media (max-width: 480px) {
  .hero-empresas { padding: 2.5rem 0 3.5rem; }
  .hero-empresas .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-empresas .hero-ctas .btn { text-align: center; }
}

/* ════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.stats-bar .stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1.1;
}
.stats-bar .stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 600px) {
  .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ════════════════════════════
   02. PROBLEMAS QUE RESOLVEMOS
═══════════════════════════════ */
.problemas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.problema {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  transition: var(--transition);
}
.problema:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}
.problema-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(239,68,68,0.10);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.problema h3 { font-size: var(--text-base); margin-bottom: 0.4rem; }
.problema p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.55; }
@media (max-width: 900px) {
  .problemas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .problemas-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   BAND PHOTO (franja de imagen)
═══════════════════════════════ */
.band-photo {
  position: relative;
  margin: 0 0 2.5rem;
}
.band-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xl) 3px 0 3px;
  z-index: 2;
  pointer-events: none;
}
.band-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  border-radius: var(--radius-xl);
}
@media (max-width: 768px) {
  .band-photo img { height: 240px; }
}

/* ════════════════════════════
   03. BENEFICIOS
═══════════════════════════════ */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.beneficio {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.beneficio:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}
.beneficio-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.beneficio-icon svg { color: var(--yellow); }
.beneficio-body h3 { margin-bottom: 0.35rem; font-size: var(--text-base); }
.beneficio-body p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.55; }

/* ════════════════════════════
   04. CASOS DE USO  (section--light)
═══════════════════════════════ */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.caso-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.caso-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-on-light);
}
.caso-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
/* Barra amarilla bajo la imagen */
.caso-card--photo .caso-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 1;
}
.caso-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.caso-icon {
  width: 48px;
  height: 48px;
  margin: 1.5rem 1.5rem 0;
  border-radius: var(--radius-md);
  background: rgba(245,197,24,0.14);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.caso-body { padding: 1.25rem 1.5rem 1.6rem; }
.caso-card--photo .caso-body { padding-top: 1.25rem; }
.caso-body h3 { color: var(--text-on-light); margin-bottom: 0.4rem; }
.caso-body p { font-size: 0.9rem; color: var(--text-2-on-light); line-height: 1.6; }
@media (max-width: 900px) {
  .casos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .casos-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   05. CÓMO FUNCIONA — PROCESO
═══════════════════════════════ */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.proceso-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.66% + 0.75rem);
  right: calc(16.66% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border-hover), var(--border), var(--border-hover));
}
.paso {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.paso:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--yellow-glow);
}
.paso-num {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}
.paso h3 { margin-bottom: 0.6rem; }
.paso p { font-size: 0.92rem; color: var(--gray-light); }
.paso-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}
@media (max-width: 768px) {
  .proceso-grid { grid-template-columns: 1fr; }
  .proceso-grid::before { display: none; }
}

/* ════════════════════════════
   06. FACTURACIÓN Y GESTIÓN
═══════════════════════════════ */
.factura-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.factura-text .label { margin-bottom: 0.75rem; display: block; }
.factura-text h2 { margin-bottom: 1rem; }
.factura-text > p {
  color: var(--gray-light);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.factura-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.factura-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.factura-list svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.factura-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.factura-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.factura-card-head svg { color: var(--yellow); flex-shrink: 0; }
.factura-rows {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.factura-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--gray-light);
}
.factura-dim {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.factura-rows-total {
  border-bottom: none !important;
  font-weight: 800;
  color: var(--white) !important;
}
.factura-rows-total span:last-child { color: var(--yellow); }
.factura-card-note {
  font-size: var(--text-xs);
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .factura-wrap { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* ════════════════════════════
   07. COBERTURA  (section--light-alt)
═══════════════════════════════ */
.cobertura-photo {
  position: relative;
  margin: 2.5rem 0 2.5rem;
}
.cobertura-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xl) 3px 0 3px;
  z-index: 2;
  pointer-events: none;
}
.cobertura-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-on-light);
}
.cobertura-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
}
.cobertura-zonas h3,
.cobertura-rutas h3 {
  color: var(--text-on-light);
  font-size: var(--text-base);
  margin-bottom: 1rem;
}
.zonas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}
.zonas-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-on-light);
}
.zona-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-dark);
  flex-shrink: 0;
}
.rutas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rutas-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-2-on-light);
  line-height: 1.5;
}
.rutas-list svg { color: var(--yellow-dark); flex-shrink: 0; margin-top: 0.2rem; }
.cobertura-link-wrap { margin: 1.25rem 0 0; }
.cobertura-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow-dark);
  text-decoration: none;
}
.cobertura-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .cobertura-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cobertura-photo img { height: 240px; }
}
@media (max-width: 480px) {
  .zonas-list { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   08. DIFERENCIACIÓN — TABLA  (section--dark)
═══════════════════════════════ */
.dif-table-wrap {
  margin-top: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.contrast-table { width: 100%; border-collapse: collapse; }
.contrast-table th {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 0;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.contrast-table th:nth-child(2) { color: var(--yellow); }
.contrast-table td {
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.contrast-table tr:last-child td { border-bottom: none; }
.contrast-table td:first-child { color: var(--white); font-weight: 600; }
.contrast-table .col-tc { color: var(--white); font-weight: 700; }
.contrast-table .col-app { color: var(--gray); }
.check { color: var(--green); margin-right: 0.35rem; font-weight: 800; }
.cross { color: var(--gray-dark); margin-right: 0.35rem; font-weight: 800; }
@media (max-width: 600px) {
  .dif-table-wrap { padding: 1.5rem 1.35rem; }
  .contrast-table, .contrast-table tbody { display: block; width: 100%; }
  .contrast-table thead { display: none; }
  .contrast-table tr {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }
  .contrast-table tr:last-child { border-bottom: none; }
  .contrast-table td {
    border: none;
    padding: 0;
  }
  .contrast-table td:first-child {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.35rem;
  }
  .contrast-table .col-tc,
  .contrast-table .col-app {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    line-height: 1;
  }
  .contrast-table .col-tc { margin-right: 0.9rem; }
}

/* ════════════════════════════
   09. PRUEBA SOCIAL  (section--light)
═══════════════════════════════ */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 0.5rem;
}
.logo-slot {
  flex: 1 1 160px;
  max-width: 220px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-light-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-2-on-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.review-stars { color: var(--yellow-dark); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.95rem;
  color: var(--text-2-on-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,197,24,0.14);
  border: 1px solid rgba(212,168,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--text-on-light); }
.review-context { font-size: 0.78rem; color: var(--text-2-on-light); margin-top: 0.1rem; }
.prueba-nota {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--text-2-on-light);
  font-style: italic;
}

/* ════════════════════════════
   10. FAQ — base en styles.css
═══════════════════════════════ */
.faq { margin-top: 3rem; }

/* ════════════════════════════
   11. CTA FINAL — CONTACTO
═══════════════════════════════ */
.cta-empresas {
  background: var(--black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-empresas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-empresas .container { position: relative; z-index: 1; }
.cta-empresas-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-empresas-inner .label { margin-bottom: 1rem; display: block; }
.cta-empresas-inner h2 { margin-bottom: 1rem; }
.cta-empresas-inner > p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}
.cta-contacto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.contacto-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: var(--transition);
}
.contacto-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-3px);
}
.contacto-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.contacto-card-icon svg { color: var(--yellow); }
.contacto-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
}
.contacto-card-value {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--yellow);
}
.cta-empresas-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-micro {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-micro span::before { content: "✓ "; color: var(--green); }
@media (max-width: 768px) {
  .cta-contacto-cards { grid-template-columns: 1fr; }
  .cta-empresas-btns { flex-direction: column; }
  .cta-empresas-btns .btn { width: 100%; }
}

/* ── FOOTER: ajuste superior ── */
.site-footer {
  margin-top: 0;
  padding-top: 3.5rem;
}

/* ════════════════════════════
   eBOOKING — PLATAFORMA CORPORATIVA
═══════════════════════════════ */
.ebooking-section {
  background: var(--black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.ebooking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ebooking-section .container { position: relative; z-index: 1; }
.ebooking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.ebooking-text .label { margin-bottom: 0.75rem; display: block; }
.ebooking-text h2 { margin-bottom: 1rem; }
.ebooking-text h2 em { font-style: normal; color: var(--yellow); }
.ebooking-intro {
  color: var(--gray-light);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 56ch;
}
.ebooking-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.ebooking-features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.ef-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--yellow-soft);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ef-body h3 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.ef-body p {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
  margin: 0;
}
.ebooking-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ebooking-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

/* ── Píldora destacada para el hero ── */
.pill--accent {
  background: rgba(245,197,24,0.10);
  border-color: rgba(245,197,24,0.35);
  color: var(--yellow);
}

/* ── Mockup del panel (decorativo, todo CSS) ── */
.ebooking-mockup { position: relative; }
.mockup-window {
  background: #0e0e10;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: #161618;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3a3a3d;
  flex-shrink: 0;
}
.mockup-dot--r { background: #ff5f57; }
.mockup-dot--y { background: #febc2e; }
.mockup-dot--g { background: #28c840; }
.mockup-url {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.02em;
  padding-right: 39px;
}
.mockup-content {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mockup-greet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-light);
}
.mockup-greet strong { color: var(--white); }
.mockup-greet-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
}
.mockup-greet-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.kpi-card {
  background: #131316;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.kpi-label {
  font-size: 0.62rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.kpi-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.kpi-trend {
  font-size: 0.62rem;
  color: var(--gray);
}

.mockup-list {
  background: #131316;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
}
.mockup-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}
.mockup-list-title {
  font-size: 0.7rem;
  color: var(--gray-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mockup-btn {
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--black);
  background: var(--yellow);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.mockup-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mockup-rows li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mockup-rows li:last-child { border-bottom: none; }
.row-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gray-dark);
}
.row-dot--ok { background: var(--green); }
.row-dot--pend { background: var(--yellow); }
.row-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.row-main strong {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-main small {
  font-size: 0.65rem;
  color: var(--gray);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-amount {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
  white-space: nowrap;
}

.mockup-foot {
  display: flex;
  gap: 0.85rem;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--gray);
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.mockup-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.mockup-foot svg { color: var(--green); flex-shrink: 0; }

.mockup-shadow {
  position: absolute;
  inset: auto -3% -10% -3%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.20), transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .ebooking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ebooking-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ebooking-features { grid-template-columns: 1fr; }
  .mockup-content { padding: 0.9rem; }
  .mockup-kpis { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ebooking-section { padding: 3.5rem 0; }
  .ebooking-ctas { flex-direction: column; align-items: stretch; }
  .ebooking-ctas .btn { width: 100%; text-align: center; }
}

/* ── UTILIDADES ── */
.text-yellow { color: var(--yellow); }

/* ── Móvil: imágenes completas sin recorte ────────────────── */
@media (max-width: 600px) {
  .band-photo img    { height: auto; object-fit: unset; }
  .dif-hero-img      { height: auto; object-fit: unset; }
  .cobertura-photo img { height: auto; object-fit: unset; }
}
