    :root {
      --primary: #0b3d91; /* Azul oscuro */
      --accent: #ff0b1b; /* Rojo */
      --light: #ffffff;
      --dark: #1a1a1a;
      --gray: #6c757d;
      --light-gray: #f8f9fa;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--light);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* NAV */
    .nav {
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 12px 0;
    }
    
    .nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    /* AJUSTES PARA EL LOGO Y MENÚ */
.brand {
  display: flex;
  align-items: center;
  gap: 10px; /* Reducir espacio entre logo y texto */
  text-decoration: none;
  flex-shrink: 0; /* Evita que se encoja demasiado */
}

.logo {
  width: 70px; /* Reducir un poco el logo */
  height: 70px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  border: 2px solid var(--light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0; /* Logo mantiene su tamaño */
}

.brand-text {
  font-size: 1.6rem; /* Reducir tamaño del texto */
  font-weight: 800;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* Ajustar menú para pantallas medianas */
.menu {
  display: flex;
  gap: 15px; /* Reducir espacio entre items */
  flex-wrap: wrap; /* Permite que salte línea si es necesario */
  justify-content: flex-end;
}

.menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1.1 rem; /* Texto más pequeño */
  padding: 7px 15px; /* Padding reducido */
  border-radius: 25px;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
    
    .menu a:hover {
      background-color: var(--light);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    /* HERO */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, #1a4fb3 100%);
      color: var(--light);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .hero-text {
      position: relative;
      z-index: 2;
    }
    
    .hero-image {
      position: relative;
      z-index: 2;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero .lead {
      font-size: 1.25rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .tagline {
      display: inline-block;
      background-color: var(--accent);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 0.9rem;
    }
    
    .cta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn.primary {
      background-color: var(--accent);
      color: white;
    }
    
    .btn.primary:hover {
      background-color: #c10510;
      transform: translateY(-2px);
    }
    
    .btn.secondary {
      background-color: transparent;
      color: white;
      border: 2px solid white;
    }
    
    .btn.secondary:hover {
      background-color: white;
      color: var(--primary);
    }
    
    .shape {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
      background-size: cover;
    }
    
    /* NOSOTROS CON CAMIÓN DE FONDO */
    .about-section {
      position: relative;
      padding: 80px 0;
      background: linear-gradient(rgba(11, 61, 145, 0.85), rgba(11, 61, 145, 0.9)), 
                  url('../Imagenes/IMAGEN7.png') center/cover no-repeat;
      color: white;
      overflow: hidden;
    }
    
    .about-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .about-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 25px;
      color: white;
    }
    
    .about-description {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 35px;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .about-highlights {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 35px 0;
    }
    
    .highlight-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid var(--accent);
      text-align: left;
      backdrop-filter: blur(10px);
    }
    
    .highlight-item p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
    }
    
    .about-slogan {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      text-align: center;
      margin-bottom: 25px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .about-brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      text-align: center;
      margin-top: 35px;
      letter-spacing: 2px;
    }
    
    /* SERVICIOS MEJORADOS - COMPACTO */
    .services-section {
      padding: 70px 0;
      background-color: var(--light-gray);
    }
    
    .services-hero {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .services-hero h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .services-hero p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .service-featured {
      max-width: 750px;
      margin: 0 auto;
      background: white;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    
    .service-content {
      padding: 35px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .service-icon-large {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 1.8rem;
      color: white;
    }
    
    .service-content h3 {
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    
    .service-content p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--gray);
      margin-bottom: 18px;
    }
    
    .service-features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 18px 0;
    }
    
    .service-feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      background: var(--light-gray);
      border-radius: 6px;
      font-size: 0.85rem;
    }
    
    .feature-check {
      width: 18px;
      height: 18px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.65rem;
      flex-shrink: 0;
    }
    
    .service-image {
      background: linear-gradient(135deg, var(--primary), #1a4fb3);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 25px;
    }
    
    .service-image-content {
      text-align: center;
      color: white;
    }
    
    .service-image-icon {
      font-size: 4rem;
      margin-bottom: 12px;
    }
    
    .service-image-text {
      font-size: 1.1rem;
      font-weight: 600;
    }
    
    /* FLOTA MEJORADA - MÁS COMPACTA Y EN UNA LÍNEA */
    .fleet-section {
      padding: 70px 0;
      background: white;
    }
    
    .fleet-hero {
      text-align: center;
      margin-bottom: 45px;
    }
    
    .fleet-hero h2 {
      font-size: 2.5rem;
      margin-bottom: 12px;
      color: var(--primary);
    }
    
    .fleet-hero p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    .fleet-grid {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 35px;
      flex-wrap: wrap;
    }
    
    .fleet-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid #f0f0f0;
      width: 180px;
      flex-shrink: 0;
    }
    
    .fleet-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .fleet-image {
      height: 90px;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .fleet-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .fleet-content {
      padding: 12px;
    }
    
    .fleet-model {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 4px;
    }
    
    .fleet-capacity {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 6px;
    }
    
    .fleet-description {
      font-size: 0.75rem;
      color: var(--gray);
      line-height: 1.3;
      margin-bottom: 8px;
    }
    
    .fleet-features {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 8px;
    }
    
    .fleet-feature {
      background: var(--light-gray);
      color: var(--primary);
      padding: 2px 5px;
      border-radius: 8px;
      font-size: 0.65rem;
      font-weight: 600;
    }
    
    .fleet-cta {
      text-align: center;
      margin-top: 35px;
    }
    
    /* SECCIÓN SOCIOS COMERCIALES */
    .partners-section {
      padding: 70px 0;
      background-color: var(--light-gray);
    }
    
    .partners-hero {
      text-align: center;
      margin-bottom: 45px;
    }
    
    .partners-hero h2 {
      font-size: 2.5rem;
      margin-bottom: 12px;
      color: var(--primary);
    }
    
    .partners-hero p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    .partners-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-top: 35px;
      flex-wrap: wrap;
    }
    
    .partner-logo {
      width: 180px;
      height: 100px;
      background: white;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      padding: 15px;
    }
    
    .partner-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .partner-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    /* COBERTURA + MAPA DE MÉXICO */
    .coverage-section {
      padding: 70px 0;
      background-color: var(--light-gray);
    }
    
    .coverage-hero {
      text-align: center;
      margin-bottom: 45px;
    }
    
    .coverage-hero h2 {
      font-size: 2.5rem;
      margin-bottom: 12px;
      color: var(--primary);
    }
    
    .coverage-hero p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    .coverage-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .coverage-map {
      background: white;
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      text-align: center;
    }
    
    .mexico-map {
      width: 100%;
      max-width: 500px;
      height: auto;
      margin: 0 auto;
      display: block;
    }
    
    .coverage-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 25px;
    }
    
    .stat {
      text-align: center;
      padding: 18px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .stat h3 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 4px;
    }
    
    .stat p {
      color: var(--gray);
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .coverage-cta {
      text-align: center;
      margin-top: 35px;
    }
    
    /* CERTIFICACIONES */
    .certifications-section {
      padding: 70px 0;
      background: white;
    }
    
    .certifications-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }
    
    .cert-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      border-top: 4px solid var(--accent);
    }
    
    .cert-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .badge {
      display: inline-block;
      background-color: var(--accent);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 12px;
    }
    
    .cert-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .cert-card p {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.5;
    }
    
    /* CONTACTO */
    .contact-section {
      padding: 70px 0;
      background-color: var(--light-gray);
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .contact-card {
      background: white;
      border-radius: 10px;
      padding: 18px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .contact-form {
      background: white;
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    form label {
      display: block;
      margin-bottom: 4px;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    form input, form textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #dfe3ea;
      border-radius: 6px;
      font-family: inherit;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }

    /* IMAGEN DE CONTACTO */
/* IMAGEN DE CONTACTO - TAMAÑO MEDIO */
.contact-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 300px; /* ← UN POCO MÁS GRANDE */
  margin-left: auto;
  margin-right: auto;
}


/* BOTÓN FLOTANTE WHATSAPP - LADO DERECHO */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px; /* ← CAMBIADO DE left A right */
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Responsive para WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px; /* ← TAMBIÉN CAMBIADO AQUÍ */
  }
  
  .whatsapp-float img {
    width: 55px;
    height: 55px;
  }
}
    /* FOOTER */
    .footer {
      background-color: var(--dark);
      color: white;
      padding: 40px 0 25px;
    }
    
    .footer .cols {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
    }
    
    .footer a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.9rem;
    }
    
    .footer a:hover {
      color: white;
    }
    
    .footer strong {
      font-size: 1rem;
    }
    
    .footer .muted {
      color: #999;
      font-size: 0.85rem;
    }
    /* FOOTER */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 40px 0 25px;
}

.footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

/* ========== SCROLL SUAVE ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Compensa la altura del nav fijo */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  /* ... resto de tus media queries ... */
}






    /* RESPONSIVE */
    @media (max-width: 768px) {
      .menu {
        display: none;
      }
      
      .hero-content {
        grid-template-columns: 1fr;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .cta {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .brand {
        gap: 10px;
      }
      
      .brand-text {
        font-size: 1.4rem;
      }
      
      .logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      
      .about-title {
        font-size: 2rem;
      }
      
      .about-description {
        font-size: 1rem;
      }
      
      .about-slogan {
        font-size: 1.8rem;
      }
      
      .service-featured {
        grid-template-columns: 1fr;
      }
      
      .service-content {
        padding: 25px 20px;
      }
      
      .services-hero h2 {
        font-size: 2rem;
      }
      
      .service-content h3 {
        font-size: 1.4rem;
      }
      
      .service-features-grid {
        grid-template-columns: 1fr;
      }
      
      .service-image-icon {
        font-size: 3.5rem;
      }
      
      .fleet-hero h2 {
        font-size: 2rem;
      }
      
      .fleet-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }
      
      .fleet-card {
        width: auto;
      }
      
      .fleet-image {
        height: 80px;
      }
      
      .fleet-content {
        padding: 10px;
      }
      
      .fleet-capacity {
        font-size: 1rem;
      }
      
      .partners-hero h2 {
        font-size: 2rem;
      }
      
      .partners-grid {
        gap: 20px;
      }
      
      .partner-logo {
        width: 140px;
        height: 80px;
      }
      
      .coverage-container {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .coverage-hero h2 {
        font-size: 2rem;
      }
      
      .coverage-stats {
        grid-template-columns: 1fr;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .certifications-grid {
        grid-template-columns: 1fr;
      }
    }