    /* ==============================================
   VARIABLES Y RESET
============================================== */
: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);
}
  /* ==============================================
     HERO CON IMAGEN DE FONDO
  ============================================== */
  .hero {
      position: relative;
      height: 60vh;
      width: 100%;
      overflow: hidden;
      margin-top: 0;
      padding-top: 80px;
      background-image: url('imagenes/fondo2.jpg'); /* Reemplaza con la ruta de tu imagen */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); /* Overlay oscuro para mejorar legibilidad del texto */
      z-index: 1;
  }
  
  .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      color: var(--color-light);
  }
  
  .hero-content h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      animation: heroTitleReveal 1.2s ease forwards;
      opacity: 0;
      transform: translateY(30px);
  }
  
  .hero-content p {
      font-size: 1.4rem;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 2px 5px rgba(0,0,0,0.5);
      animation: heroTextReveal 1.2s ease forwards 0.3s;
      opacity: 0;
      transform: translateY(20px);
  }
  
  @keyframes heroTitleReveal {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes heroTextReveal {
      0% {
          opacity: 0;
          transform: translateY(20px);
      }
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .hero-buttons {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      justify-content: center;
      animation: fadeIn 1s ease forwards 0.6s;
      opacity: 0;
  }
  
  .hero-btn {
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
  }
  
  .hero-btn.primary {
      background: var(--color-primary);
      color: var(--color-light);
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  
  .hero-btn.primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }
  
  .hero-btn.secondary {
      background: transparent;
      color: var(--color-light);
      border: 2px solid var(--color-light);
  }
  
  .hero-btn.secondary:hover {
      background: var(--color-light);
      color: var(--color-dark);
      transform: translateY(-5px);
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  
  /* Responsive para Hero */
  @media screen and (max-width: 992px) {
      .hero-content h1 {
          font-size: 3rem;
      }
      
      .hero-content p {
          font-size: 1.2rem;
      }
  }
  
  @media screen and (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }
      
      .hero-content p {
          font-size: 1.1rem;
      }
      
      .hero-buttons {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }
      
      .hero-btn {
          width: 80%;
      }
  }
  
  @media screen and (max-width: 576px) {
      .hero-content h1 {
          font-size: 2rem;
      }
      
      .hero-content p {
          font-size: 1rem;
      }
      
      .hero-btn {
          padding: 12px 25px;
          font-size: 1rem;
          width: 100%;
      }
  }
  /* ==============================================
     SECCIÓN SERVICIOS INNOVADORA
  ============================================== */
  .service-section {
      padding: 100px 0;
      background-color: var(--color-light);
      position: relative;
      overflow: hidden;
  }
  
  .service-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 30%;
      height: 100%;
      background: linear-gradient(135deg, rgba(242, 144, 9, 0.1) 0%, rgba(255, 107, 1, 0.05) 100%);
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 0;
  }
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
  }
  
  .service-section h2 {
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 20px;
      color: var(--color-dark);
      font-weight: 800;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
  }
  
  .service-section h2::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--color-primary);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
  }
  
  .service-section > .container > p {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
      color: #666;
      font-size: 1.1rem;
      line-height: 1.6;
  }
  
  .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
  }
  
  .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition-smooth);
      transform: translateY(50px);
      opacity: 0;
      position: relative;
      z-index: 1;
  }
  
  .service-card.slide-up {
      animation: slideUp 0.6s forwards;
  }
  
  @keyframes slideUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
      opacity: 0;
      transition: var(--transition-smooth);
      z-index: -1;
  }
  
  .service-card:hover {
      transform: translateY(-15px) !important;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .service-card:hover::before {
      opacity: 0.03;
  }
  
  .service-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      transition: var(--transition-smooth);
  }
  
  .service-card:hover img {
      transform: scale(1.05);
  }
  
  .service-card h3 {
      padding: 20px 20px 10px;
      font-size: 1.3rem;
      color: var(--color-dark);
      font-weight: 700;
      position: relative;
  }
  
  .service-card h3::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 3px;
      background: var(--color-primary);
      bottom: 0;
      left: 20px;
      transition: var(--transition-smooth);
  }
  
  .service-card:hover h3::after {
      width: 60px;
  }
  
  .service-card p {
      padding: 0 20px 20px;
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
  }
  
  .service-card .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 200px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
      opacity: 0;
      transition: var(--transition-smooth);
  }
  
  .service-card:hover .card-overlay {
      opacity: 1;
  }
  
  .card-btn {
      position: absolute;
      bottom: 20px;
      left: 20px;
      padding: 10px 20px;
      background: var(--color-primary);
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-smooth);
      opacity: 0;
      transform: translateY(20px);
  }
  
  .service-card:hover .card-btn {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Delay para animación escalonada */
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
  .service-card:nth-child(5) { animation-delay: 0.5s; }
  .service-card:nth-child(6) { animation-delay: 0.6s; }
  .service-card:nth-child(7) { animation-delay: 0.7s; }
  .service-card:nth-child(8) { animation-delay: 0.8s; }
  
  /* Responsive para servicios */
  @media screen and (max-width: 992px) {
      .service-section {
          padding: 80px 0;
      }
      
      .service-section h2 {
          font-size: 2.5rem;
      }
      
      .service-cards {
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 25px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .service-section {
          padding: 60px 0;
      }
      
      .service-section h2 {
          font-size: 2.2rem;
      }
      
      .service-section > .container > p {
          font-size: 1rem;
          margin-bottom: 40px;
      }
      
      .service-cards {
          grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
          gap: 20px;
      }
      
      .service-card img {
          height: 180px;
      }
      
      .service-card h3 {
          font-size: 1.2rem;
          padding: 15px 15px 10px;
      }
      
      .service-card p {
          padding: 0 15px 15px;
          font-size: 0.9rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .service-section {
          padding: 50px 0;
      }
      
      .service-section h2 {
          font-size: 1.8rem;
      }
      
      .service-cards {
          grid-template-columns: 1fr;
          max-width: 320px;
          margin-left: auto;
          margin-right: auto;
      }
      
      .service-card h3 {
          font-size: 1.1rem;
      }
  }
  

  /* ==============================================
     SECCIÓN SERVICIO PREMIUM
  ============================================== */
  .premium-service {
    position: relative;
    padding: 120px 0 150px;
    background-color: var(--color-dark);
    color: var(--color-light);
    overflow: hidden;
}

.premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.8) 100%);
    opacity: 0.9;
}

.premium-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.premium-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.premium-badge {
    background-color: var(--color-primary);
    color: white;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(242, 144, 9, 0.3);
    transform: rotate(-5deg);
}

.premium-badge span {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.premium-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--color-light);
}

.premium-header .title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 15px auto 0;
}

.emoji-icons {
    display: inline-block;
    transform: translateY(2px);
}

.premium-tagline {
    text-align: center;
    margin-bottom: 50px;
}

.premium-tagline p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #eee;
    max-width: 700px;
    margin: 0 auto;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.premium-feature {
    flex: 1 1 calc(50% - 30px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.premium-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.premium-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-primary);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: all 0.3s ease;
}

.premium-feature:hover::before {
    opacity: 1;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 144, 9, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.premium-feature:hover .feature-icon {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: rotateY(180deg);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-light);
}

.feature-text p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.5;
}

.premium-bottom {
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.premium-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #eee;
    max-width: 700px;
    margin: 0 auto 40px;
}

.premium-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(242, 144, 9, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: width 0.3s ease;
    z-index: -1;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 144, 9, 0.4);
}

.premium-button:hover::before {
    width: 100%;
}

.premium-button i {
    transition: transform 0.3s ease;
}

.premium-button:hover i {
    transform: translateX(5px);
}

.premium-car {
    position: absolute;
    bottom: -20px;
    right: -100px;
    width: 100%;
    text-align: right;
    pointer-events: none;
}

.car-animation {
    display: inline-block;
    animation: carMove 10s linear infinite;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

@keyframes carMove {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(-1200px);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .premium-service {
        padding: 100px 0 120px;
    }
    
    .premium-header h2 {
        font-size: 2.4rem;
    }
    
    .premium-tagline p {
        font-size: 1.3rem;
    }
    
    .premium-quote {
        font-size: 1.2rem;
    }
    
    .premium-features {
        gap: 25px;
    }
    
    .premium-feature {
        flex: 1 1 calc(50% - 25px);
        padding: 20px;
    }
    
    .feature-icon {
        flex: 0 0 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .premium-service {
        padding: 80px 0 100px;
    }
    
    .premium-header h2 {
        font-size: 2rem;
    }
    
    .premium-tagline p {
        font-size: 1.2rem;
    }
    
    .premium-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .premium-feature {
        flex: 1 1 100%;
    }
    
    .premium-quote {
        font-size: 1.1rem;
    }
    
    .premium-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .car-animation {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .premium-service {
        padding: 60px 0 80px;
    }
    
    .premium-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-badge {
        padding: 6px 20px;
    }
    
    .premium-tagline p {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        flex: 0 0 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .premium-quote {
        font-size: 1rem;
    }
    
    .car-animation {
        font-size: 2rem;
    }
} 
  /* ==============================================
     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: none;
  }
  
  /* 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: var(--transition-smooth);
      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;
}

.whatsapp-button1: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;
      }
      
      .whatsapp-button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
  }
  
  @media screen and (max-width: 380px) {
      .ubicacion-section .section-header h2 {
          font-size: 1.5rem;
      }
      
      .mapa-container {
          height: 250px;
      }
      
      .info-card {
          flex-direction: column;
          text-align: center;
      }
      
      .info-icon {
          margin-bottom: 10px;
      }
      
      .info-content {
          padding-left: 0;
      }
  }
  
  /* ==============================================
     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: var(--transition-smooth);
  }
  
  .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 ADICIONALES Y EFECTOS
  ============================================== */
  
  /* Partículas para el Hero */
  @keyframes particles {
      0% {
          transform: translateY(0) rotate(0deg);
          opacity: 0;
      }
      10% {
          opacity: 0.5;
      }
      90% {
          opacity: 0.5;
      }
      100% {
          transform: translateY(-1000px) rotate(720deg);
          opacity: 0;
      }
  }
  
  /* Fade in para elementos al hacer scroll */
  .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.active {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Animación para títulos */
  @keyframes titleAnimation {
      0% {
          letter-spacing: -10px;
          opacity: 0;
      }
      50% {
          letter-spacing: 5px;
      }
      100% {
          letter-spacing: normal;
          opacity: 1;
      }
  }
  
  /* Animación para el efecto parallax */
  .parallax {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }
  
  /* Efecto de resaltado para elementos importantes */
  .highlight {
      position: relative;
      display: inline-block;
  }
  
  .highlight::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 30%;
      background-color: rgba(242, 144, 9, 0.2);
      bottom: 0;
      left: 0;
      z-index: -1;
      transition: height 0.3s ease;
  }
  
  .highlight:hover::after {
      height: 100%;
  }
  
  /* Pulsación para botones de llamada a la acción */
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(242, 144, 9, 0.7);
      }
      70% {
          box-shadow: 0 0 0 10px rgba(242, 144, 9, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(242, 144, 9, 0);
      }
  }
  
  .pulse {
      animation: pulse 2s infinite;
  }
  
  /* Generador de partículas para el Hero */
  .particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
  }
  
  /* Estilos para el scroll suave */
  html {
      scroll-behavior: smooth;
  }
  
  /* Efectos de hover para tarjetas de servicios */
  .service-card .service-icon {
      transition: transform 0.5s ease;
  }
  
  .service-card:hover .service-icon {
      transform: scale(1.2) rotate(10deg);
  }
  
  /* Barra de progreso de scroll */
  .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
      width: 0%;
      z-index: 9999;
      transition: width 0.2s ease;
  }

/* ==============================================
   SECCIÓN SIMPLE FLOTAS
============================================== */
.fleet-simple-section {
    padding: 100px 0;
    background-color: var(--color-light);
    position: relative;
}

.fleet-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.fleet-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.fleet-feature {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.fleet-feature:hover {
    transform: translateY(-10px);
}

.fleet-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    padding: 20px;
    border: 3px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: all 0.3s ease;
}

.fleet-icon svg {
    width: 100%;
    height: 100%;
    color: #333;
    transition: all 0.3s ease;
}

.fleet-feature:hover .fleet-icon {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.fleet-feature:hover .fleet-icon svg {
    color: white;
    transform: scale(1.1);
}

.fleet-feature h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.fleet-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.fleet-cta {
    text-align: center;
    margin-top: 50px;
}

.fleet-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}

.fleet-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.4);
    gap: 15px;
}

.fleet-button i {
    transition: transform 0.3s ease;
}

.fleet-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .fleet-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .fleet-simple-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .fleet-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .fleet-icon {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .fleet-feature h3 {
        font-size: 1.1rem;
    }
    
    .fleet-feature p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .fleet-simple-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .fleet-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 90%;
        justify-content: center;
    }
}
  