/* =========================================================
   ViveLaCity Taxi Landing Page - Estilos Específicos
   ========================================================= */

/* Variables CSS para consistencia */
:root {
  /* BASE */
  --taxi-primary: #182085;       /* Se mantiene: Azul Corporativo */
  
  /* EL CAMBIO CRÍTICO: Matamos el amarillo (#ffcb05) */
  /* Lo reemplazamos por el Azul Oscuro de interacción */
  /* Donde antes había amarillo, ahora habrá un azul sobrio y elegante */
  --taxi-accent: #0f145b;        
  
  /* COLORES FUNCIONALES */
  --taxi-success: #00a88a;       /* Se mantiene */
  --taxi-white: #ffffff;         /* Se mantiene */
  
  /* FONDO */
  /* Actualizamos el gris genérico (#f8f9fa) al nuevo tono "Executive" */
  /* Un tinte azulado muy sutil que se siente más premium */
  --taxi-light-bg: #E8E9F3;      
  
  /* BORDES Y TEXTO (Se mantienen igual) */
  --taxi-border: #e0e0e0;
  --taxi-text-dark: #333333;     /* Tu Gris al 80% */
  --taxi-text-light: #666666;
  
  /* SOMBRAS (Se mantienen, están bien calibradas) */
  --taxi-shadow: 0 10px 30px rgba(0,0,0,.15);
  --card-shadow: 0 12px 32px rgba(2,6,23,.18);
}

/* Contenedor principal */
.taxi-landing {
  background: #ffffff;
  min-height: 100vh;
}

/* =========================================================
   HEADER INTEGRADO (overlay sobre el hero)
   ========================================================= */
.taxi-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease;
  border: 0;
  z-index: 50;
  padding: 0 20px;
}

.taxi-header.is-scrolled{
  background: rgba(255,255,255,.96);      /* ajustable */
  box-shadow: 0 14px 28px rgba(0,0,0,.50); /* “50%” como pediste */
}

.taxi-header .header-container {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.taxi-header .logo-container { display: inline-flex; align-items: center; justify-self: start; }

.taxi-header .logo-container img {
  display: block;
  height: 54px;
  width: auto;
}

.taxi-header .header-nav { display: flex; gap: 22px; align-items: center; justify-content: flex-end; justify-self: end; }

.taxi-header .header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color .2s ease, transform .2s ease;
}

.taxi-header .header-nav a:hover,
.taxi-header .header-nav a:focus-visible {
  background: rgba(255,255,255,.14);
  outline: none;
}

.taxi-header.is-scrolled .header-nav a { color: #0f172a; }
.taxi-header.is-scrolled .header-nav a:hover,
.taxi-header.is-scrolled .header-nav a:focus-visible {
  background: rgba(2,6,23,.06);
}

/* =========================================================
   HERO CON DOS COLUMNAS + FOTO DE FONDO
   ========================================================= */
.taxi-hero {
  background: url('../img/taxi_hero.jpg') center/cover no-repeat;
  position: relative;
  color: var(--taxi-white);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 96px 20px 48px; /* deja espacio para el header overlay */
  overflow: hidden;
}

.taxi-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events:none;
}

/* layout interno */
.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* texto | formulario */
  gap: 28px;
  width: 100%;
}

/* Columna texto */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  opacity: .95;
  margin: 6px 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  justify-content: center;  /* AGREGAR esta línea */
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
}
.hero-bullets i { color: var(--taxi-accent); }

/* Columna formulario (card) */
.hero-booking {
  display: flex;
  justify-content: flex-end;
}
.hero-booking .taxi-booking-widget,
.hero-booking #app-loading {
  background: #fff;
  color: var(--taxi-text-dark);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 22px;
}
.hero-booking .taxi-booking-widget { width: 100%; }
.hero-booking #app-loading { width: 100%; }

#taxi-booking-app { width: min(520px, 100%); }

/* Spinner del placeholder */
.loading-placeholder .spinner {
  width: 40px; height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid var(--taxi-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   SECCIONES INFERIORES
   ========================================================= */
.trust-signals {
  background: var(--taxi-white);
  padding: 24px 20px 64px 20px;
}
.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.trust-signals h2 {
  font-size: 2.1rem;
  color: var(--taxi-primary);
  margin-bottom: 36px;
  font-weight: 800;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.trust-item {
  padding: 28px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid var(--taxi-border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.trust-item i { font-size: 2.4rem; color: var(--taxi-success); margin-bottom: 12px; }
.trust-item h3 { font-size: 1.2rem; color: var(--taxi-primary); margin: 8px 0 6px; font-weight: 700; }
.trust-item p { color: var(--taxi-text-light); line-height: 1.6; margin: 0; }

.routes-info {
  background: linear-gradient(135deg, var(--taxi-light-bg) 0%, #e9ecef 100%);
  padding: 24px 20px 64px 20px;
}
.routes-container { max-width: 900px; margin: 0 auto; text-align: center; }
.routes-info h2 {
  font-size: 2.1rem; color: var(--taxi-primary);
  margin-bottom: 36px; font-weight: 800;
}
.routes-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.route-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--taxi-white); padding: 22px 26px; border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease;
}
.route-item:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0,0,0,.12); }
.route-endpoint { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--taxi-text-dark); flex: 1; }
.route-endpoint i { font-size: 1.3rem; color: var(--taxi-primary); width: 28px; text-align: center; }
.route-arrow { margin: 0 16px; color: var(--taxi-success); font-size: 1.1rem; }
.routes-cta {
  background: var(--taxi-white); padding: 20px 22px; border-radius: 12px; border: 2px dashed var(--taxi-border);
}
.routes-cta p { color: var(--taxi-text-light); font-size: 1.05rem; margin: 0; line-height: 1.5; }

/* =========================================================
   FOOTER
   ========================================================= */
.taxi-footer {
  background: var(--taxi-white);  /* Cambiar de var(--taxi-primary) a blanco */
  color: var(--taxi-text-dark);   /* Cambiar el texto de blanco a oscuro */
  padding: 40px 20px 24px;
  text-align: center;
}
.footer-content { max-width: 800px; margin: 0 auto; }
.footer-brand { margin-bottom: 20px; }
.footer-brand p { margin: 12px 0 0; opacity: .85; font-size: .95rem; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--taxi-text-dark);  /* Enlaces oscuros en lugar de blancos */
  text-decoration: none;
  font-size: .95rem;
  transition: opacity .2s ease;
}
.footer-links a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Banner en footer */
.contenedor-banner {
  margin-bottom: 20px;
}

.banner-inferior {
  height: 4px;
  background: linear-gradient(90deg, var(--taxi-primary) 0%, var(--taxi-accent) 100%);
  border-radius: 2px;
}

.footer-brand h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--taxi-text-dark);  /* Texto oscuro */
}

.footer-brand a {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-brand a:hover {
  opacity: 0.8;
}

/* Mantener el banner responsive como en el sitio principal */
.taxi-footer .banner-inferior {
  background: url("/img/banner-desktop.jpg") center/cover no-repeat !important;
  aspect-ratio: 96/10 !important;
  border: 1px solid var(--taxi-border) !important;
  border-radius: 10px !important;
  margin: 0 auto 16px auto;
  max-width: 100% !important;  /* Cambiar de 700px a 100% */
  width: 100% !important;
  height: auto !important;
}

/* ===== Mapa Área Metropolitana (dentro de .routes-container) ===== */
.metro-map {
  margin: 24px 0 8px;            /* separa del aviso y del banner */
}

.metro-map__frame {
  margin: 0 auto;
  padding: 16px;                 /* halo para PNG transparente */
  width: 70%;                    /* original nada */
  border-radius: 14px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid var(--taxi-border);
  box-shadow: var(--card-shadow);
}

.metro-map__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.metro-map__caption {
  margin: 10px 4px 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--taxi-text-light);
}

/* =========================================================
   ACCESIBILIDAD Y PREFERENCIAS
   ========================================================= */
.taxi-header .header-nav a:focus-visible {
  outline: 2px dashed var(--taxi-accent);
  outline-offset: 2px;
}

/* =========================================================
   ESTILOS WIDGET TAXI SIMPLIFICADO
   ========================================================= */
/* Contenedor principal del widget */
.taxi-booking-widget {
  width: 100%;
  max-width: 520px;
}

/* Form Groups - Layout Horizontal */
.g2c-form-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.g2c-label {
  font-weight: 600;
  color: var(--taxi-text-dark);
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
  justify-self: start;
}

.g2c-label i {
  margin-right: 6px;
  color: var(--taxi-primary);
}

/* Inputs y Selects - Ajustados para layout horizontal */
.g2c-select,
.g2c-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--taxi-border);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  background: white;
  color: var(--taxi-text-dark);
}

.g2c-select:focus,
.g2c-input:focus {
  outline: none;
  border-color: var(--taxi-primary);
}

.g2c-select:disabled,
.g2c-input:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* Counters - Layout horizontal mejorado */
.g2c-counters-container {
  display: grid;
  grid-template-columns: 140px 1fr;  /* Volver a 1fr */
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  justify-items: start;  /* AGREGAR esta línea */
}

.g2c-counter {
  display: contents;
}

.g2c-counter .g2c-label {
  grid-column: 1;
  margin: 0;
  font-weight: 600;
  color: var(--taxi-text-dark);
  font-size: 0.9rem;
  text-align: left;
  justify-self: start;
}

.g2c-counter-control {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;  /* Ya está correcto */
  width: fit-content;
  justify-self: start;  /* AGREGAR esta línea */
}

.g2c-counter-btn {
  width: 32px;
  height: 32px;
  border: 2px solid var(--taxi-primary);
  background: white;
  color: var(--taxi-primary);
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g2c-counter-btn:hover {
  background: var(--taxi-primary);
  color: white;
}

.g2c-counter-value {
  font-weight: 700;
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
  color: var(--taxi-text-dark);
  flex-shrink: 0;
}

/* Return Trip Section - Compacta */
.g2c-return-section {
  margin-bottom: 10px;
}

.g2c-add-return-button {
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 2px solid var(--taxi-success);
  color: var(--taxi-success);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  text-align: center; /* Asegurar centrado del texto */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.g2c-add-return-button:hover,
.g2c-add-return-button.active {
  background: var(--taxi-success);
  color: white;
}

/* Main Submit Button - Más compacto */
.g2c-submit-button {
  width: 100%;
  padding: 14px 20px;
  background: var(--taxi-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.g2c-submit-button:hover:not(:disabled) {
  background: #0f1654;
  transform: translateY(-1px);
}

.g2c-submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Quote Results */
.quote-breakdown-main {
  background: #f8f9fa;
  padding: 12px 14px;  /* Reducido de 16px */
  border-radius: 8px;
  margin: 4px 0 12px 0;  /* Reducido de 16px */
}

#g2c-quote-result h3 {
  margin: 0 0 4px 0 !important;
  padding: 0;
  font-size: 1.3rem;  /* Ligeramente más grande que h4 */
  font-weight: 700;
  color: var(--taxi-primary);
  text-align: center;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;  /* Reducido de 8px */
  font-size: 0.95rem;
}

.breakdown-row:last-child {
  margin-bottom: 0;
}

.quote-total-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--taxi-primary);
  text-align: center;
  margin: 12px 0 8px;  /* Reducido de 16px */
  padding: 10px;  /* Reducido de 12px */
  border: 2px solid var(--taxi-primary);
  border-radius: 8px;
  background: rgba(24, 32, 133, 0.05);
}

.quote-usd-approx {
  text-align: center;
  font-size: 0.9rem;
  color: var(--taxi-text-light);
  margin: 8px 0 0;
}

/* Customer Details Section */
#g2c-customer-details h4 {
  color: var(--taxi-primary);
  font-weight: 700;
}

/* Compliance Section */
.compliance-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.compliance-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.compliance-row label {
  font-size: 0.9rem;
  color: var(--taxi-text-light);
  cursor: pointer;
}

.compliance-row a {
  color: var(--taxi-primary);
  text-decoration: underline;
}

/* Messages */
#g2c-message-container {
  padding: 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
}

/* Ajustes específicos para sección de regreso */
#g2c-return-details h4 {
  margin: 0 0 10px 0 !important;
  font-size: 0.95rem;
  color: var(--taxi-text-dark);
}

.return-route-display {
  margin-top: 8px !important;
  font-size: 0.9em !important;
  color: #666 !important;
  margin-bottom: 0px !important; /* Cambio de 8px a 0px */
}

/* Hamburger button - solo visible en móvil */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.taxi-header.is-scrolled .hamburger-line {
  background: #0f172a;
}

/* Animación hamburguesa activa */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* AGREGAR: Forzar color blanco cuando el menú está activo */
.hamburger-btn.active .hamburger-line {
  background: #fff !important;
}

/* Enlaces desktop - ocultos en móvil */
.nav-links-desktop {
  display: flex;
  gap: 22px;
  align-items: center;
}

/* Menú móvil overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-menu-content a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 16px 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-content a:hover {
  background: rgba(255, 255, 255, 0.1) !important;  /* AGREGAR !important */
  color: #fff !important;
}

/* Social Proof Bar */
.social-proof {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 1rem;
  color: white;
}

.proof-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Grid actualizado */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trust-item i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

/* Secondary CTA */
.secondary-cta {
  background: #f8f9fa;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.cta-container p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* ==================== TRIP SUMMARY ==================== */
.trip-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 12px 14px;
  border-radius: 8px;
  margin: 8px 0 12px 0;
  border-left: 3px solid var(--taxi-primary);
}

.trip-summary-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #495057;
}

.trip-summary-row:last-child {
  margin-bottom: 0;
}

.trip-summary-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.trip-summary-text {
  flex: 1;
  line-height: 1.3;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .trust-item, .route-item { animation: none !important; }
}

@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 20px; }
  .hero-booking { justify-content: flex-start; }
  #taxi-booking-app { width: min(560px, 100%); }
}

@media (max-width: 768px) {
  .taxi-header .header-container {
    height: auto;
    padding: 10px 14px;
  }
  .taxi-header { background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,0)); }

  .taxi-hero {
    min-height: 72vh;
    padding: 100px 16px 36px;
    background-position: center 30%;
  }
  .taxi-hero::after{
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-bullets { grid-template-columns: 1fr; row-gap: 10px; }
  .taxi-footer .banner-inferior {
    width: 90% !important;
    aspect-ratio: 7/1 !important;
    background-image: url(/img/banner-mobile.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 0 !important;
    border-radius: 6px !important;
    margin: 0 auto 16px auto;
    max-width: none !important;
  }

  .metro-map { margin: 20px 0 6px; }
  .metro-map__frame { padding: 12px; border-radius: 12px; width: 100%; }
  .metro-map__caption { font-size: 0.9rem; }        

/* Responsive - mostrar hamburguesa en móvil */
  .hamburger-btn {
    display: flex;
  }
  
  .nav-links-desktop {
    display: none;
  }
}

/* Responsive para layout horizontal */
@media (max-width: 480px) {
  .taxi-booking-widget {
    max-width: 100%;
  }
  
  .g2c-form-group,
  .g2c-counters-container {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .g2c-label {
    text-align: left;
    font-size: 0.9rem;
  }
  
  .g2c-select,
  .g2c-input {
    font-size: 16px; /* Evita zoom en iOS */
  }
  
  .g2c-counter {
    justify-content: space-between;
  }
  
  .g2c-counter-control {
    justify-content: flex-end;
  }

  .hero-title { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-subtitle { font-size: 1rem; }
  #taxi-booking-app { width: 100%; }
}

/* Utility */
* { box-sizing: border-box; }