    /* 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 NOSOTROS
      ============================================== */
      .hero-nosotros {
          height: 80vh;
          width: 100%;
          background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/fondo3.jpg');
          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: 800px;
          margin: 0 auto;
          z-index: 2;
      }
      
      .hero-content h1 {
          font-size: 3rem;
          margin-bottom: 20px;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .hero-content p {
          font-size: 1.5rem;
          margin-bottom: 30px;
          line-height: 1.6;
      }
      
      /* 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;
          }
      }
      
      @media screen and (max-width: 576px) {
          .hero-content h1 {
              font-size: 2rem;
          }
      
          .hero-content p {
              font-size: 1rem;
          }
      }
      
      /* ==============================================
         SECCIÓN HISTORIA
      ============================================== */
      .historia-section {
          padding: 100px 0;
          background-color: var(--color-light);
          position: relative;
      }
      
      .historia-intro {
          text-align: center;
          margin-bottom: 60px;
      }
      
      .historia-intro h2 {
          font-size: 2.5rem;
          margin-bottom: 15px;
          color: var(--color-dark);
      }
      
      .title-underline {
          width: 100px;
          height: 3px;
          background-color: var(--color-primary);
          margin: 0 auto 30px;
      }
      
      .intro-texto {
          font-size: 1.2rem;
          line-height: 1.8;
          color: #555;
          max-width: 800px;
          margin: 0 auto;
      }
      
      /* Timeline */
      .timeline {
          position: relative;
          max-width: 1000px;
          margin: 0 auto;
          padding: 40px 0;
      }
      
      .timeline::after {
          content: '';
          position: absolute;
          width: 6px;
          background-color: var(--color-primary);
          top: 0;
          bottom: 0;
          left: 50%;
          margin-left: -3px;
          border-radius: 3px;
      }
      
      .timeline-item {
          padding: 10px 40px;
          position: relative;
          width: 50%;
          margin-bottom: 50px;
      }
      
      .timeline-item::after {
          content: '';
          position: absolute;
          width: 25px;
          height: 25px;
          background-color: var(--color-light);
          border: 4px solid var(--color-primary);
          border-radius: 50%;
          top: 20px;
          z-index: 1;
      }
      
      .left {
          left: 0;
      }
      
      .right {
          left: 50%;
      }
      
      .left::after {
          right: -12.5px;
      }
      
      .right::after {
          left: -12.5px;
      }
      
      .timeline-date {
          position: absolute;
          top: -10px;
          font-size: 1.2rem;
          font-weight: bold;
          color: var(--color-primary);
          background-color: var(--color-light);
          padding: 5px 15px;
          border-radius: 20px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          z-index: 2;
      }
      
      .left .timeline-date {
          right: 30px;
      }
      
      .right .timeline-date {
          left: 30px;
      }
      
      .timeline-card {
          background-color: var(--color-light);
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
      }
      
      .timeline-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }
      
      .timeline-image {
          width: 100%;
          height: 200px;
          overflow: hidden;
      }
      
      .timeline-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.5s ease;
      }
      
      .timeline-card:hover .timeline-image img {
          transform: scale(1.1);
      }
      
      .timeline-text {
          padding: 20px;
      }
      
      .timeline-text h3 {
          font-size: 1.3rem;
          margin-bottom: 10px;
          color: var(--color-dark);
      }
      
      .timeline-text p {
          color: #666;
          line-height: 1.6;
      }
      
      /* Responsive para Timeline */
      @media screen and (max-width: 992px) {
          .timeline::after {
              left: 31px;
          }
          
          .timeline-item {
              width: 100%;
              padding-left: 70px;
              padding-right: 25px;
          }
          
          .timeline-item::after {
              left: 18px;
          }
          
          .right {
              left: 0;
          }
          
          .left .timeline-date, .right .timeline-date {
              left: 70px;
              right: auto;
          }
      }
      
      @media screen and (max-width: 576px) {
          .historia-section {
              padding: 60px 0;
          }
          
          .historia-intro h2 {
              font-size: 2rem;
          }
          
          .timeline-date {
              font-size: 1rem;
          }
          
          .timeline-image {
              height: 150px;
          }
      }
      
      /* ==============================================
         SECCIÓN FILOSOFÍA
      ============================================== */
      .filosofia-section {
          padding: 100px 0;
          background-color: var(--color-gray);
      }
      
      .filosofia-content {
          display: flex;
          align-items: center;
          gap: 50px;
      }
      
      .filosofia-text {
          flex: 1;
      }
      
      .filosofia-text h2 {
          font-size: 2.5rem;
          margin-bottom: 15px;
          color: var(--color-dark);
      }
      
      .filosofia-text .title-underline {
          margin: 0 0 30px 0;
      }
      
      .filosofia-text p {
          font-size: 1.1rem;
          line-height: 1.8;
          color: #555;
          margin-bottom: 20px;
      }
      
      .filosofia-image {
          flex: 1;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 15px 30px rgba(0,0,0,0.1);
          position: relative;
      }
      
      .filosofia-image::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 40%;
          background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
          z-index: 1;
      }
      
      .filosofia-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.5s ease;
      }
      
      .filosofia-image:hover img {
          transform: scale(1.05);
      }
      
      /* Responsive para Filosofía */
      @media screen and (max-width: 992px) {
          .filosofia-content {
              flex-direction: column;
              gap: 30px;
          }
          
          .filosofia-text h2 {
              font-size: 2.2rem;
          }
      }
      
      @media screen and (max-width: 576px) {
          .filosofia-section {
              padding: 60px 0;
          }
          
          .filosofia-text h2 {
              font-size: 1.8rem;
          }
      }
      
      /* ==============================================
         SECCIÓN VALORES
      ============================================== */
      .valores-section {
          padding: 100px 0;
          background-color: var(--color-dark);
          color: var(--color-light);
      }
      
      .section-header {
          text-align: center;
          margin-bottom: 60px;
      }
      
      .section-header h2 {
          font-size: 2.5rem;
          margin-bottom: 15px;
          color: var(--color-light);
      }
      
      .section1-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section1-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: black;
    }
      .valores-section .title-underline {
          background-color: var(--color-primary);
      }
      
      .valores-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 30px;
      }
      
      .valor-card {
          background-color: rgba(255, 255, 255, 0.05);
          border-radius: 10px;
          padding: 30px;
          text-align: center;
          transition: all 0.3s ease;
          border-bottom: 3px solid transparent;
      }
      
      .valor-card:hover {
          transform: translateY(-10px);
          border-bottom: 3px solid var(--color-primary);
          background-color: rgba(255, 255, 255, 0.1);
      }
      
      .valor-icon {
          font-size: 2.5rem;
          color: var(--color-primary);
          margin-bottom: 20px;
      }
      
      .valor-card h3 {
          font-size: 1.3rem;
          margin-bottom: 15px;
      }
      
      .valor-card p {
          font-size: 1rem;
          line-height: 1.6;
          color: #ccc;
      }
      
      /* Responsive para Valores */
      @media screen and (max-width: 992px) {
          .valores-grid {
              grid-template-columns: repeat(2, 1fr);
          }
      }
      
      @media screen and (max-width: 576px) {
          .valores-grid {
              grid-template-columns: 1fr;
          }
          
          .valores-section {
              padding: 60px 0;
          }
          
          .section-header h2 {
              font-size: 2rem;
          }
          .section1-header h2 {
            font-size: 2rem;
        }
      }
      
      /* ==============================================
         SECCIÓN EQUIPO
      ============================================== */
      .equipo-section {
          padding: 100px 0;
          background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/fondo3.jpg');
      }
      
      .equipo-section .section-header p {
          font-size: 1.1rem;
          color: #ffffff;
          max-width: 800px;
          margin: 0 auto;
      }
      
      .equipo-cards {
          display: flex;
          justify-content: center;
          gap: 30px;
          margin-top: 50px;
          flex-wrap: wrap;
      }
      
      .equipo-card {
          flex: 0 0 300px;
          background-color: white;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 10px 20px rgba(0,0,0,0.05);
          transition: all 0.3s ease;
      }
      
      .equipo-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      }
      
      .equipo-image {
          position: relative;
          height: 300px;
          overflow: hidden;
      }
      
      .equipo-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.5s ease;
      }
      
      .equipo-card:hover .equipo-image img {
          transform: scale(1.1);
      }
      
      .equipo-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.6);
          display: flex;
          justify-content: center;
          align-items: center;
          opacity: 0;
          transition: all 0.3s ease;
      }
      
      .equipo-card:hover .equipo-overlay {
          opacity: 1;
      }
      
      .equipo-social {
          display: flex;
          gap: 15px;
      }
      
      .social-link {
          width: 40px;
          height: 40px;
          background-color: var(--color-primary);
          color: white;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: all 0.3s ease;
      }
      
      .social-link:hover {
          background-color: var(--color-dark);
          transform: scale(1.1);
      }
      
      .equipo-info {
          padding: 20px;
          text-align: center;
      }
      
      .equipo-info h3 {
          font-size: 1.3rem;
          margin-bottom: 5px;
          color: var(--color-dark);
      }
      
      .equipo-cargo {
          font-size: 0.9rem;
          color: var(--color-primary);
          font-weight: bold;
          margin-bottom: 10px;
      }
      
      .equipo-desc {
          font-size: 0.95rem;
          line-height: 1.6;
          color: #666;
      }
      
      /* Responsive para Equipo */
      @media screen and (max-width: 992px) {
          .equipo-card {
              flex: 0 0 calc(50% - 15px);
          }
      }
      
      @media screen and (max-width: 768px) {
          .equipo-section {
              padding: 60px 0;
          }
          
          .equipo-card {
              flex: 0 0 100%;
              max-width: 350px;
          }
      }
      
      /* ==============================================
         SECCIÓN GALERÍA
      ============================================== */
      .galeria-section {
          padding: 100px 0;
          background-color: var(--color-gray);
      }
      
      .galeria-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
          margin-top: 50px;
      }
      
      .galeria-item {
          height: 250px;
          border-radius: 10px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
      }
      
      .galeria-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.3);
          opacity: 0;
          transition: all 0.3s ease;
          z-index: 1;
      }
      
      .galeria-item:hover::before {
          opacity: 1;
      }
      
      .galeria-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.5s ease;
      }
      
      .galeria-item:hover img {
          transform: scale(1.1);
      }
      
      /* Responsive para Galería */
      @media screen and (max-width: 992px) {
          .galeria-grid {
              grid-template-columns: repeat(2, 1fr);
          }
      }
      
      @media screen and (max-width: 576px) {
          .galeria-section {
              padding: 60px 0;
          }
          
          .galeria-grid {
              grid-template-columns: 1fr;
          }
      }
      
      /* ==============================================
         SECCIÓN CTA
      ============================================== */
      .cta-section {
          background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagenes/cta-nosotros.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: 30px;
      }
      
      .cta-button {
          display: inline-block;
          background-color: var(--color-primary);
          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:hover {
          background-color: var(--color-dark);
          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 {
              padding: 12px 30px;
              font-size: 1rem;
          }
      }
      
      /* ==============================================
         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);
      }
      