/* 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);
}
  /* ==============================================
     CONTENEDORES COMUNES
  ============================================== */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--color-dark);
      display: inline-block;
  }
  
  .title-underline {
      width: 100px;
      height: 3px;
      background-color: var(--color-primary);
      margin: 15px auto 30px;
  }
  
  /* ==============================================
     SECCIÓN HERO PREMIUM
  ============================================== */
  .premium-hero {
      height: 100vh;
      width: 100%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/premium-hero.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;
  }
  
  .premium-overlay {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .premium-hero-content {
      text-align: center;
      color: var(--color-light);
      z-index: 2;
  }
  
  .premium-badge {
      display: inline-block;
      margin-bottom: 30px;
      animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
  }
  
  .premium-badge-img {
      width: 150px;
      height: auto;
  }
  
  .premium-hero-content h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .premium-tagline {
      font-size: 1.8rem;
      margin-bottom: 40px;
      font-weight: 300;
  }
  
  .premium-hero-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);
  }
  
  .premium-hero-button:hover {
      background-color: white;
      color: var(--color-primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  }
  
  .premium-hero-button i {
      animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
  }
  
  /* Responsive para hero */
  @media screen and (max-width: 768px) {
      .premium-hero-content h1 {
          font-size: 3rem;
      }
      
      .premium-tagline {
          font-size: 1.5rem;
      }
      
      .premium-badge-img {
          width: 120px;
      }
  }
  
  @media screen and (max-width: 576px) {
      .premium-hero-content h1 {
          font-size: 2.2rem;
      }
      
      .premium-tagline {
          font-size: 1.2rem;
      }
      
      .premium-badge-img {
          width: 100px;
      }
      
      .premium-hero-button {
          padding: 12px 30px;
          font-size: 1rem;
      }
  }
  
  /* ==============================================
     SECCIÓN INTRODUCCIÓN
  ============================================== */
  .premium-intro {
      padding: 100px 0;
      background-color: var(--color-light);
  }
  
  .premium-intro-content {
      display: flex;
      align-items: center;
      gap: 50px;
  }
  
  .intro-text {
      flex: 1;
  }
  
  .intro-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 30px;
  }
  
  .intro-highlight {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px;
      background-color: rgba(242, 144, 9, 0.1);
      border-left: 4px solid var(--color-primary);
      border-radius: 0 10px 10px 0;
  }
  
  .intro-highlight i {
      font-size: 2rem;
      color: var(--color-primary);
  }
  
  .intro-highlight p {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0;
  }
  
  .intro-image {
      flex: 1;
      position: relative;
  }
  
  .intro-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
  }
  
  .intro-image-decoration {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 20px;
      left: 20px;
      background-color: var(--color-primary);
      border-radius: 10px;
      z-index: 1;
  }
  
  /* Responsive para introducción */
  @media screen and (max-width: 992px) {
      .premium-intro-content {
          flex-direction: column;
      }
      
      .intro-text {
          order: 2;
      }
      
      .intro-image {
          order: 1;
          margin-bottom: 30px;
      }
  }
  
  @media screen and (max-width: 576px) {
      .premium-intro {
          padding: 60px 0;
      }
      
      .intro-text p {
          font-size: 1rem;
      }
      
      .intro-highlight {
          flex-direction: column;
          text-align: center;
          padding: 15px;
      }
      
      .intro-highlight p {
          font-size: 1.1rem;
      }
  }
  
  /* ==============================================
     SECCIÓN CÓMO FUNCIONA
  ============================================== */
  .premium-how {
      padding: 100px 0;
      background-color: var(--color-gray);
      position: relative;
  }
  
  .premium-how .section-header h2 i {
      color: var(--color-primary);
      margin-right: 10px;
  }
  
  .premium-steps {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
  }
  
  .premium-step {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
  }
  
  .premium-step.active {
      opacity: 1;
      transform: translateY(0);
  }
  
  .step-number {
      width: 60px;
      height: 60px;
      background-color: var(--color-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(242, 144, 9, 0.3);
      flex-shrink: 0;
  }
  
  .step-content {
      background-color: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      flex: 1;
      position: relative;
  }
  
  .step-content h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--color-dark);
  }
  
  .step-content p {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
  }
  
  .step-icon {
      position: absolute;
      right: 25px;
      top: 25px;
      font-size: 2rem;
      color: rgba(242, 144, 9, 0.2);
  }
  
  .steps-progress {
      margin-top: 50px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .progress-bar {
      height: 6px;
      background-color: #ddd;
      border-radius: 3px;
      overflow: hidden;
  }
  
  .progress-fill {
      height: 100%;
      width: 20%;
      background-color: var(--color-primary);
      border-radius: 3px;
      transition: width 0.5s ease;
  }
  
  /* Responsive para Cómo Funciona */
  @media screen and (max-width: 768px) {
      .premium-how {
          padding: 60px 0;
      }
      
      .step-number {
          width: 50px;
          height: 50px;
          font-size: 1.5rem;
      }
      
      .step-content {
          padding: 20px;
      }
      
      .step-content h3 {
          font-size: 1.2rem;
      }
      
      .step-icon {
          font-size: 1.8rem;
          top: 20px;
          right: 20px;
      }
  }
  
  @media screen and (max-width: 576px) {
      .premium-step {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      
      .step-number {
          margin-bottom: 15px;
      }
      
      .step-content {
          width: 100%;
      }
      
      .step-icon {
          display: none;
      }
  }
  
  /* ==============================================
     SECCIÓN QUÉ INCLUYE
  ============================================== */
  .premium-includes {
      padding: 100px 0;
      background-color: var(--color-light);
  }
  
  .premium-includes .section-header h2 i {
      color: var(--color-primary);
      margin-right: 10px;
  }
  
  .includes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-bottom: 50px;
  }
  
  .include-item {
      background-color: var(--color-gray);
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }
  
  .include-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .include-item::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--color-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: center;
  }
  
  .include-item:hover::before {
      transform: scaleX(1);
  }
  
  .include-icon {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 20px;
  }
  
  .include-item p {
      font-size: 1rem;
      color: #666;
      line-height: 1.5;
  }
  
  .includes-highlight {
      max-width: 700px;
      margin: 0 auto;
      background-color: var(--color-primary);
      color: white;
      padding: 30px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 30px;
      box-shadow: 0 10px 30px rgba(242, 144, 9, 0.3);
  }
  
  .highlight-icon {
      font-size: 3rem;
  }
  
  .highlight-text {
      flex: 1;
  }
  
  .highlight-text h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
  }
  
  .highlight-text p {
      font-size: 1.5rem;
      font-weight: 700;
  }
  
  /* Responsive para Qué Incluye */
  @media screen and (max-width: 992px) {
      .includes-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media screen and (max-width: 768px) {
      .premium-includes {
          padding: 60px 0;
      }
      
      .includes-highlight {
          flex-direction: column;
          text-align: center;
          padding: 25px;
      }
      
      .highlight-text h3 {
          font-size: 1.2rem;
      }
      
      .highlight-text p {
          font-size: 1.3rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .includes-grid {
          grid-template-columns: 1fr;
      }
      
      .include-item {
          padding: 25px 15px;
      }
      
      .include-icon {
          font-size: 2rem;
      }
  }
  
  /* ==============================================
     SECCIÓN POR QUÉ ELEGIRNOS
  ============================================== */
  .premium-why {
      padding: 100px 0;
      background-color: var(--color-dark);
      color: var(--color-light);
  }
  
  .premium-why .section-header h2 {
      color: var(--color-light);
  }
  
  .premium-why .section-header h2 i {
      color: var(--color-primary);
      margin-right: 10px;
  }
  
  .premium-why .title-underline {
      background-color: var(--color-primary);
  }
  
  .why-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 60px;
  }
  
  .why-card {
      flex: 1 1 calc(25% - 30px);
      min-width: 250px;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }
  
  .why-card:hover {
      transform: translateY(-10px);
      background-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .why-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--color-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }
  
  .why-card:hover::after {
      transform: scaleX(1);
  }
  
  .why-icon {
      width: 80px;
      height: 80px;
      background-color: rgba(242, 144, 9, 0.2);
      color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px;
      transition: all 0.3s ease;
  }
  
  .why-card:hover .why-icon {
      background-color: var(--color-primary);
      color: white;
      transform: rotateY(180deg);
  }
  
  .why-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
  }
  
  .why-card p {
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
  }
  
  .why-banner {
      max-width: 800px;
      margin: 0 auto;
      background-color: rgba(242, 144, 9, 0.1);
      border-radius: 10px;
      padding: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      border-left: 4px solid var(--color-primary);
  }
  
  .why-banner i {
      font-size: 2rem;
      color: var(--color-primary);
  }
  
  .why-banner p {
      font-size: 1.3rem;
  }
  
  /* Responsive para Por Qué Elegirnos */
  @media screen and (max-width: 992px) {
      .why-card {
          flex: 1 1 calc(50% - 30px);
      }
  }
  
  @media screen and (max-width: 768px) {
      .premium-why {
          padding: 60px 0;
      }
      
      .why-banner {
          flex-direction: column;
          text-align: center;
          padding: 20px;
      }
      
      .why-banner p {
          font-size: 1.2rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .why-card {
          flex: 1 1 100%;
      }
      
      .why-icon {
          width: 70px;
          height: 70px;
          font-size: 1.8rem;
      }
      
      .why-card h3 {
          font-size: 1.2rem;
      }
  }
  
  /* ==============================================
     SECCIÓN CTA
  ============================================== */
  .premium-cta {
      padding: 100px 0;
      background-color: var(--color-primary);
      position: relative;
      overflow: hidden;
  }
  
  .cta-content {
      text-align: center;
      color: white;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }
  
  .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
  }
  
  .cta-content p {
      font-size: 1.3rem;
      margin-bottom: 40px;
  }
  
  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: white;
      color: var(--color-primary);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .cta-button i {
      transition: all 0.3s ease;
  }
  
  .cta-button:hover i {
      transform: translateX(5px);
  }
  
  .cta-note {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }
  
  .cta-note i {
      font-size: 1.3rem;
  }
  
  .cta-note p {
      font-size: 1.1rem;
      margin-bottom: 0;
  }
  
  .cta-cars {
      position: absolute;
      bottom: 20px;
      width: 100%;
      z-index: 1;
  }
  
  .car {
      position: absolute;
      font-size: 2.5rem;
      color: rgba(255, 255, 255, 0.2);
  }
  
  .car-1 {
      left: 10%;
      animation: carMove1 15s linear infinite;
  }
  
  .car-2 {
      left: 40%;
      animation: carMove2 20s linear infinite;
  }
  
  .car-3 {
      left: 70%;
      animation: carMove3 12s linear infinite;
  }
  
  @keyframes carMove1 {
      0% { transform: translateX(-100px); }
      100% { transform: translateX(calc(100vw + 100px)); }
  }
  
  @keyframes carMove2 {
      0% { transform: translateX(calc(-100vw - 100px)); }
      100% { transform: translateX(100px); }
  }
  
  @keyframes carMove3 {
      0% { transform: translateX(100px); }
      100% { transform: translateX(calc(-100vw - 100px)); }
  }
  
  /* Responsive para CTA */
  @media screen and (max-width: 768px) {
      .premium-cta {
          padding: 60px 0;
      }
      
      .cta-content h2 {
          font-size: 2rem;
      }
      
      .cta-content p {
          font-size: 1.2rem;
      }
      
      .cta-button {
          padding: 15px 35px;
          font-size: 1.1rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .cta-content h2 {
          font-size: 1.8rem;
      }
      
      .cta-content p {
          font-size: 1.1rem;
      }
      
      .cta-button {
          padding: 12px 30px;
          font-size: 1rem;
          width: 100%;
      }
      
      .cta-note p {
          font-size: 1rem;
      }
  }
  
  /* ==============================================
     SECCIÓN TESTIMONIOS
  ============================================== */
  .premium-testimonials {
      padding: 100px 0;
      background-color: var(--color-light);
  }
  
  .testimonials-slider {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
  }
  
  .testimonials-wrapper {
      overflow: hidden;
      border-radius: 10px;
  }
  
  .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
  }
  
  .testimonial {
      flex: 0 0 100%;
      padding: 20px;
  }
  
  .testimonial-content {
      background-color: var(--color-gray);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-stars {
      color: #FFD700;
      margin-bottom: 20px;
      font-size: 1.2rem;
  }
  
  .testimonial-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      font-style: italic;
      margin-bottom: 30px;
  }
  
  .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
  }
  
  .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--color-primary);
  }
  
  .testimonial-author h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--color-dark);
  }
  
  .testimonial-author span {
      font-size: 0.9rem;
      color: #777;
  }
  
  .testimonial-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 30px;
      gap: 20px;
  }
  
  .testimonial-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--color-primary);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
  }
  
  .testimonial-btn:hover {
      background-color: var(--color-dark);
      transform: scale(1.1);
  }
  
  .testimonial-dots {
      display: flex;
      gap: 8px;
  }
  
  .dot {
      width: 12px;
      height: 12px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .dot.active {
      background-color: var(--color-primary);
      transform: scale(1.2);
  }
  
  /* Responsive para Testimonios */
  @media screen and (max-width: 768px) {
      .premium-testimonials {
          padding: 60px 0;
      }
      
      .testimonial-content {
          padding: 25px;
      }
      
      .testimonial-content p {
          font-size: 1rem;
      }
  }
  
  @media screen and (max-width: 576px) {
      .testimonial-author {
          flex-direction: column;
          text-align: center;
      }
  }
  
  /* ==============================================
     SECCIÓN FAQ
  ============================================== */
  .premium-faq {
      padding: 100px 0;
      background-color: var(--color-gray);
  }
  
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }
  
  .faq-item {
      margin-bottom: 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .faq-question {
      background-color: white;
      padding: 20px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .faq-question:hover {
      background-color: rgba(242, 144, 9, 0.05);
  }
  
  .faq-question h3 {
      font-size: 1.1rem;
      color: var(--color-dark);
  }
  
  .faq-icon {
      color: var(--color-primary);
      font-size: 1.2rem;
      transition: all 0.3s ease;
  }
  
  .faq-answer {
      background-color: white;
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
  }
  
  .faq-answer p {
      padding: 20px 0;
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
  }
  
  .faq-item.active .faq-question {
      background-color: var(--color-primary);
      color: white;
  }
  
  .faq-item.active .faq-question h3 {
      color: white;
  }
  
  .faq-item.active .faq-icon {
      color: white;
      transform: rotate(45deg);
  }
  
  .faq-item.active .faq-answer {
      max-height: 500px;
  }
  
  /* Responsive para FAQ */
  @media screen and (max-width: 768px) {
      .premium-faq {
          padding: 60px 0;
      }
  }
  
  @media screen and (max-width: 576px) {
      .faq-question {
          padding: 15px 20px;
      }
      
      .faq-question h3 {
          font-size: 1rem;
      }
      
      .faq-answer p {
          font-size: 0.95rem;
      }
  }
  
  /* ==============================================
     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);
  }
  
  /* 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;
  }
  
  .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 {
          padding: 12px 20px;
          font-size: 0.9rem;
          width: 100%;
      }
  }
  
  @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: 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;
      }
  }