   /* Variables de colores */
   :root {
    --color-primary: #ff7700; /* Naranja similar al de la imagen */
    --color-primary-transparent: rgba(255, 119, 0, 0.95); /* Versión transparente del color primario */
    --color-dark: #333;
    --color-light: #fff;
    --color-gray: #f5f5f5;
    --transition-smooth: all 0.3s ease;
  }
  
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    overflow-x: hidden;
  }
  
  
 /* ==============================================
   BARRA DE NAVEGACIÓN
   ============================================== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--color-primary);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    height: 90px; /* Altura fija para el navbar */
}

.navbar .logo {
    position: absolute; /* Cambiado a absolute para que salga del flujo normal */
    left: 5%; /* Alineado con el padding del navbar */
    top: 0; /* Posicionado desde arriba */
    text-decoration: none;
    z-index: 1001;
}

.nav-links a.active:after {
    width: 100%;
}

.navbar .logo img {
    height: 120px; /* Altura mayor que la barra para que sobresalga */
    width: auto;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto; /* Mover los links a la derecha */
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 20px;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-light);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 5%; /* Posicionamiento a la derecha */
    z-index: 1001; /* Asegurar que esté por encima */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--color-light);
    margin: 5px;
    transition: var(--transition-smooth);
}

/* Estilos para el buscador de neumático */
.buscador-neumatico {
    position: absolute;
    bottom: -20px; /* Hacer que sobresalga hacia abajo */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary); /* Usar el color primario del tema */
    color: var(--color-light); /* Usar el color de texto claro del tema */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 1002;
    white-space: nowrap;
    transition: var(--transition-smooth);
    /* Eliminar el borde blanco */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.buscador-neumatico:hover {
    background-color: #ff8c00; /* Tono ligeramente diferente al hover */
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Responsive para barra de navegación */
@media screen and (max-width: 768px) {
    .navbar {
        height: 60px; /* Altura menor para pantallas pequeñas */
    }
    
    .navbar .logo {
        left: 5%;
    }
    
    .navbar .logo img {
        height: 80px; /* Altura menor pero que sigue sobresaliendo */
    }
    
    .nav-links {
        position: fixed; /* Cambiar a fixed para mejorar posicionamiento */
        right: 0; /* Alinear a la derecha */
        left: auto; /* Anular cualquier posicionamiento izquierdo */
        height: 100vh; /* Altura completa de la ventana */
        top: 0; /* Alinear desde la parte superior */
        background-color: var(--color-primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centrar elementos verticalmente */
        width: 70%; /* Ancho reducido para que sea un panel lateral */
        max-width: 300px; /* Ancho máximo */
        transform: translateX(100%); /* Empezar fuera de la pantalla por la derecha */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        padding: 80px 0 20px; /* Espacio para el logo y abajo */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); /* Sombra a la izquierda */
    }
    
    .nav-links li {
        opacity: 0;
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%); /* Mostrar desde la derecha */
    }
    
    /* Ajuste del buscador en versión móvil */
    .buscador-neumatico {
        font-size: 10px;
        padding: 8px 18px;
        bottom: -15px;
        /* Reposicionamos el botón para evitar que tape el logo */
        left: auto;
        right: 60px;
        transform: translateX(0);
        letter-spacing: 0.3px;
    }
}

/* Clase para la animación del menú */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px); /* Animación desde la derecha */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
 /* ==============================================
   SECCIÓN HERO EMPRESAS
============================================== */
.hero-empresas {
    height: 90vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagenes/01\ \(1\).jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Para compensar la barra de navegación fija */
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--color-light);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contenedor para los botones */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-button:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Estilo para el segundo botón */
.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--color-light);
    color: var(--color-light);
}

.cta-button-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
    border-color: var(--color-light);
}

/* Responsive para sección Hero */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-empresas {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .cta-button i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
  
  /* ==============================================
     SECCIÓN INTRODUCCIÓN EMPRESAS
  ============================================== */
  .intro-empresas {
      padding: 100px 0;
      background-color: var(--color-light);
  }
  
  .intro-content {
      display: flex;
      align-items: center;
      gap: 50px;
  }
  
  .intro-text {
      flex: 1;
  }
  
  .intro-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--color-dark);
  }
  
  .title-underline {
      width: 100px;
      height: 3px;
      background-color: var(--color-primary);
      margin-bottom: 30px;
  }
  
  .intro-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 15px;
  }
  
  .intro-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .intro-image img {
      width: 100%;
      height: auto;
      transition: all 0.5s ease;
  }
  
  .intro-image:hover img {
      transform: scale(1.05);
  }
  
  /* Responsive para sección introducción */
  @media screen and (max-width: 992px) {
      .intro-content {
          flex-direction: column;
          gap: 30px;
      }
      
      .intro-text h2 {
          font-size: 2.2rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .intro-empresas {
          padding: 60px 0;
      }
      
      .intro-text h2 {
          font-size: 1.8rem;
      }
  }
  
  /* ==============================================
     SECCIÓN SERVICIOS EMPRESAS
  ============================================== */
  .services-empresas {
      padding: 100px 0;
      background-color: var(--color-gray);
      position: relative;
      overflow: hidden;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--color-dark);
  }
  .why-us-section  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff !important;


  }

  
  .section-header .title-underline {
      margin: 0 auto 20px;
  }
  
  .section-header p {
      font-size: 1.1rem;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
  }



  
  .services-cards {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
  }
  .service-card {
      display: flex;
      align-items: center;
      background: var(--color-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
      position: relative;
      padding: 30px;
  }
  
  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .service-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--color-primary);
      position: absolute;
      top: 20px;
      left: 20px;
      opacity: 0.2;
      transition: all 0.3s ease;
  }
  
  .service-card:hover .service-number {
      opacity: 0.4;
      transform: scale(1.2);
  }
  
  .service-content {
      flex: 1;
      padding: 20px 30px 20px 60px;
  }
  
  .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--color-dark);
  }
  
  .service-content p {
      color: #666;
      line-height: 1.7;
  }
  
  .service-icon {
      flex: 0 0 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      border-radius: 50%;
      margin-right: 20px;
  }
  
  .service-icon i {
      font-size: 2rem;
      color: var(--color-light);
  }
  
  /* Alternancia de diseño para tarjetas pares */
  .service-card:nth-child(even) {
      flex-direction: row-reverse;
  }
  
  .service-card:nth-child(even) .service-content {
      text-align: right;
      padding: 20px 60px 20px 30px;
  }
  
  .service-card:nth-child(even) .service-number {
      right: 20px;
      left: auto;
  }
  
  .service-card:nth-child(even) .service-icon {
      margin-right: 0;
      margin-left: 20px;
  }
  
  /* Responsive para servicios */
  @media screen and (max-width: 768px) {
      .service-card, .service-card:nth-child(even) {
          flex-direction: column;
          padding: 60px 20px 30px;
      }
      
      .service-content, .service-card:nth-child(even) .service-content {
          padding: 20px;
          text-align: center;
      }
      
      .service-icon {
          margin: 20px 0;
      }
      
      .service-number {
          top: 10px;
          left: 50%;
          transform: translateX(-50%);
      }
      
      .service-card:nth-child(even) .service-number {
          right: auto;
          left: 50%;
      }
  }
  
  /* ==============================================
     SECCIÓN POR QUÉ ELEGIRNOS
  ============================================== */
  .why-us-section {
      padding: 100px 0;
      background-color: var(--color-dark);
      color: var(--color-light);
  }
  
  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
  }
  
  .feature-item {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 30px;
      transition: all 0.3s ease;
      text-align: center;
      border-bottom: 3px solid transparent;
  }
  
  .feature-item:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-10px);
      border-bottom: 3px solid var(--color-primary);
  }
  
  .feature-icon {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 20px;
  }
  
  .feature-item h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
  }
  
  .feature-item p {
      color: #ccc;
      line-height: 1.6;
  }
  
  .why-us-section .title-underline {
      background-color: var(--color-primary);
      margin: 0 auto 30px;
  }
  
  /* Responsive para por qué elegirnos */
  @media screen and (max-width: 992px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media screen and (max-width: 576px) {
      .features-grid {
          grid-template-columns: 1fr;
      }
      
      .why-us-section {
          padding: 60px 0;
      }
  }
  
  /* ==============================================
     SECCIÓN NUESTROS CLIENTES
  ============================================== */
  .clients-section {
      padding: 100px 0;
      background-color: var(--color-gray);
  }
  
  .clients-section .title-underline {
      margin: 0 auto 30px;
  }
  
  .clients-carousel-container {
      width: 100%;
      overflow: hidden;
      margin-top: 50px;
  }
  
  .clients-carousel {
      width: 100%;
      overflow: hidden;
  }
  
  .clients-track {
      display: flex;
      animation: scrollClients 30s linear infinite;
      width: max-content;
  }
  
  @keyframes scrollClients {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-50%);
      }
  }
  
  .client-item {
      min-width: 200px;
      height: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 20px;
      padding: 15px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }
  
  .client-item img {
      max-width: 100%;
      max-height: 90px;
      filter: grayscale(100%);
      transition: all 0.5s ease;
  }
  
  .client-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .client-item:hover img {
      filter: grayscale(0%);
  }
  
  /* Responsive para clientes */
  @media screen and (max-width: 768px) {
      .clients-section {
          padding: 60px 0;
      }
      
      .client-item {
          min-width: 150px;
          height: 100px;
          margin: 0 15px;
      }
      
      .client-item img {
          max-height: 70px;
      }
  }
  
  /* ==============================================
     SECCIÓN CTA
  ============================================== */
  .cta-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('imagenes/cta-empresas.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }
  
  .cta-overlay {
      padding: 100px 0;
  }
  
  .cta-content {
      text-align: center;
      color: var(--color-light);
      max-width: 800px;
      margin: 0 auto;
  }
  
  .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .cta-content p {
      font-size: 1.2rem;
      margin-bottom: 40px;
  }
  
  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }
  
  .cta-button-green {
      display: inline-block;
      background-color: #25D366;
      color: var(--color-light);
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .cta-button-green i {
      margin-right: 10px;
  }
  
  .cta-button-green:hover {
      background-color: #128C7E;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  /* Responsive para CTA */
  @media screen and (max-width: 768px) {
      .cta-overlay {
          padding: 60px 0;
      }
      
      .cta-content h2 {
          font-size: 2rem;
      }
      
      .cta-content p {
          font-size: 1rem;
      }
      
      .cta-button, .cta-button-green {
          padding: 12px 30px;
          font-size: 1rem;
          width: 100%;
          margin-bottom: 15px;
      }
      
      .cta-buttons {
          flex-direction: column;
          gap: 10px;
      }
  }
  
  /* ==============================================
     SECCIÓN FORMULARIO DE CONTACTO
  ============================================== */
  .contact-section {
      padding: 100px 0;
      background-color: var(--color-light);
  }
  
  .contact-flex {
      display: flex;
      gap: 50px;
      align-items: center;
  }
  
  .contact-info {
      flex: 1;
  }
  
  .contact-info h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--color-dark);
  }
  
  .contact-info p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 30px;
  }
  
  .contact-details {
      margin-top: 40px;
  }
  
  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
  }
  
  .contact-icon {
      font-size: 1.5rem;
      color: var(--color-primary);
      margin-right: 15px;
  }
  
  .contact-form-container {
      flex: 1;
      background-color: var(--color-gray);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }
  
  .form-group {
      flex: 0 0 calc(50% - 10px);
  }
  
  .full-width {
      flex: 0 0 100%;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 10px rgba(242, 144, 9, 0.1);
      outline: none;
  }
  
  .form-group textarea {
      resize: vertical;
  }
  
  .submit-button {
      background-color: var(--color-primary);
      color: var(--color-light);
      border: none;
      padding: 15px 30px;
      font-size: 1.1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: bold;
      width: 100%;
  }
  
  .submit-button:hover {
      background-color: var(--color-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive para formulario de contacto */
  @media screen and (max-width: 992px) {
      .contact-flex {
          flex-direction: column;
      }
      
      .contact-info, .contact-form-container {
          flex: 0 0 100%;
          width: 100%;
      }
      
      .contact-info {
          margin-bottom: 30px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .contact-section {
          padding: 60px 0;
      }
      
      .form-group {
          flex: 0 0 100%;
      }
  }
  
  /* ==============================================
     SECCIÓN DONDE ENCONTRARNOS
  ============================================== */
  .ubicacion-section {
      position: relative;
      background-color: var(--color-gray);
      width: 100%;
      padding: 0;
      margin: 0;
  }
  
  .ubicacion-overlay {
      padding: 80px 0;
      width: 100%;
  }
  
  .ubicacion-section .section-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .ubicacion-section .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--color-dark);
      position: relative;
      display: inline-block;
      font-weight: 700;
  }
  
  .ubicacion-section .title-underline {
      width: 100px;
      height: 3px;
      background-color: var(--color-primary);
      margin: 0 auto;
  }
  
  /* Contenedor principal */
  .ubicacion-container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
      height: 500px;
  }
  
  /* Contenedor del mapa */
  .mapa-container {
      flex: 1;
      min-width: 0;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .mapa-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
  }
  
  /* Contenedor de información */
  .info-container {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
  }
  
  /* Tarjetas de información */
  .info-card {
      display: flex;
      background-color: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border-left: 4px solid var(--color-primary);
  }
  
  .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .info-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 50px;
      font-size: 1.5rem;
      color: var(--color-primary);
  }
  
  .info-content {
      flex: 1;
      padding-left: 15px;
  }
  
  .info-content h3 {
      font-size: 1.2rem;
      color: var(--color-dark);
      margin-bottom: 10px;
      font-weight: 600;
  }
  
  .info-content p {
      margin-bottom: 5px;
      color: #666;
      line-height: 1.5;
  }
  
  .info-content a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s;
  }
  
  .info-content a:hover {
      color: var(--color-primary);
  }
  
  /* Botón WhatsApp */
  .cta-container {
      margin-top: 20px;
  }
  
  .whatsapp1-button {
      display: inline-block;
      background-color: #25D366;
      color: white;
      padding: 15px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
  }
  
  .whatsapp1-button i {
      margin-right: 8px;
  }
  
  .whatsapp1-button:hover {
      background-color: #128C7E;
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
  }
  
  .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      padding: 10px 15px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: all 0.3s ease;
  }
  
  .whatsapp-button:hover {
      background-color: #1ebe57;
      transform: scale(1.1);
  }
  
  .whatsapp-button img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
  }
  
  .whatsapp-text {
      font-size: 14px;
  }
  
  /* Responsive para sección donde encontrarnos */
  @media screen and (max-width: 1200px) {
      .ubicacion-container {
          max-width: 90%;
          height: auto;
      }
      
      .mapa-container {
          height: 450px;
      }
  }
  
  @media screen and (max-width: 992px) {
      .ubicacion-section .section-header h2 {
          font-size: 2.2rem;
      }
      
      .info-card {
          padding: 15px;
      }
      
      .info-content h3 {
          font-size: 1.1rem;
      }
      
      .mapa-container {
          height: 400px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .ubicacion-overlay {
          padding: 60px 0;
      }
      
      .ubicacion-container {
          flex-direction: column;
          gap: 30px;
      }
      
      .mapa-container {
          width: 100%;
          height: 350px;
      }
      
      .info-container {
          width: 100%;
      }
      
      .ubicacion-section .section-header h2 {
          font-size: 2rem;
      }
      
      .info-icon {
          font-size: 1.3rem;
          min-width: 40px;
      }
  }
  
  @media screen and (max-width: 576px) {
      .ubicacion-overlay {
          padding: 40px 0;
      }
      
      .ubicacion-section .section-header h2 {
          font-size: 1.8rem;
      }
      
      .ubicacion-section .title-underline {
          width: 80px;
      }
      
      .mapa-container {
          height: 300px;
      }
      
      .info-card {
          padding: 12px;
      }
      
      .info-content h3 {
          font-size: 1rem;
          margin-bottom: 8px;
      }
      
      .info-content p {
          font-size: 0.9rem;
      }
      
      .info-icon {
          font-size: 1.2rem;
          min-width: 35px;
      }
      
      .whatsapp1-button {
          padding: 12px 20px;
          font-size: 0.9rem;
          width: 100%;
      }
  }
  
  /* ==============================================
     FOOTER
  ============================================== */
  .footer {
      background-color: #222;
      color: white;
      padding: 50px 0 20px;
      position: relative;
  }
  
  .footer-container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      justify-content: space-between;
      gap: 30px;
  }
  
  /* Logo */
  .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .footer-logo img {
      max-width: 150px;
      height: auto;
  }
  
  /* Servicios */
  .footer-services {
      flex: 2;
  }
  
  .footer-services h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-weight: 600;
      color: white;
  }
  
  .services-columns {
      display: flex;
      gap: 20px;
  }
  
  .services-list {
      list-style: none;
      padding: 0;
      flex: 1;
  }
  
  .services-list li {
      margin-bottom: 10px;
      color: #ccc;
      font-size: 0.9rem;
  }
  
  /* Visítanos */
  .footer-visit {
      flex: 1;
  }
  
  .footer-visit h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-weight: 600;
      color: white;
  }
  
  .visit-list {
      list-style: none;
      padding: 0;
  }
  
  .visit-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      color: #ccc;
      font-size: 0.9rem;
  }
  
  .visit-list i {
      color: var(--color-primary);
      margin-right: 10px;
      font-size: 1.2rem;
      margin-top: 2px;
  }
  
  /* Redes sociales */
  .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
  }
  
  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #333;
      color: white;
      border-radius: 50%;
      transition: all 0.3s ease;
  }
  
  .social-icon:hover {
      background-color: var(--color-primary);
      transform: translateY(-3px);
  }
  
  .social-icon i {
      font-size: 1.2rem;
  }
  
  /* Responsive para el footer */
  @media screen and (max-width: 992px) {
      .footer-container {
          flex-wrap: wrap;
      }
      
      .footer-logo {
          flex: 1 0 100%;
          margin-bottom: 30px;
      }
      
      .footer-services, .footer-visit {
          flex: 1 0 45%;
      }
  }
  
  @media screen and (max-width: 768px) {
      .footer {
          padding: 40px 0 20px;
      }
      
      .footer-container {
          flex-direction: column;
          gap: 30px;
      }
      
      .footer-logo, .footer-services, .footer-visit {
          flex: 1 0 100%;
          text-align: center;
      }
      
      .services-columns {
          justify-content: center;
      }
      
      .services-list {
          text-align: left;
      }
      
      .visit-list li {
          justify-content: center;
      }
      
      .social-icons {
          margin-top: 20px;
      }
  }
  
  @media screen and (max-width: 576px) {
      .footer {
          padding: 30px 0 15px;
      }
      
      .services-columns {
          flex-direction: column;
          gap: 0;
      }
      
      .footer-services h3, .footer-visit h3 {
          font-size: 1.1rem;
          margin-bottom: 15px;
      }
      
      .services-list li, .visit-list li {
          font-size: 0.85rem;
          margin-bottom: 8px;
      }
      
      .visit-list li {
          flex-direction: column;
          align-items: center;
      }
      
      .visit-list i {
          margin-bottom: 5px;
      }
      
      .footer-logo img {
          max-width: 120px;
      }
  }
  
  /* Animaciones para scroll */
  .scroll-animation {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }
  
  .scrolled {
      opacity: 1;
      transform: translateY(0);
  }
  
  
  /* ==============================================
   SECCIÓN VER ESTADO DE FLOTA
============================================== */
.fleet-status-section {
    padding: 100px 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.fleet-status-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.fleet-status-text {
    flex: 1;
}

.fleet-status-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.fleet-status-text .title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 30px;
}

.fleet-status-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.fleet-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.fleet-button i {
    margin-right: 10px;
}

.fleet-button:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 119, 0, 0.4);
}

.fleet-status-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

.fleet-status-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.fleet-status-image:hover img {
    transform: scale(1.05);
}

/* Efecto decorativo opcional */
.fleet-status-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--color-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.fleet-status-content {
    position: relative;
    z-index: 1;
}

/* Responsive para sección estado de flota */
@media screen and (max-width: 992px) {
    .fleet-status-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .fleet-status-text h2 {
        font-size: 2.2rem;
    }
    
    .fleet-status-text {
        text-align: center;
    }
    
    .fleet-status-text .title-underline {
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 768px) {
    .fleet-status-section {
        padding: 60px 0;
    }
    
    .fleet-status-text h2 {
        font-size: 1.8rem;
    }
    
    .fleet-status-text p {
        font-size: 1rem;
    }
    
    .fleet-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .fleet-status-text h2 {
        font-size: 1.5rem;
    }
    
    .fleet-status-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .fleet-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .fleet-status-section::before {
        display: none;
    }
}