/* ================================================================
   OAXACA SHUTTLE — style.css  v5 auditado
   Proyecto : Oaxaca Shuttle by Enjoy Oaxaca
   Fuentes  : Barlow Condensed (titulares) + Manrope (cuerpo)
   Paleta   : Azul #1A3A8F | Naranja #F5A623 | Cielo #1E90D4
   Archivo  : style.css en /public_html/style.css
              Se referencia desde index.html como: <link rel="stylesheet" href="style.css">
================================================================ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --azul      : #1A3A8F;
  --azul-lt   : #254DB5;
  --sky       : #1E90D4;
  --naranja   : #F5A623;
  --naranja-h : #E0941A;
  --blanco    : #FFFFFF;
  --fondo     : #F4F7FA;
  --texto     : #0D1B36;
  --texto-s   : #4A5A7A;
  --borde     : #D6E4F0;
  --verde     : #1A9E5C;
  --rojo      : #C83030;
  --sombra    : 0 4px 24px rgba(26, 58, 143, 0.11);
  --font-h    : 'Barlow Condensed', sans-serif;
  --font-b    : 'Manrope', sans-serif;
  --r         : 8px;
  --rl        : 14px;
  --sec-pad   : 30px;   /* espaciado entre secciones — más compacto */
}

/* ── RESET / BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; } /* base legible sin romper layout */
body {
  font-family            : var(--font-b);
  background             : var(--blanco);
  color                  : var(--texto);
  overflow-x             : hidden;
  -webkit-font-smoothing : antialiased;
  line-height            : 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; }

/* ── UTILIDADES ──────────────────────────────────────────────── */
.container   { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section     { padding: var(--sec-pad) 0; }
.section-alt { background: var(--fondo); }
.text-center { text-align: center; }

.sec-tag {
  display        : inline-block;
  font-size      : 12px;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--sky);
  margin-bottom  : 8px;
}
.sec-title {
  font-family    : var(--font-h);
  font-size      : clamp(2rem, 4vw, 2.9rem); /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  line-height    : 1.1;
  margin-bottom  : 12px;
  text-transform : uppercase;
  letter-spacing : .4px;
}
.sec-title span { color: var(--sky); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position         : fixed;
  top              : 0; left: 0; right: 0;
  z-index          : 1000;
  background       : rgba(26, 58, 143, .97);
  backdrop-filter  : blur(10px);
  -webkit-backdrop-filter : blur(10px);
  border-bottom    : 1px solid rgba(30, 144, 212, .2);
  height           : 64px;
  display          : flex;
  align-items      : center;
  transition       : box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(26, 58, 143, .4); }

.nav-inner {
  max-width       : 1120px;
  margin          : 0 auto;
  padding         : 0 20px;
  width           : 100%;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  gap             : 16px;
}
.nav-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.nav-links    { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a  {
  font-size      : .82rem; /* ligeramente mayor */
  font-weight    : 600;
  letter-spacing : .7px;
  text-transform : uppercase;
  color          : rgba(255,255,255,.78);
  transition     : color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background    : var(--naranja) !important;
  color         : var(--texto)   !important;
  padding       : 9px 18px;
  border-radius : var(--r);
  font-weight   : 700 !important;
  white-space   : nowrap;
  transition    : background .2s !important;
}
.nav-cta:hover { background: var(--naranja-h) !important; }

.nav-burger {
  display        : none;
  flex-direction : column;
  gap            : 5px;
  background     : none;
  border         : none;
  cursor         : pointer;
  padding        : 4px;
}
.nav-burger span {
  display       : block;
  width         : 24px;
  height        : 2px;
  background    : #fff;
  border-radius : 2px;
  transition    : all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display         : none;
  position        : fixed;
  top             : 64px; left: 0; right: 0;
  z-index         : 999;
  background      : var(--azul);
  padding         : 14px 20px 22px;
  flex-direction  : column;
  border-top      : 1px solid rgba(255,255,255,.1);
  box-shadow      : 0 8px 24px rgba(0,0,0,.3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size     : 1rem;
  font-weight   : 600;
  color         : rgba(255,255,255,.85);
  padding       : 12px 0;
  border-bottom : 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color: #fff; }
.mob-cta {
  margin-top    : 12px !important;
  background    : var(--naranja);
  color         : var(--texto) !important;
  text-align    : center;
  border-radius : var(--r);
  padding       : 13px 20px !important;
  border-bottom : none !important;
  font-weight   : 700 !important;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height : clamp(680px, 92vh, 820px);
  background : var(--azul);
  display    : flex;
  align-items: center;
  position   : relative;
  overflow   : hidden;
  padding-top: 64px;
}
.hero-img {
  position   : absolute;
  inset      : 0;
  z-index    : 0;
  background-color : #0D1B36;
  background-image : url('images/hero-oaxaca.webp');
  background-position : center;
  background-size : cover;
  background-repeat : no-repeat;
}
.hero-bg {
  position   : absolute;
  inset      : 0;
  background : linear-gradient(130deg, rgba(11,24,58,.92) 0%, rgba(18,43,104,.84) 44%, rgba(11,24,58,.72) 100%);
  z-index    : 1;
}
.hero-content {
  position              : relative;
  z-index               : 2;
  max-width             : 1120px;
  margin                : 0 auto;
  padding               : 28px 20px 30px; /* más compacto */
  display               : grid;
  grid-template-columns : 1fr 400px;
  gap                   : 40px;
  align-items           : center;
}
.hero-tag {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  background     : rgba(255,255,255,.12);
  border         : 1px solid rgba(255,255,255,.2);
  border-radius  : 30px;
  padding        : 5px 14px;
  margin-bottom  : 12px;
  font-size      : .78rem; /* aumentado */
  font-weight    : 700;
  letter-spacing : 1.5px;
  text-transform : uppercase;
  color          : rgba(255,255,255,.9);
}
.hero-tag::before {
  content       : "";
  width         : 6px;
  height        : 6px;
  border-radius : 50%;
  background    : var(--naranja);
  flex-shrink   : 0;
}
.hero h1 {
  font-family    : var(--font-h);
  font-size      : clamp(2.8rem, 6vw, 4.4rem); /* aumentado */
  font-weight    : 700;
  color          : #fff;
  line-height    : 1.05;
  text-transform : uppercase;
  letter-spacing : .4px;
  margin-bottom  : 12px;
}
.hero h1 .alt { color: var(--naranja); }
.hero h1, .hero-desc, .hero-alert { text-shadow: 0 1px 2px rgba(0,0,0,.16); }
.hero-left { max-width: 640px; }
.hero-desc {
  font-size     : 1.05rem;
  color         : rgba(255,255,255,.95);
  line-height   : 1.72;
  max-width     : 560px;
  margin-bottom : 16px;
}
.hero-alert {
  background    : rgba(10,20,48,.42);
  border        : 1px solid rgba(255,181,92,.34);
  border-left   : 4px solid rgba(255,181,92,.92);
  border-radius : var(--r);
  padding       : 16px 18px;
  margin-bottom : 22px;
  font-size     : 1rem;
  color         : rgba(255,255,255,.96);
  line-height   : 1.7;
  box-shadow    : 0 12px 24px rgba(0,0,0,.16);
  backdrop-filter: blur(3px);
}
.hero-alert strong { color: #FFC56A; }
.hero-stats {
  display       : flex;
  gap           : 24px;
  margin-bottom : 24px;
  padding       : 14px 0;
  border-top    : 1px solid rgba(255,255,255,.15);
}
.h-stat strong {
  display     : block;
  font-family : var(--font-h);
  font-size   : 2rem; /* aumentado */
  font-weight : 700;
  color       : var(--naranja);
  line-height : 1;
}
.h-stat span {
  font-size  : .76rem; /* aumentado */
  color      : rgba(255,255,255,.84);
  margin-top : 2px;
  display    : block;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn-primary {
  background    : var(--naranja);
  color         : var(--texto);
  padding       : 14px 26px;
  border-radius : var(--r);
  font-size     : .95rem; /* aumentado */
  font-weight   : 700;
  border        : none;
  cursor        : pointer;
  display       : inline-block;
  transition    : background .2s, transform .15s;
}
.btn-primary:hover { background: var(--naranja-h); transform: translateY(-1px); }

.btn-wa {
  display       : inline-flex;
  align-items   : center;
  gap           : 8px;
  background    : transparent;
  color         : #fff;
  padding       : 13px 20px;
  border-radius : var(--r);
  font-size     : .92rem; /* aumentado */
  font-weight   : 600;
  border        : 2px solid rgba(255,255,255,.38);
  transition    : border-color .2s, background .2s;
}
.btn-wa img   { width: 18px; height: 18px; }
.btn-wa:hover { border-color: #25D366; background: rgba(37,211,102,.1); }

/* ── HERO CARD ───────────────────────────────────────────────── */
.hero-card {
  background    : #fff;
  border-radius : var(--rl);
  padding       : 24px 22px;
  box-shadow    : 0 8px 48px rgba(0,0,0,.28);
}
.hcard-title {
  font-family    : var(--font-h);
  font-size      : 1.45rem; /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  letter-spacing : .3px;
  margin-bottom  : 3px;
}
.hcard-sub {
  font-size     : .8rem; /* aumentado */
  color         : var(--texto-s);
  padding-bottom: 14px;
  border-bottom : 1px solid var(--borde);
  margin-bottom : 14px;
  line-height   : 1.5;
}

.svc-tabs {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 6px;
  margin-bottom         : 13px;
}
.svc-tab {
  padding       : 9px 6px;
  border        : 2px solid var(--borde);
  border-radius : var(--r);
  background    : none;
  cursor        : pointer;
  font-family   : var(--font-b);
  font-size     : .78rem; /* aumentado */
  font-weight   : 600;
  color         : var(--texto-s);
  transition    : all .2s;
  text-align    : center;
  line-height   : 1.3;
}
.svc-tab:hover { border-color: var(--sky); color: var(--azul); }
.svc-tab.active {
  border-color : var(--azul);
  background   : var(--azul);
  color        : #fff;
  box-shadow   : 0 2px 8px rgba(26,58,143,.3);
}

.fh-container {
  background    : var(--fondo);
  border        : 2px dashed var(--borde);
  border-radius : var(--r);
  padding       : 16px;
  text-align    : center;
  margin-bottom : 13px;
}
.fh-note {
  font-size     : .82rem; /* aumentado */
  color         : var(--texto-s);
  margin-bottom : 9px;
  line-height   : 1.5;
}
.fh-btn {
  display       : block;
  width         : 100%;
  padding       : 13px;
  background    : var(--azul);
  color         : #fff;
  border-radius : var(--r);
  font-size     : .92rem; /* aumentado */
  font-weight   : 700;
  transition    : background .2s;
  text-align    : center;
}
.fh-btn:hover { background: var(--azul-lt); }

.guarantees { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.gtag {
  display     : flex;
  align-items : center;
  gap         : 4px;
  font-size   : .74rem; /* aumentado */
  font-weight : 600;
  color       : var(--verde);
}
.gtag::before { content: "✓"; font-size: .85rem; }

.coupon-note {
  margin-top  : 6px;
  font-size   : .74rem; /* aumentado */
  color       : var(--texto-s);
  text-align  : center;
  font-weight : 700;
}

/* Scroll hint */
.scroll-hint {
  position       : absolute;
  bottom         : 16px;
  left           : 50%;
  transform      : translateX(-50%);
  z-index        : 2;
  text-align     : center;
  font-size      : .68rem; /* aumentado */
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : rgba(255,255,255,.38);
  animation      : sp 2.2s ease-in-out infinite;
}
.scroll-hint::after {
  content    : '';
  display    : block;
  width      : 1px;
  height     : 24px;
  background : linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin     : 6px auto 0;
}
@keyframes sp {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .9; transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background  : var(--azul);
  padding     : 14px 0;
  border-top  : 3px solid var(--naranja);
}
.trust-inner {
  max-width       : 1120px;
  margin          : 0 auto;
  padding         : 0 20px;
  display         : flex;
  flex-wrap       : wrap;
  align-items     : center;
  justify-content : space-between;
}
.t-item {
  display      : flex;
  align-items  : center;
  gap          : 9px;
  padding      : 6px 14px;
  border-right : 1px solid rgba(255,255,255,.12);
  flex         : 1;
  min-width    : 155px;
}
.t-item:last-child { border-right: none; }
.t-check {
  width           : 17px;
  height          : 17px;
  border-radius   : 50%;
  background      : var(--naranja);
  color           : var(--texto);
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-size       : .72rem;
  font-weight     : 700;
  flex-shrink     : 0;
}
.t-text {
  font-size   : .8rem; /* aumentado */
  font-weight : 600;
  color       : rgba(255,255,255,.88);
  line-height : 1.3;
}

/* ── BOOKING MOVIL ───────────────────────────────────────────── */
.booking-mobile {
  display    : none;
  background : var(--fondo);
  padding    : 24px 20px;
}
.booking-mobile h2 {
  font-family    : var(--font-h);
  font-size      : 1.4rem;
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  margin-bottom  : 5px;
}
.booking-mobile p { font-size: .82rem; color: var(--texto-s); margin-bottom: 14px; }
.mob-btns         { display: flex; flex-direction: column; gap: 8px; }
.mob-btn-naranja  { background: var(--naranja) !important; color: var(--texto) !important; }
.mob-btn-sky      { background: var(--azul-lt) !important; color: #fff !important; }

/* ── ESTADISTICAS ────────────────────────────────────────────── */
.stats-section { background: var(--fondo); padding: 30px 0; }
.stats-grid {
  display               : grid;
  grid-template-columns : repeat(4, 1fr);
  border                : 1px solid var(--borde);
  border-radius         : var(--rl);
  overflow              : hidden;
}
.stat-block {
  padding      : 26px 14px; /* reducido */
  text-align   : center;
  border-right : 1px solid var(--borde);
  background   : #fff;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family   : var(--font-h);
  font-size     : 2.6rem; /* aumentado */
  font-weight   : 700;
  color         : var(--azul);
  line-height   : 1;
  margin-bottom : 5px;
}
.stat-num span { color: var(--naranja); }
.stat-label {
  font-size   : .8rem; /* aumentado */
  font-weight : 600;
  color       : var(--texto-s);
  line-height : 1.4;
}

/* ── VEHICULOS ───────────────────────────────────────────────── */
.vehicles-intro { text-align: center; margin-bottom: 22px; }
.vehicles-intro p {
  font-size   : .95rem; /* aumentado */
  color       : var(--texto-s);
  max-width   : 520px;
  margin      : 0 auto;
  line-height : 1.7;
}
.veh-note {
  display       : inline-block;
  background    : rgba(26,58,143,.07);
  border        : 1px solid var(--borde);
  border-radius : 30px;
  padding       : 6px 16px;
  font-size     : .82rem; /* aumentado */
  font-weight   : 600;
  color         : var(--azul);
  margin-top    : 10px;
}
.vehicles-grid {
  display               : grid;
  grid-template-columns : repeat(4, 1fr);
  gap                   : 16px;
}
.veh-card {
  background    : #fff;
  border        : 1px solid var(--borde);
  border-radius : var(--rl);
  padding       : 18px 14px;
  text-align    : center;
  transition    : box-shadow .25s, border-color .25s;
}
.veh-card:hover { box-shadow: var(--sombra); border-color: var(--sky); }
.veh-img {
  height          : 120px;
  background      : var(--fondo);
  border-radius   : var(--r);
  margin-bottom   : 12px;
  display         : flex;
  align-items     : center;
  justify-content : center;
  overflow        : hidden;
  position        : relative;
}
.veh-img-guide {
  font-size     : .62rem;
  color         : var(--texto-s);
  text-align    : center;
  padding       : 6px;
  line-height   : 1.4;
  border        : 1px dashed var(--borde);
  border-radius : var(--r);
  margin        : 6px;
}
.veh-name {
  font-family    : var(--font-h);
  font-size      : 1.2rem; /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  margin-bottom  : 3px;
}
.veh-pax {
  font-size     : .8rem; /* aumentado */
  font-weight   : 600;
  color         : var(--sky);
  margin-bottom : 8px;
}
.veh-desc { font-size: .82rem; color: var(--texto-s); line-height: 1.55; }

/* ── TARJETAS DE SERVICIO ────────────────────────────────────── */
.services-intro { text-align: center; margin-bottom: 24px; }
.services-intro p {
  font-size   : .92rem; /* aumentado */
  color       : var(--texto-s);
  max-width   : 520px;
  margin      : 0 auto;
  line-height : 1.7;
}
.services-grid {
  display               : grid;
  grid-template-columns : repeat(auto-fit, minmax(260px, 1fr));
  gap                   : 18px;
}
.svc-card {
  background      : #fff;
  border          : 1px solid var(--borde);
  border-radius   : var(--rl);
  overflow        : hidden;
  display         : flex;
  flex-direction  : column;
  transition      : transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card:hover {
  transform    : translateY(-4px);
  box-shadow   : var(--sombra);
  border-color : var(--sky);
}

.svc-img {
  height     : 176px; /* ligeramente menor */
  position   : relative;
  overflow   : hidden;
  background : linear-gradient(135deg, #1A3A8F, #0D1B36);
}
.img-guide {
  position        : absolute;
  inset           : 0;
  z-index         : 3;
  border          : 2px dashed rgba(245,166,35,.5);
  display         : flex;
  align-items     : center;
  justify-content : center;
  background      : rgba(26,58,143,.55);
  padding         : 10px;
}
.img-guide-text {
  background    : rgba(0,0,0,.78);
  color         : #fff;
  font-size     : .64rem;
  line-height   : 1.5;
  padding       : 7px 10px;
  border-radius : 5px;
  text-align    : center;
  max-width     : 200px;
}

.badges   { position: absolute; top: 10px; left: 10px; z-index: 4; display: flex; gap: 5px; flex-wrap: wrap; }
.badge    { font-size: .64rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.badge-p  { background: var(--azul); color: #fff; }
.badge-c  { background: var(--naranja); color: var(--texto); }
.badge-h  { background: var(--verde); color: #fff; }
.badge-urgency { background: var(--rojo); color: #fff; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.7; } }

.svc-body {
  padding        : 20px;
  flex           : 1;
  display        : flex;
  flex-direction : column;
}
.svc-name {
  font-family    : var(--font-h);
  font-size      : 1.24rem;
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  letter-spacing : .3px;
  margin-bottom  : 8px;
}
.svc-desc {
  font-size     : .92rem;
  color         : var(--texto-s);
  line-height   : 1.68;
  margin-bottom : 11px;
  flex          : 1;
}
.svc-specs    { display: grid; gap: 5px; margin-bottom: 11px; }
.svc-spec     { display: flex; gap: 8px; align-items: flex-start; font-size: .84rem; line-height: 1.45; }
.spec-l       { font-weight: 700; color: var(--azul); white-space: nowrap; min-width: 70px; font-size: .8rem; }
.spec-v       { color: var(--texto-s); }
.svc-price    { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.p-from       { font-size: .74rem; color: var(--texto-s); }
.p-amt        { font-family: var(--font-h); font-size: 1.75rem; font-weight: 700; color: var(--azul); line-height: 1; }
.p-unit       { font-size: .72rem; color: var(--texto-s); }

/* CTA de tarjeta — RESERVA AHORA en naranja para impulsar conversión */
.btn-book {
  display         : block;
  width           : 100%;
  padding         : 13px;
  background      : var(--naranja);
  color           : var(--texto);
  text-align      : center;
  font-size       : .9rem; /* aumentado */
  font-weight     : 700;
  border-radius   : var(--r);
  border          : none;
  cursor          : pointer;
  transition      : background .2s;
  text-transform  : uppercase;
  letter-spacing  : .5px;
}
.btn-book:hover { background: var(--naranja-h); }
.svc-cancel { text-align: center; font-size: .7rem; color: var(--verde); font-weight: 600; margin-top: 6px; }

.svc-add {
  background      : var(--fondo);
  border          : 2px dashed var(--borde);
  border-radius   : var(--rl);
  display         : flex;
  flex-direction  : column;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  padding         : 36px 20px;
  min-height      : 350px;
  color           : var(--texto-s);
}
.add-circle {
  width           : 46px;
  height          : 46px;
  border-radius   : 50%;
  background      : var(--borde);
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-size       : 1.3rem;
  margin          : 0 auto 11px;
}
.svc-add h4 {
  font-family    : var(--font-h);
  font-size      : .98rem;
  font-weight    : 700;
  color          : var(--texto-s);
  text-transform : uppercase;
  margin-bottom  : 7px;
}
.svc-add p  { font-size: .82rem; line-height: 1.6; max-width: 180px; }
.svc-add a  { margin-top: 14px; font-size: .82rem; font-weight: 700; color: var(--azul); border-bottom: 2px solid var(--naranja); padding-bottom: 2px; }

/* ── COMO FUNCIONA ───────────────────────────────────────────── */
.steps-grid {
  display               : grid;
  grid-template-columns : repeat(4, 1fr);
  position              : relative;
}
.steps-grid::before {
  content    : '';
  position   : absolute;
  top        : 30px;
  left       : 12.5%;
  right      : 12.5%;
  height     : 2px;
  background : var(--borde);
  z-index    : 0;
}
.step    { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width           : 60px;
  height          : 60px;
  border-radius   : 50%;
  background      : var(--azul);
  color           : #fff;
  font-family     : var(--font-h);
  font-size       : 1.5rem;
  font-weight     : 700;
  display         : flex;
  align-items     : center;
  justify-content : center;
  margin          : 0 auto 13px;
  border          : 3px solid #fff;
  box-shadow      : 0 0 0 3px var(--borde);
}
.step h4 {
  font-family    : var(--font-h);
  font-size      : 1rem; /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  margin-bottom  : 7px;
}
.step p { font-size: .9rem; color: var(--texto-s); line-height: 1.65; }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rev-card {
  background    : #fff;
  border        : 1px solid var(--borde);
  border-radius : var(--rl);
  padding       : 22px;
}
.rev-stars  { color: var(--naranja); font-size: .9rem; letter-spacing: 2px; margin-bottom: 10px; }
.rev-text   { font-size: .92rem; line-height: 1.72; color: var(--texto); font-style: italic; margin-bottom: 14px; border-left: 3px solid var(--sky); padding-left: 12px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av     { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: var(--azul); color: #fff; font-family: var(--font-h); font-size: .9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.rev-name   { font-size: .86rem; font-weight: 700; color: var(--azul); }
.rev-from   { font-size: .72rem; color: var(--texto-s); margin-top: 1px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--borde); }
.faq-btn {
  width           : 100%;
  background      : none;
  border          : none;
  text-align      : left;
  padding         : 16px 0;
  font-family     : var(--font-b);
  font-size       : .95rem; /* aumentado */
  font-weight     : 600;
  color           : var(--azul);
  cursor          : pointer;
  display         : flex;
  justify-content : space-between;
  align-items     : center;
  gap             : 14px;
}
.faq-icon {
  width           : 24px;
  height          : 24px;
  border-radius   : 50%;
  background      : var(--fondo);
  border          : 2px solid var(--borde);
  flex-shrink     : 0;
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-size       : .95rem;
  color           : var(--azul);
  transition      : transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--azul); color: #fff; border-color: var(--azul); }
.faq-ans {
  font-size   : .88rem; /* aumentado */
  color       : var(--texto-s);
  line-height : 1.75;
  max-height  : 0;
  overflow    : hidden;
  transition  : max-height .35s ease, padding .2s;
}
.faq-item.open .faq-ans { max-height: 400px; padding-bottom: 16px; }

/* ── FORMULARIO COTIZACION ───────────────────────────────────── */
.contact-section { background: var(--azul); padding: var(--sec-pad) 0; }
.contact-grid {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 32px;
  align-items           : start;
}
.contact-left h2 {
  font-family    : var(--font-h);
  font-size      : clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight    : 700;
  color          : #fff;
  text-transform : uppercase;
  margin-bottom  : 11px;
}
.contact-left p  { font-size: .98rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 18px; }
.contact-info    { display: flex; flex-direction: column; gap: 9px; }
.c-info-item     { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: rgba(255,255,255,.82); line-height: 1.5; }
.c-info-icon     { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-info-icon img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.social-link  {
  display       : inline-flex;
  align-items   : center;
  gap           : 7px;
  padding       : 8px 14px;
  background    : rgba(255,255,255,.14);
  border        : 1px solid rgba(255,255,255,.22);
  border-radius : var(--r);
  font-size     : .8rem; /* aumentado */
  font-weight   : 600;
  color         : #fff;
  transition    : background .2s, border-color .2s;
}
.social-link:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.5); }
.social-link img   { width: 16px; height: 16px; }

.contact-form { background: #fff; border-radius: var(--rl); padding: 24px; }
.form-title   {
  font-family    : var(--font-h);
  font-size      : 1.25rem; /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  margin-bottom  : 3px;
}
.form-sub { font-size: .78rem; color: var(--texto-s); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--borde); line-height: 1.5; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field    { display: flex; flex-direction: column; gap: 3px; }
.form-field label {
  font-size      : .72rem; /* aumentado */
  font-weight    : 700;
  color          : var(--azul);
  text-transform : uppercase;
  letter-spacing : .5px;
}
/* Asterisco de campo obligatorio */
.form-field label .req { color: var(--rojo); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  width         : 100%;
  padding       : 10px 12px;
  border        : 1.5px solid var(--borde);
  border-radius : var(--r);
  font-family   : var(--font-b);
  font-size     : .95rem;
  color         : var(--texto);
  background    : #fff;
  outline       : none;
  transition    : border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--azul); }
.form-field input.error,
.form-field select.error,
.form-field textarea.error { border-color: var(--rojo); }
.field-error  { font-size: .68rem; color: var(--rojo); margin-top: 2px; display: none; }
.field-error.show { display: block; }
.form-field textarea { resize: vertical; min-height: 75px; }

/* Teléfono */
.phone-row    { display: flex; gap: 8px; align-items: flex-start; }
.phone-flag   {
  flex-shrink   : 0;
  width         : 110px;
  padding       : 10px 8px;
  border        : 1.5px solid var(--borde);
  border-radius : var(--r);
  font-size     : .82rem;
  background    : #fff;
  color         : var(--texto);
  cursor        : pointer;
  outline       : none;
  height        : 42px;
}
.phone-flag:focus { border-color: var(--azul); }
.phone-right  { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.phone-inner  { display: flex; align-items: center; gap: 6px; width: 100%; }
.phone-code   {
  font-size   : .82rem;
  font-weight : 700;
  color       : var(--azul);
  white-space : nowrap;
  line-height : 42px;
  min-width   : 34px;
}
#phoneNumber  {
  flex          : 1;
  min-width     : 0;
  padding       : 10px 12px;
  border        : 1.5px solid var(--borde);
  border-radius : var(--r);
  font-family   : var(--font-b);
  font-size     : .95rem;
  color         : var(--texto);
  background    : #fff;
  outline       : none;
  transition    : border-color .2s;
  height        : 42px;
}
#phoneNumber:focus { border-color: var(--azul); }
#phoneNumber.error { border-color: var(--rojo); }

.btn-form {
  width         : 100%;
  padding       : 14px;
  background    : var(--naranja);
  color         : var(--texto);
  border        : none;
  border-radius : var(--r);
  font-size     : .95rem; /* aumentado */
  font-weight   : 700;
  cursor        : pointer;
  transition    : background .2s;
  margin-top    : 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.btn-form:hover { background: var(--naranja-h); }
.form-privacy   { font-size: .7rem; color: var(--texto-s); text-align: center; margin-top: 9px; line-height: 1.5; }
.form-privacy a { color: var(--sky); }
.form-success {
  display       : none;
  text-align    : center;
  padding       : 20px;
  background    : rgba(26,158,92,.08);
  border        : 1px solid var(--verde);
  border-radius : var(--r);
  color         : var(--verde);
  font-size     : .9rem;
  font-weight   : 600;
  line-height   : 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--texto); padding: 40px 0 18px; color: rgba(255,255,255,.5); }
.footer-grid {
  display               : grid;
  grid-template-columns : 2fr 1fr 1fr 1fr;
  gap                   : 32px;
  margin-bottom         : 28px;
}
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 11px; display: block; }
.footer-brand p  { font-size: .82rem; line-height: 1.7; max-width: 245px; margin-bottom: 13px; }

.footer-socials { display: flex; gap: 7px; flex-wrap: wrap; }
.fsocial {
  display       : inline-flex;
  align-items   : center;
  gap           : 6px;
  padding       : 7px 13px;
  background    : rgba(255,255,255,.1);
  border        : 1px solid rgba(255,255,255,.16);
  border-radius : var(--r);
  font-size     : .78rem; /* aumentado */
  font-weight   : 600;
  color         : rgba(255,255,255,.84);
  transition    : background .2s, border-color .2s, color .2s;
}
.fsocial:hover { background: var(--naranja); border-color: var(--naranja); color: var(--texto); }
.fsocial img   { width: 15px; height: 15px; filter: brightness(0) invert(1); transition: filter .2s; }
.fsocial:hover img { filter: brightness(0); }

.footer-col h4    { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--naranja); margin-bottom: 11px; }
.footer-col ul    { list-style: none; }
.footer-col li    { margin-bottom: 8px; }
.footer-col a     { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top      : 1px solid rgba(255,255,255,.08);
  padding-top     : 16px;
  display         : flex;
  justify-content : space-between;
  align-items     : center;
  font-size       : .72rem;
  flex-wrap       : wrap;
  gap             : 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-links { display: flex; gap: 14px; }

/* ── WHATSAPP FLOTANTE — más grande ──────────────────────────── */
.wa-fab {
  position        : fixed;
  bottom          : 24px;
  right           : 24px;
  z-index         : 998;
  width           : 64px;  /* aumentado de 52 a 64 */
  height          : 64px;
  border-radius   : 50%;
  background      : #25D366;
  display         : flex;
  align-items     : center;
  justify-content : center;
  box-shadow      : 0 4px 20px rgba(37,211,102,.5);
  transition      : transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
.wa-fab img   { width: 34px; height: 34px; display: block; }

/* ── ANIMACION FADE ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 600px) {
  .hero-img { background-image: url('images/hero-oaxaca-800.webp'); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-content          { grid-template-columns: 1fr; }
  .hero-card             { display: none; }
  .booking-mobile        { display: block; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .stats-grid            { grid-template-columns: repeat(2,1fr); }
  .steps-grid            { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .steps-grid::before    { display: none; }
  .reviews-grid          { grid-template-columns: 1fr; }
  .vehicles-grid         { grid-template-columns: repeat(2,1fr); }
  .contact-grid          { grid-template-columns: 1fr; }
  .nav-links             { display: none; }
  .nav-burger            { display: flex; }
}
@media (max-width: 600px) {
  :root { --sec-pad: 24px; }
  html { font-size: 16px; }
  .footer-grid           { grid-template-columns: 1fr; }
  .hero                  { min-height: auto; }
  .hero-content          { padding: 38px 20px 28px; }
  .hero h1               { font-size: 2.4rem; }
  .hero-desc             { font-size: 1.03rem; line-height: 1.65; }
  .hero-alert            { padding: 14px 16px; font-size: .96rem; }
  .hero-stats            { gap: 14px; }
  .trust-inner           { flex-direction: column; }
  .t-item                { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .t-item:last-child     { border-bottom: none; }
  .stats-grid            { grid-template-columns: repeat(2,1fr); }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .vehicles-grid         { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .phone-row             { flex-direction: column; }
  .phone-flag            { width: 100%; }
}

/* ── IMAGENES DE TARJETAS — producción ───────────────────────── */
.veh-img img,
.svc-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.veh-img img { object-fit: contain; padding: 8px; }


/* ── IMAGENES REALES — V3 ──────────────────────────────────────
   Las tarjetas usan background-image para evitar iconos rotos si un archivo falta.
   IMPORTANTE: los nombres deben coincidir exactamente, incluyendo mayusculas/minusculas.
*/
.veh-img,
.svc-img {
  background-position: center;
  background-repeat: no-repeat;
}

.veh-img {
  background-color: #F4F7FA;
  background-size: contain;
}

.svc-img {
  background-color: #1A3A8F;
  background-size: cover;
}

.img-veh-sedan    { background-image: url('images/vehiculo-sedan.webp'); }
.img-veh-mpv      { background-image: url('images/vehiculo-mpv.webp'); }
.img-veh-minivan  { background-image: url('images/vehiculo-minivan.webp'); }
.img-veh-sprinter { background-image: url('images/vehiculo-sprinter.webp'); }

.img-aero-hotel   { background-image: url('images/traslado-aero-hotel.webp'); }
.img-hotel-aero   { background-image: url('images/traslado-hotel-aero.webp'); }
.img-comp-llegada { background-image: url('images/traslado-compartido-salida.webp'); }
.img-comp-salida  { background-image: url('images/traslado-compartido-salida.webp'); }
.img-oaxaca-costa { background-image: url('images/traslado-oaxaca-costa.webp'); }
.img-costa-oaxaca { background-image: url('images/traslado-costa-oaxaca.webp'); }
.img-por-hora     { background-image: url('images/traslado-por-hora.webp'); }
.img-tour-privado { background-image: url('images/traslado-tour-privado.webp'); }

/* Iconos de contacto sin depender de archivos no incluidos en tu carpeta images */
.c-info-icon::before {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}
.c-icon-phone::before    { content: "☎"; }
.c-icon-email::before    { content: "✉"; }
.c-icon-location::before { content: "⌖"; }
.c-icon-clock::before    { content: "◷"; }

/* ── V4: imagenes de flota con <img> real y fallback visible ─────────
   Se cambia la flota de background-image a <img> para evitar cuadros vacios.
   El query string ?v=20260507d fuerza al navegador a pedir la imagen actualizada.
*/
.vehicles-grid .veh-img {
  background-image: none !important;
  background-color: #F4F7FA;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.vehicles-grid .veh-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  display: block;
}
.img-fallback-text {
  display: none;
  width: 100%;
  padding: 10px;
  color: var(--texto-s);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
.veh-img.img-missing {
  border: 1px dashed var(--borde);
  display: flex;
  align-items: center;
  justify-content: center;
}
.veh-img.img-missing .img-fallback-text { display: block; }


/* =====================================================================
   V5 — FLOTA RECONSTRUIDA DESDE CERO
   Usa nombres nuevos para evitar conflictos con archivos anteriores:
   flota-sedan.webp, flota-mpv.webp, flota-minivan.webp, flota-sprinter.webp
===================================================================== */
.fleet-section {
  background: var(--fondo);
}
.fleet-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.fleet-intro p {
  font-size: .98rem;
  color: var(--texto-s);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.fleet-note {
  display: inline-block;
  background: rgba(26,58,143,.07);
  border: 1px solid var(--borde);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--azul);
  margin-top: 12px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.fleet-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--rl);
  padding: 14px 14px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26,58,143,.035);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.fleet-card:hover {
  transform: translateY(-3px);
  border-color: var(--sky);
  box-shadow: var(--sombra);
}
.fleet-media {
  width: 100%;
  aspect-ratio: 400 / 220;
  margin: 0 0 14px;
  background: #F4F7FA;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
}
.fleet-fallback {
  display: none;
  width: 100%;
  padding: 12px;
  color: var(--texto-s);
  font-size: .76rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.fleet-media.is-missing {
  border: 1px dashed var(--borde);
}
.fleet-media.is-missing .fleet-fallback {
  display: block;
}
.fleet-card h3 {
  font-family: var(--font-h);
  font-size: 1.24rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 0 0 6px;
}
.fleet-pax {
  font-size: .82rem;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 8px;
}
.fleet-desc {
  font-size: .86rem;
  color: var(--texto-s);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 960px) {
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { max-width: 360px; margin: 0 auto; }
}

/* ================================================================
   V6 — FORMULARIO TELEFONO RECONSTRUIDO
   Motivo: evitar conflicto de especificidad con .form-field select {width:100%}
================================================================ */
.form-field-phone {
  width: 100%;
}
.form-field-phone .phone-combo,
#phoneCombo {
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: stretch !important;
  width: 100% !important;
}
.form-field-phone select.phone-flag,
#phoneFlag.phone-flag,
.form-field .phone-combo select.phone-flag {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  height: 42px !important;
  padding: 10px 8px !important;
  border: 1.5px solid var(--borde) !important;
  border-radius: var(--r) !important;
  background: #fff !important;
  color: var(--texto) !important;
  font-family: var(--font-b) !important;
  font-size: .9rem !important;
  line-height: 1.2 !important;
}
.form-field-phone input#phoneNumber,
#phoneCombo input#phoneNumber {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  padding: 10px 12px !important;
  border: 1.5px solid var(--borde) !important;
  border-radius: var(--r) !important;
  background: #fff !important;
  color: var(--texto) !important;
  font-family: var(--font-b) !important;
  font-size: .95rem !important;
}
.form-field-phone input#phoneNumber:focus,
.form-field-phone select.phone-flag:focus {
  border-color: var(--azul) !important;
}
.form-field-phone input#phoneNumber.error {
  border-color: var(--rojo) !important;
}
.form-field-phone .field-error {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .form-field-phone .phone-combo,
  #phoneCombo {
    grid-template-columns: 1fr !important;
  }
  .form-field-phone select.phone-flag,
  #phoneFlag.phone-flag,
  .form-field .phone-combo select.phone-flag {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}


/* ================================================================
   V8 — TELEFONO RECONSTRUIDO CON CLASES UNICAS
   Motivo: evitar que reglas globales de select/input rompan el campo en desktop.
================================================================ */
.os-phone-field { width: 100%; }
.os-phone-control {
  display: grid !important;
  grid-template-columns: 168px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
.os-phone-control > .os-phone-country,
.form-field .os-phone-control > .os-phone-country {
  display: block !important;
  width: 168px !important;
  min-width: 0 !important;
  max-width: 168px !important;
  height: 44px !important;
  padding: 10px 9px !important;
  border: 1.5px solid var(--borde) !important;
  border-radius: var(--r) !important;
  background-color: #fff !important;
  color: var(--texto) !important;
  font-family: var(--font-b) !important;
  font-size: .9rem !important;
  line-height: 1.2 !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.os-phone-control > .os-phone-number,
.form-field .os-phone-control > .os-phone-number,
input#osPhoneNumber.os-phone-number {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 44px !important;
  padding: 10px 12px !important;
  border: 1.5px solid var(--borde) !important;
  border-radius: var(--r) !important;
  background-color: #fff !important;
  color: var(--texto) !important;
  font-family: var(--font-b) !important;
  font-size: .95rem !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.os-phone-country:focus,
.os-phone-number:focus { border-color: var(--azul) !important; }
.os-phone-number.error { border-color: var(--rojo) !important; }
/* Defensa contra versiones anteriores del HTML si el navegador trae cache viejo. */
#phoneCode { display: none !important; }
.phone-inner, .phone-right { min-width: 0 !important; width: 100% !important; }
@media (max-width: 600px) {
  .os-phone-control { grid-template-columns: 1fr !important; }
  .os-phone-control > .os-phone-country,
  .form-field .os-phone-control > .os-phone-country {
    width: 100% !important;
    max-width: none !important;
  }
}

/* V8 — accesibilidad: contraste de textos señalados por Lighthouse */
.gtag { color: #08783f; font-weight: 800; }
.sec-tag { color: #126ea8; }
.form-privacy a,
.footer-bottom a,
.footer-col a { text-decoration: underline; text-underline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
