
:root{
  --tx-primary: #8B1E32;      /* granate desde el logo */
  --tx-primary-600: #77192b;  /* hover */
  --tx-bg: #ffffff;
  --tx-text: #111111;
  --tx-muted: #6b7280;
  --tx-border: #e5e7eb;
  --tx-surface: #ffffff;
  --tx-surface-alt: #f7f7f8;
  --radius: 16px;
  --shadow: 0 10px 20px rgba(0,0,0,.06);
}



* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body { margin:0; padding:0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--tx-text);
  background: var(--tx-bg);
  line-height: 1.5;
}
h2 {
  color: #4b5563;
}
p {
  font-weight: 400;
    font-size: 1.2em;
}

/* Layout helpers */
.container{ 
  width: 80%;
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0 16px;
 }
 .container-video{ 
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0;
  background-color: transparent;
    background-image: linear-gradient(0deg, #FFFFFF 5%, #F2295B00 30%);
 }
 .container-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px; 
  background: linear-gradient(to bottom, white, transparent);
  z-index: 2;
  pointer-events: none;
}
.container-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, white, transparent);
  z-index: 2;
  pointer-events: none;
}
.container-header {
   width: 100%;
   max-width: 100%; 
   margin: 0 auto; 
   padding: 0 16px; 
}
.row{ display:flex; gap:16px; }
.row.center{ align-items:center; }
.row.between{ justify-content: space-between; }
.row.wrap{ flex-wrap: wrap; }
.grid{ display:grid; gap:24px; }
.grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
.center{ text-align:center; }

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
  background-color: #3b3a3a26;
  backdrop-filter: blur(6px);
  
  padding: 1em;
}
.brand-menu{
    height: 4em; 
   width:auto;
}
.brand .logo{
   height: 4em; 
   width:auto;
   opacity: 0;
   pointer-events: none;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   }
.show-logo .brand .logo{
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.main-nav{ 
    display: block;
    gap: 20px;
    width: 100%;
    margin-left: auto;
   }

.main-nav a{ color:#374151; text-decoration:none; font-weight:500; }
.main-nav a:hover{ color:#111; }
.menu-btn{ display:none; padding:8px 10px; }
.mobile-menu{ display:none; padding: 10px 16px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;}
.mobile-menu a{ display:block; padding:10px 0; color:white; text-align: center; }

.hide-sm{ display:inline-flex; }
.show-sm{ display:none; }

/* Hero */
.hero{ 
  padding: 56px 0 80px; 
}
.hero-grid{
  align-items: center;
  text-align: center;
}
.eyebrow{ text-transform: uppercase; letter-spacing: .08em; font-size:.8rem; color:#6b7280; }
.hero h1{ font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin:.3rem 0 .6rem; }
.text-primary{ color: var(--tx-primary); }
.text-secundary {
  color: #4b5563;
}
.text-secundary-big {
  font-size:1.7em;
  color: #4b5563;
}
.lead{ color:#4b5563; max-width: 56ch; }
.hero-media img{
  width: 30%;
  height: auto;
}
.hero-copy {
  margin-top:2em;
}

/* Sections */
.section{ 
  padding: 1em 0; 
  display: flex;
  align-items: stretch;
}
.section.alt{ background: var(--tx-surface-alt); }
.cards .card{
  border-radius: var(--radius);
  min-height: 100px;
}
.cards .card h3{ margin:0 0 .25rem; font-size:1.125rem; }
.cards .card p{ margin: .25rem 0 0; color:#4b5563; }

.app-store {
    background-image: url(../img/app-store.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    padding: 0 !important;
    height: 100%;
}
.google-play {
    background-image: url(../img/googplay.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    padding: 0 !important;
    height: 100%;
}
/* FAQs */
.faq{
  border: 1px solid var(--tx-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: var(--tx-surface);
  margin-bottom: 12px;
}
.faq summary{ cursor:pointer; font-weight: 600; font-size: 1.3em; }
.faq[open]{ background: #fff; }

/* CTA */
.cta{ text-align:center; }
.cta .cta-row{ margin-top:16px; display:grid; flex-wrap:wrap; gap:12px; justify-content:center; }

/* Footer */
.site-footer{
  border-top:1px solid var(--tx-border);
  
  font-size: .95rem;
}
.site-footer .links{ display:flex; gap:10px; align-items:center; }

/* Buttons */
.btn{
  display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}
.btn-primary{ background: var(--tx-primary); color:#fff; border-color: var(--tx-primary); }
 /* .btn-primary:hover{ background: var(--tx-primary-600); border-color: var(--tx-primary-600);} */
.btn-outline{ background: transparent; color: var(--tx-text); }
.btn-outline:hover{ border-color:#cfcfcf; background-color: 	#25d366; }
.btn-wha:hover {background-color: 	#25d366;}
.btn-android:hover{background-color: 	rgb(67 132 247);}
.btn-ios:hover{background-color: 	rgb(209 213 219 );}
.btn-llamar:hover{background-color: 	var(--tx-primary);}
.btn-outline-pedir {background: transparent; color: var(--tx-text); }
.btn-outline-pedir:hover{ border-color:#cfcfcf; background-color: 	orange; }

.logo-menu-mobil {
    width:7em;
}
.btn-pulse {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  animation: pulse 1.5s infinite ease-in-out;
  transform-origin: center;
  transition: background 0.3s;
}
.btn-llamar{
  border: 1px solid #9e9797;
  border-radius: 5px;
  color: black;
}
.btn-what {
  border: 1px solid #9e9797;
  border-radius: 5px;
  color: black;
}
.btn-android {
  border: 1px solid #9e9797;
  border-radius: 5px;
  color: black;
}
.btn-ios {
  border: 1px solid #9e9797;
  border-radius: 5px;
  color: black;
}
.btn-volver {
    min-width: 40px;
    min-height: 40px;
    height: 40px;
    width: 40px;
    background-image: url(../img/volver.png);
    background-size: cover;
}
.btn-esp {
    height: 30px;
    width: 30px;
    background-image: url(../img/bandera-esp.png);
    background-size: cover;
}
.btn-eng {
    height: 30px;
    width: 30px;
    background-image: url(../img/bandera-eng.png);
    background-size: cover;
}
.video {
  width:100%;
  min-height: 600px;
  background-image: url(../img/placeholder-400x300.png);
  margin: auto;
  
}
.video1 {
  width: 100%;
    background-color: transparent;
    background-image: linear-gradient(0deg, #FFFFFF 5%, #F2295B00 30%);
}


@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.app {
  width: 50%;
}

/* A11y */
.link{ color: var(--tx-primary); text-decoration: underline; text-underline-offset: 2px; }
.sr-only{ position:absolute; left:-9999px; }

.line {
  width: 100%;
  height: 5px;
  background-color: var(--tx-primary);
  margin-top: 5em;
}

.text-big {
  font-size:1.5em
}

.btn-pc {
  margin-left: auto;
  max-width: 13%;
}
.btn-img {
  max-height: 40px;
}
.btn-mobile {
  width: 50%;
  margin: 1em auto 1em 1em;
}
.section-container {
  width: 100%;
  display: flex;
}
.mid-container{
  width: 50%;
  margin: auto;
}
.section-content {
  width: 100%;
  min-height: 600px;
  background-image: url(../img/placeholder-400x300.png);
  margin: auto;
}
.section-content-paga {
  width: 80%;
  min-height: 600px;
  
  background-image: url(../img/taximetro.png);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  
}
.section-content-paga2 {
  width: 80%;
  min-height: 300px;
  background-image: url(../img/taximetro.png);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-content-pide {
  width: 100%;
  min-height: 600px;
  background-image: url(../img/pide.png);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-content-elige {
  width: 80%;
  min-height: 600px;
  background-image: url(../img/paga.png);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-content-rastrea {
  width: 80%;
  min-height: 600px;
  background-image: url(../img/rastrea.png);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-text {
  font-size: 1.5em;
}
.banda {
  width: 100%;
  min-height: 450px;
  background-image: url(../img/banda.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.col { flex: 1 1 50%; }
.mapa-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/mapa.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.pide-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/pide.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.preguntas-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/preguntas.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.log-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/usuarios.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.cuadrante-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/cuadrantes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
 .calculadora-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/fare.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.mapa-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.pide-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/book.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.preguntas-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/faq.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.log-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/log.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.cuadrante-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/shift.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.idiomas {
    display: contents;
}
.idiomas-movil {
    display: none;
}
.icons-contact{
    height: 100%;
    max-height: 30px;
    padding-right: 1em;
    margin-right: auto;
}
.icons-contact-white:hover {
    color:white;
    
}
/* Responsive */
@media (max-width: 0px){
  .calculadora-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/calculadora.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.mapa-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/mapa.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.pide-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/pide.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.preguntas-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/preguntas.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.log-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/usuarios.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.cuadrante-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/cuadrantes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
 .calculadora-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/fare.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.mapa-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.pide-btn-eng {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/book.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.preguntas-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/faq.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.log-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/log.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.cuadrante-btn-eng{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/eng/shift.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}

   .show-sm{
    display: inline-flex;
    padding-left: 1em;
    padding-right: 1em;
    font-size: medium;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid #a1a0a0; }
  .main-nav{ display:none; }
  .menu-open .mobile-menu{ 
    display:block;
   }

  .no-scroll {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}
  
}
.txt-descarga {
    font-size:1.5em
}
.site-header{
 
  padding: 5px;
}

@media (max-width: 920px){
    
  .grid.cols-4{ grid-template-columns: 1fr; }
  .grid.cols-3{ grid-template-columns: 1fr; }
  .hide-sm{ display:none; }
  .show-sm{
    display: inline-flex;
    padding-left: 1em;
    padding-right: 1em;
    font-size: medium;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid #a1a0a0; }
    
   
/* Animación de movimiento */

  .main-nav{ display:none; }
  .menu-open .mobile-menu{ 
    display:block;
   }
   .menu-open {
    min-height: 1000px;
   }

  .no-scroll {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.idiomas {
    display: none;
}
.idiomas-movil {
    display:contents;
}

  .hero-media img{
    width: 80%;
    height: auto;
  }
  .app {
    width: 100%;
  }
  .video {
    width: 100%;
    min-height: 100px;
    
  }
  .container{ 
  width: 100%;
 }
 .calculadora {
  margin: 1em 0px;
 }
 .mid-container {
  min-width: 100%;
 }
 .section-container {
  width: 100%;
  display: grid;
}
.section-content-paga {
  min-width: 300px;
  min-height: 300px;
  
}
.section-content-pide {
  width: 100%;
  min-height: 300px;
}

.section-content-paga2 {
  min-height: 300px;
}
.section-content-pide {
  min-height: 300px;
}
.section-content-elige {
  min-height: 300px;
}
.section-content-rastrea {
  min-height: 300px;
}
.btn-esp {
    height: 40px;
    width: 40px;
}
.btn-eng {
    height: 40px;
    width: 40px;
}
.swap-mobile .col-1 { order: 2; }
.swap-mobile .col-2 { order: 1; }
   /* .brand .logo{ height: 36px; width:auto; display:block; } */ 
   .calculadora-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/calculadora.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.mapa-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/mapa.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.pide-btn {
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/pide.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.preguntas-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/preguntas.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.log-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/usuarios.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}
.cuadrante-btn{
    margin-left: auto;
    min-width: 150px;
    min-height: 40px;
    background-image: url(../img/real/cuadrantes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}

   .show-sm{
    display: inline-flex;
    padding-left: 1em;
    padding-right: 1em;
    font-size: medium;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid #a1a0a0; }
  .main-nav{ display:none; }
  .menu-open .mobile-menu{ 
    display:block;
   }

  .no-scroll {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.hero h1{ font-size:2em; }
}
.txt-descarga {
    font-size:1.5em
}

@media (min-width: 920px) and (max-width: 1200px){

  .btn-img{
    max-height: 22px;;
  }
}
@media (min-width: 1200px) and (max-width: 1400px){

  .btn-img{
    max-height: 30px;;
  }
}
@media (min-width: 1400px) and (max-width: 1500px){

  .btn-img{
    max-height: 40px;;
  }
}

/* Bloqueo total del documento cuando el menú está abierto */
.scroll-lock {
  position: fixed;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

/* El menú móvil como overlay estático, sin scroll posible */
.menu-container.menu-open .mobile-menu {
  position: fixed;        /* cubre la pantalla */
  inset: 0;         
  top:86px;/* top/right/bottom/left = 0 */
  height: 100dvh;         /* alto exacto de la ventana */
  overflow: hidden;       /* nada de scroll interno */
  touch-action: none;     /* bloquea gestos de desplazamiento */
  overscroll-behavior: none; /* evita “rebote” */
}
/* Overlay del menú móvil: pantalla completa, por encima de todo */
.menu-container.menu-open .mobile-menu {
  position: fixed;
  inset: 0;                 /* top/right/bottom/left = 0 */
  height: 100dvh;
  width: 100%;
  z-index: 9999;            /* por encima del header/logo */
  background: #fff;         /* asegura fondo sólido */
  overflow: hidden;         /* sin scroll interno */
  touch-action: none;       /* bloquea gestos de desplazamiento */
  overscroll-behavior: none;
}

/* Asegura que el botón del menú sea clicable por encima del overlay */
#menuBtn {
  position: relative;
  z-index: 10000;           /* > z-index del overlay */
}

/* Overlay del menú: pantalla completa, estable y por encima de todo */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;            /* fallback; JS lo afina con innerHeight */
  z-index: 9999;
  background: #fff;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* El botón siempre por encima para poder cerrar */
#menuBtn { position: relative; z-index: 10000; }

.scroll-lock {
  position: fixed;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  background: #fff;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* Botón por encima del overlay para poder cerrarlo */
#menuBtn {
  position: relative;
  z-index: 10000;
}
/* Bloqueo de scroll */
.scroll-lock {
  position: fixed;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

/* Overlay del menú cuando está abierto: pantalla completa y por encima */
.menu-container.menu-open #mobileMenu {
  position: fixed;
  inset: 0;
  top:86px;
  width: 100vw;
  height: 100dvh;        /* evita cortes al abrir abajo */
  z-index: 9999;
  background: #fff;
  overflow: hidden;       /* menú estático, sin scroll interno */
  touch-action: none;
  overscroll-behavior: none;
}

/* El botón por encima para poder cerrar siempre */
#menuBtn { position: relative; z-index: 10000; }

/* ======= FIX OVERLAY MENÚ MÓVIL ======= */
/* Cubre toda la pantalla sin depender del scroll ni del header */
.menu-container.menu-open #mobileMenu,
.menu-container.menu-open .mobile-menu {
  position: fixed !important;
  inset: 0 !important;               /* top/right/bottom/left = 0 */
  width: 100vw !important;
  height: calc(var(--vh, 1vh) * 100) !important; /* alto visible real */
  z-index: 9999 !important;          /* por encima de header/logo */
  background: #fff !important;
  overflow: hidden !important;       /* menú estático, sin scroll interno */
  touch-action: none !important;
  overscroll-behavior: none !important;
}

/* Botón siempre por encima para poder cerrar */
#menuBtn {
  position: relative;
  z-index: 10000;
}

/* Bloqueo del documento cuando menú abierto (lo usa main.js) */
.scroll-lock {
  position: fixed;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

/* ======= FIX OVERLAY MENÚ MÓVIL (estable, sin cortes) ======= */
/* Cubre toda la pantalla sin depender del header ni del scroll */
.menu-container.menu-open #mobileMenu,
.menu-container.menu-open .mobile-menu {
  position: fixed !important;
  inset: 0 !important;                         /* top/right/bottom/left = 0 */
  width: 100vw !important;
  height: calc(var(--vh, 1vh) * 100) !important; /* alto visible real */
  z-index: 9999 !important;                    /* por encima de header/logo */
  background: #fff !important;
  overflow: hidden !important;                 /* menú estático, sin scroll interno */
  touch-action: none !important;
  overscroll-behavior: none !important;
}

/* Botón siempre por encima para poder cerrar */
#menuBtn {
  position: relative;
  z-index: 10000;
}

/* Bloqueo del documento cuando el menú está abierto (sin fixed en body) */
html.scroll-lock,
body.scroll-lock {
  height: 100%;
  overflow: hidden;
}

/* ===== AVISO DE COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner a {
  color: #ffde00;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}
.cookie-buttons button {
  background: #ffde00;
  border: none;
  padding: .5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
}


/* ===== PISTA Y ANIMACIÓN DEL TAXI ===== */

/* Contenedor general de la pista */
.taxi-track {
  position: relative;
  width: 100%;
  height: 60px;              /* alto suficiente para el taxi y la línea */
  margin: 2rem 0;
}

/* Línea rosa (de fondo) */
.taxi-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;               /* grosor de la línea */
  background: #8B1E32;       /* color de la línea (rosa/burdeos) */
  transform: translateY(-50%);
  border-radius: 0px;
}

/* El taxi */
.taxi-track .taxi {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 50px;               /* tamaño del taxi */
  height: auto;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  will-change: left, transform;
  animation: taxi-drive 12s linear infinite;
}

/* Animación de movimiento */
@keyframes taxi-drive {
  from { left: 0%; }
  to   { left: 110%; }
}



@media (max-width: 920px){
    
    @keyframes taxi-drive {
  from { left: 0%; }
  to   { left: 117%; }
}
     .taxi-track .taxi {
  animation: taxi-drive 7s linear infinite;
}
}


/* ===== Splash de carga ===== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 100000;            /* por encima de todo */
  display: grid;
  place-items: center;
  gap: 0.75rem;
  background: #ffffff;        /* o #ffde00 si prefieres marca */
  transition: opacity .35s ease, visibility .35s ease;
  opacity: 1;
  visibility: visible;
}
#splash img {
  width: 64px;                /* ajusta al tamaño de tu GIF */
  height: 64px;
  display: block;
}
#splash p {
  font: 600 0.95rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}

/* Estado oculto (se aplica por JS al terminar la carga) */
#splash.splash-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Bloqueo de scroll mientras el splash está visible */
html.splash-active,
body.splash-active {
  height: 100%;
  overflow: hidden;
}

#splash { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center;
  gap: .75rem; background: #fff; transition: opacity .35s ease, visibility .35s ease;
  opacity: 1; visibility: visible; }
#splash.splash-hide { opacity: 0; visibility: hidden; pointer-events: none; }
html.splash-active, body.splash-active { height: 100%; overflow: hidden; }



/* ===== CTA: 1 columna en móvil, 2 columnas en escritorio ===== */
#contacto .cta-row{
  display: grid;
  grid-template-columns: 1fr;   /* móvil: una debajo de otra */
  gap: 12px;                    /* separación entre botones */
  margin: 1rem auto;
}

/* Que los botones rellenen su celda y alineen icono + texto */
#contacto .cta-row > a.btn{
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  justify-content: center;      /* texto centrado */
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* Iconos */
#contacto .icons-contact{
 
  flex-shrink: 0;
}

/* El span del texto ocupa el espacio y se centra (no dependemos del inline style) */
#contacto .cta-row > a.btn span{
  flex: 1;
  text-align: center;
}

/* Escritorio: dos columnas */
@media (min-width: 992px){
  #contacto .cta-row{
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;           /* opcional: limitar ancho para mejor lectura */
    margin: 1.5rem auto;
  }
}

.desktop-only { display: none; }
@media (min-width: 992px){ .desktop-only { display: block; } }

.lang-dd{ position: relative; display: inline-block; }
.lang-trigger{
  list-style: none;
  padding: .4rem .6rem;
  border: 1px solid #e2e2e2; border-radius: 8px; background:#fff; cursor: pointer;
}
.lang-trigger::-webkit-details-marker { display: none; } /* quita triángulo nativo */

.lang-menu{
  position: absolute; right: 0; top: calc(100% + 6px);
  min-width: 160px; background:#fff; border:1px solid #e6e6e6; border-radius:10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.06); padding:.35rem;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  list-style:none;
}
.lang-dd[open] .lang-menu{ opacity:1; visibility:visible; transform: translateY(0); }

.lang-menu a{
  display:flex; align-items:center; gap:.5rem; padding:.5rem .6rem; border-radius:8px;
  color:inherit; text-decoration:none;
}
.lang-menu a:hover{ background:#f7f7f7; }




