/* GLOBAL (aplica a todo) */
html, body {
  background-color: #000 !important;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* 1. Por defecto ocultamos la versión móvil (para que no se vea en PC) */
.mobile-content {
    display: none !important;
    background-color: #000;
  }
 


/* 2. Cuando entramos en modo Celular (menos de 768px) */
@media (max-width: 767px) {
    /* Escondemos lo de PC */
    .desktop-content {
        display: none !important;
    }
    
    /* Mostramos lo de Móvil */
    .mobile-content {
        display: block !important;
        background-color: #000; /* Fondo negro como la imagen */
    }
    
    /* Chrome, Edge, Safari */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: #000;
  }

  ::-webkit-scrollbar-thumb {
    background: #000;
  }

  /* Firefox */
  html {
    scrollbar-color: #000 #000;
  }

    
    /* 2. HEADER - Ajustado para Logo y Slider */
    
header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #111 !important; /* Cambiado de rojo a negro elegante */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #1a1a1a;
}

/* 3. Logo más compacto para dar espacio al slider */
header img {
    display: block !important;
    width: 145px !important;
    margin-left:-30px;
    height: auto;
}

/* 4. SLIDER en el Header (Ajuste para móvil) */
header .pricing-slider {
    display: block !important; /* Lo hacemos visible */
    position: relative;
    top: 1px; /* Centrado verticalmente en el flex */
    width: 250px; /* Ancho reducido para que quepa junto al logo */
    height: 25px;
    margin-right:-30px;
    overflow: hidden;
}

header .slide {
    display: block !important; /* Hacemos visibles los textos del slider */
    font-size: 17px !important; /* Letra más pequeña para móvil */
    width: 100%;
}

/* 5. ELIMINAR EL BOTÓN DEL HEADER */
header button {
    display: none !important;
}

    .promo-badge {
        display: inline-block;
        background-color: #001a33;
        color: #0078ef;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: bold;
        border: 1px solid #002b55;
       
        margin-left: 15px;
        margin-top: 20px;
    }

    /* Estilo para que el H1 se vea como tu imagen */
    .hero-mobile h1 {
        font-size: 38px;
        font-weight: 900;
        line-height: 1;
        color: white;
        margin-left: 20px;
    }
    
    .mobile-hero-title span {
        color: #0078ef; /* El azul brillante para "Next Ride" */
    }
    
    .mobile-hero-title{
        font-size: 38px;
        font-weight: 900;
        line-height: 1.1;
        color: white;
        margin-left: 20px;
    }
    
    /* BOTÓN AZUL REDONDEADO (Principal) */
.btn-blue-mobile {
    width: 90%;                 /* Ocupa todo el ancho del celular */
    max-width: 400px;           /* Para que no se estiren demasiado en tablets */
    margin-left: auto;          /* Margen automático a la izquierda */
    margin-right: auto;         /* Margen automático a la derecha */
    display: block;
    background-color: #0078ef;    /* El azul oficial de RidePad */
    color: white;
    border: none;
    padding: 18px;               /* Lo hace alto y fácil de tocar con el dedo */
    border-radius: 15px;         /* Esquinas redondeadas modernas */
    font-size: 18px;             /* Texto grande */
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;         /* Espacio con el botón de abajo */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 120, 239, 0.3); /* Sombra suave azul */
    transition: transform 0.2s ease;
}

.btn-blue-mobile:active {
    transform: scale(0.98);      /* Efecto de presión al tocarlo */
}

/* BOTÓN CON BORDE (Secundario) */
.btn-outline-mobile {
    width: 90%;
    max-width: 400px;       /* Para que no se estiren demasiado en tablets */
    margin-left: auto;      /* Margen automático a la izquierda */
    margin-right: auto;     /* Margen automático a la derecha */
    display: block;
    background: transparent;
    color: white;
    border: 1px solid #333;      /* Borde gris oscuro como la imagen */
    padding: 18px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.video-wrapper {
  width: 92%;
  margin: 40px auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(60,130,255,0.4);
}

.video-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.why-section {
    padding: 50px 20px;
    color: white;
  }

  .why-label {
    color: #0078ef;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .why-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .why-title span {
    color: #0078ef;
  }

  .why-subtext {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 30px;
  }

  /* FEATURES */

  .features {
    margin-bottom: 30px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #0078ef, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .feature-text h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
  }

  .feature-text p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.7;
  }

  .divider {
    height: 1px;
    background: #1a1a1a;
  }

  /* CTA FINAL */

  .cta-final {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #0078ef, #005fcc);
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,120,239,0.4);
  }

  .cta-final:active {
    transform: scale(0.98);
  }

  .cta-sub {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.7;
  }

  .cta-urgency {
    text-align: center;
    font-size: 17px;
    color: #888;
    margin-top: 5px;
  }
  
/* Contenedor principal */
.stats-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center; /* Los centramos en el medio */
    gap: 10px;               /* Espacio entre cuadros */
    width: 95%;
    margin: 30px auto 0;
    box-sizing: border-box;
}

/* El cuadro individual cuadrado */
.stat-card {
    background-color: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    
    /* EL TRUCO PARA QUE SEA CUADRADO */
    flex: 1;                /* Se estiran igual */
    aspect-ratio: 1 / 1;    /* Fuerza que el ALTO sea igual al ANCHO */
    
    /* Alineación interna */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
    align-items: center;     /* Centra el contenido horizontalmente */
    padding: 5px;           /* Padding mínimo para que no rompa el cuadrado */
    box-sizing: border-box;
}

/* Ajuste de letras para que quepan en el cuadrado pequeño */
.stat-number {
    color: #ffffff;
    font-size: 18px;         /* Un poco más pequeña para asegurar que quepa */
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-emoji {
    font-size: 44px;      /* Cambia este número para hacerlo más grande o pequeño */
    margin-bottom: 5px;   /* Espacio entre el emoji y el número */
    line-height: 1;       /* Evita espacios extra arriba o abajo */
}

.stat-text {
    color: #888888;
    font-size: 10px;         /* Texto pequeño y compacto */
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    max-width: 90%;
}
  
.form-overlay {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #000;
    z-index: 9999;
    transition: bottom 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .form-overlay.active {
    bottom: 0;
  }

  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .form-body {
    padding: 1px;
    overflow-y: auto;
    text-align: center;
  }
  
  .glow-blue {
  color: #0078ef;
  text-shadow: 
    0 0 8px rgba(0, 120, 239, 0.5);
}

  
  input, select { 
  width: 70%; 
  padding: 15px; 
  margin-bottom: 15px; 
  background-color: transparent;
  border: 2px solid #0078ef; 
  border-radius: 10px; 
  font-size: 1rem; 
  font-family: inherit;
  color: white;
}

.close-btn {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  color: #0078ef;

  border-radius: 50%;

  font-size: 22px;
  font-weight: 700;

  cursor: pointer;
  user-select: none;

  /* 🔥 efecto pro */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
}
