/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ENCABEZADO */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #0a2239;
  position: relative;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  width: clamp(150px, 20vw, 220px);
  max-width: 100%;
  height: auto;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav ul li {
  display: flex;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 5px;
}

.nav a:hover {
  text-decoration: underline;
}

.nav-login {
  background-color: #72993F;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-login:hover {
  background-color: #5e7f34;
  text-decoration: none !important;
}

/* HERO */
.hero {
  position: relative;
  background: url('../images/pexels-photo-220201.jpeg') no-repeat center center/cover;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10, 34, 57, 0.85) 0%, rgba(10, 34, 57, 0.6) 100%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitulo {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primario {
  background-color: #25D366;
  color: #fff;
}

.btn-primario:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-secundario {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.8rem 1.5rem;
}

.btn-secundario:hover {
  background-color: #fff;
  color: #0a2239;
}

.btn-grande {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* BARRA DE CONFIANZA */
.trust-bar {
  background-color: #0a2239;
  padding: 1.2rem 2rem;
  border-top: 3px solid #72993F;
}

.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item i {
  color: #72993F;
  font-size: 1.3rem;
}

/* SERVICIOS */
.servicios {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.servicios h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #0a2239;
}

.servicios-intro {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: #555;
}

.beneficios-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.beneficio {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beneficio i {
  font-size: 2.5rem;
  color: #72993F;
  margin-bottom: 1rem;
  display: block;
}

.beneficio h3 {
  margin-bottom: 0.5rem;
  color: #0a2239;
  font-size: 1.2rem;
}

.beneficio p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* SECCIÓN UBER / CONDUCTORES DE APP */
.uber-section {
  background: linear-gradient(135deg, #0a2239 0%, #1a3a5c 100%);
  padding: 4rem 2rem;
  color: #fff;
}

.uber-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.uber-text {
  flex: 1;
}

.uber-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.uber-destacado {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  border-left: 4px solid #72993F;
  padding-left: 1rem;
}

.uber-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.uber-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.uber-features li i {
  color: #72993F;
  font-size: 1.2rem;
}

.uber-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(114, 153, 63, 0.5);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 180px;
}

.stat-numero {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #72993F;
}

.stat-texto {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* APP MÓVIL */
.app-movil {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 2rem;
  color: #333;
}

.app-movil-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.app-movil-text {
  flex: 1;
  max-width: 600px;
}

.app-movil-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a2239;
}

.app-movil-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.app-features li i {
  color: #72993F;
  font-size: 1.2rem;
}

.google-play-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.google-play-badge img {
  height: 60px;
  width: auto;
}

.google-play-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-movil-mockup {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-movil-mockup i {
  font-size: 10rem;
  color: rgba(114, 153, 63, 0.25);
}

/* PRESTACIONES DESTACADAS */
.prestaciones {
  background: url('https://images.pexels.com/photos/2159/flight-sky-earth-space.jpg')
    no-repeat center center/cover;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.prestaciones::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.prestaciones > * {
  position: relative;
}

.prestaciones h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.prestaciones p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
}

/* SLIDER */
.slider {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  position: relative;
  touch-action: pan-y;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.slide p {
  font-size: 1rem;
}

/* SLIDER DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: #72993F;
}

/* PRECIOS */
.precios {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f8f9fa;
}

.precios h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0a2239;
}

.precio-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #72993F;
}

.precio-header {
  background: linear-gradient(135deg, #0a2239 0%, #1a3a5c 100%);
  color: #fff;
  padding: 1.5rem;
}

.precio-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.precio-descripcion {
  opacity: 0.8;
  font-size: 0.95rem;
}

.precio-body {
  padding: 2rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.precio-instalacion,
.precio-abono {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.precio-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.precio-valor {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0a2239;
}

.precio-mensual {
  color: #72993F;
}

.precio-periodo {
  font-size: 1rem;
  font-weight: 500;
}

.precio-nota {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.3rem;
}

.precio-incluye {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

.precio-incluye p {
  margin-bottom: 0.8rem;
  color: #0a2239;
}

.precio-incluye ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  text-align: left;
  max-width: 350px;
  margin: 0 auto 1.5rem auto;
}

.precio-incluye li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.precio-incluye li i {
  color: #72993F;
}

.precio-instalacion-nota {
  text-align: center;
  color: #72993F;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-whatsapp i {
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
}

/* FOOTER */
.footer {
  background-color: #0a2239;
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer .contacto-info {
  margin-bottom: 1.5rem;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer p i {
  color: #72993F;
  margin-right: 0.5rem;
}

.footer-app-download {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-app-download p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-play-badge {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer-play-badge:hover {
  opacity: 0.8;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* =============================================
   RESPONSIVE - TABLET (768px)
   ============================================= */
@media (max-width: 768px) {
  /* HAMBURGER VISIBLE */
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0a2239;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav ul li {
    width: 100%;
  }

  .nav a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-login {
    margin: 0.5rem 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .header .logo {
    margin-bottom: 0;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  /* TRUST BAR */
  .trust-items {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .trust-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  /* SERVICIOS */
  .servicios {
    padding: 3rem 1.5rem;
  }

  .servicios h2 {
    font-size: 1.6rem;
  }

  .beneficios-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* UBER */
  .uber-section {
    padding: 3rem 1.5rem;
  }

  .uber-content {
    flex-direction: column;
    text-align: center;
  }

  .uber-text h2 {
    font-size: 1.6rem;
  }

  .uber-destacado {
    border-left: none;
    border-top: 4px solid #72993F;
    padding-left: 0;
    padding-top: 1rem;
    font-size: 1.05rem;
  }

  .uber-features {
    text-align: left;
  }

  .uber-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    min-width: 120px;
    padding: 1rem 1.5rem;
  }

  .stat-numero {
    font-size: 2rem;
  }

  /* APP MOVIL */
  .app-movil {
    padding: 3rem 1.5rem;
  }

  .app-movil-content {
    flex-direction: column;
    text-align: center;
  }

  .app-movil-text h2 {
    font-size: 1.6rem;
  }

  .app-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .app-movil-mockup {
    display: none;
  }

  /* PRESTACIONES */
  .prestaciones {
    padding: 3rem 1.5rem;
  }

  .prestaciones h2 {
    font-size: 1.6rem;
  }

  .slide h3 {
    font-size: 1.3rem;
  }

  /* PRECIOS */
  .precios {
    padding: 3rem 1.5rem;
  }

  .precios h2 {
    font-size: 1.6rem;
  }

  .precio-body {
    flex-direction: column;
    gap: 1rem;
  }

  .precio-incluye ul {
    grid-template-columns: 1fr;
  }

  .precio-card .btn-grande {
    margin: 0 1rem 1.5rem;
    display: flex;
    justify-content: center;
  }

  /* FOOTER */
  .footer {
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   RESPONSIVE - MÓVIL PEQUEÑO (480px)
   ============================================= */
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 0.8rem;
  }

  .hero {
    padding: 2.5rem 0.8rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitulo {
    font-size: 0.95rem;
  }

  .trust-bar {
    padding: 1rem;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .trust-item i {
    font-size: 1.1rem;
  }

  .servicios {
    padding: 2.5rem 1rem;
  }

  .servicios h2 {
    font-size: 1.4rem;
  }

  .servicios-intro {
    font-size: 0.95rem;
  }

  .beneficio {
    padding: 1.5rem 1rem;
  }

  .beneficio i {
    font-size: 2rem;
  }

  .uber-section {
    padding: 2.5rem 1rem;
  }

  .uber-text h2 {
    font-size: 1.4rem;
  }

  .uber-destacado {
    font-size: 0.95rem;
  }

  .uber-features li {
    font-size: 0.95rem;
  }

  .stat {
    min-width: 90px;
    padding: 0.8rem 1rem;
  }

  .stat-numero {
    font-size: 1.6rem;
  }

  .stat-texto {
    font-size: 0.8rem;
  }

  .app-movil {
    padding: 2.5rem 1rem;
  }

  .app-movil-text h2 {
    font-size: 1.4rem;
  }

  .app-movil-text p {
    font-size: 0.95rem;
  }

  .prestaciones {
    padding: 2.5rem 1rem;
  }

  .prestaciones h2 {
    font-size: 1.4rem;
  }

  .precios {
    padding: 2.5rem 1rem;
  }

  .precios h2 {
    font-size: 1.4rem;
  }

  .precio-header h3 {
    font-size: 1.3rem;
  }

  .btn-grande {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .footer {
    padding: 1.5rem 1rem;
  }

  .footer h3 {
    font-size: 1.3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 15px;
    right: 15px;
  }
}
