* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #1c1c1c;
  color: #f3f3f3;
}

    /* ----- RESET básico ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #0a0c10;
      min-height: 200vh; /* Solo para simular scroll y ver el degradado fijo */
    }

    /* ----- MENU: gradiente desde negro sólido arriba a transparente abajo ----- */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to bottom, #1c1c1c, rgba(28, 28, 28, 0));
      z-index: 1000;
      transition: all 0.2s ease;
    }

    /* Contenedor interno: centrado a 1200px */
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 78px;
      position: relative;
    }

    /* LOGO lado izquierdo */
    .logo-area {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo-image {
      height: 52px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
      transition: transform 0.2s ease;
    }

    .logo-image:hover {
      transform: scale(1.02);
    }

    /* navegación derecha (escritorio) */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-links li a {
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      color: #f3f3f3;
      transition: color 0.2s ease;
      letter-spacing: 0.2px;
      padding: 6px 0;
      border-bottom: none;
      white-space: nowrap;
    }

    .nav-links li a:hover {
      color: #daa520;
      text-shadow: 0 0 4px rgba(218, 165, 32, 0.3);
    }

    /* selector de idioma (decorativo) */
    .lang-selector {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(4px);
      border-radius: 40px;
      padding: 6px 12px;
      gap: 8px;
      transition: all 0.2s;
      border: 1px solid rgba(218, 165, 32, 0.5);
      cursor: default;
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .lang-option:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-1px);
    }

    .flag-icon {
      width: 22px;
      height: 16px;
      border-radius: 2px;
      background-size: cover;
      background-position: center;
      display: inline-block;
    }

    .flag-icon-es {
      background-image: url('https://flagcdn.com/es.svg');
    }

    .flag-icon-en {
      background-image: url('https://flagcdn.com/gb.svg');
    }

    /* fallback visual si no cargan las flags (opcional) */
    .lang-text {
      font-size: 0.8rem;
      font-weight: 500;
      color: #ffffff;
    }

    /* --- BOTÓN HAMBURGUESA (solo móvil) --- */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 22px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-left: 1rem;
      z-index: 1010;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2.5px;
      background-color: #f3f3f3;
      border-radius: 2px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* ----- ESTILOS RESPONSIVE (MÓVIL) ----- */
    @media (max-width: 768px) {
      .nav-container {
        height: 70px;
        padding: 0 18px;
      }

      .logo-image {
        height: 44px;
      }

      /* ocultamos texto de idioma en móvil (solo banderas) */
      .lang-text {
        display: none;
      }

      .flag-icon {
        width: 22px;
        height: 16px;
      }

      .lang-selector {
        padding: 4px 10px;
        gap: 6px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        margin-right: 0;
      }

      /* El botón hamburguesa se muestra */
      .menu-toggle {
        display: flex;
      }

      /* Ajustamos el nav-right para colocar selector de idioma + botón */
      .nav-right {
        gap: 1rem;
      }

      /* Menú de navegación: oculto por defecto en móvil */
      .nav-links {
        position: fixed;
        top: 70px; /* igual a la altura del header en móvil */
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1c1e 100%);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1.5rem 0;
        margin: 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.25s ease, visibility 0.25s;
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 24px 24px;
        z-index: 999;
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(218, 165, 32, 0.2);
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .nav-links li a {
        display: block;
        padding: 1rem 1.2rem;
        font-size: 1.2rem;
        font-weight: 500;
        white-space: normal;
        color: #f5f5f5;
        width: 100%;
        transition: background 0.2s;
      }

      .nav-links li a:hover {
        background: rgba(218, 165, 32, 0.15);
        color: #daa520;
      }

      /* Corrección para que el contenido no quede debajo del menú desplegado */
      body.menu-open {
        overflow: hidden;
      }
    }

    /* Para pantallas muy pequeñas (menos de 480px) ajuste fino */
    @media (max-width: 480px) {
      .nav-container {
        padding: 0 12px;
      }
      .logo-image {
        height: 40px;
      }
      .lang-selector {
        padding: 4px 8px;
      }
      .flag-icon {
        width: 20px;
        height: 14px;
      }
      .nav-links li a {
        font-size: 1rem;
        padding: 0.85rem;
      }
    }

    /* Contenido de ejemplo para visualizar el scroll (puedes borrar) */
    .hero-placeholder {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 2rem;
      background: radial-gradient(circle at 20% 30%, #2a2e35, #030507);
      margin-top: 0;
    }
    .hero-placeholder h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #daa520;
    }
    .content-block {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 2rem;
      background: rgba(20, 22, 27, 0.7);
      border-radius: 32px;
      color: #ddd;
      backdrop-filter: blur(4px);
    }
    p {
      margin-bottom: 1rem;
      line-height: 1.5;
    }

/* Hero section */
.hero-section {
  padding-top: 0;
}

/* HERO - Con más espacio entre el menú y el contenido */
.hero {
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.75) 0%, rgba(0, 0, 0, 0.3) 100%), url('img/Hero.jpg');
  background-size: cover;
  background-position: center 30%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-top: 180px; /* AUMENTADO: más espacio debajo del menú. Cambia este valor (160px, 180px, 200px, etc.) */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #f3f3f3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-text h1 span {
  color: #daa520;
  border-bottom: 3px solid #daa520;
  display: inline-block;
}

.hero-slogan {
  font-size: 1.5rem;
  font-weight: 600;
  color: #daa520;
  margin-bottom: 18px;
  background: rgba(28, 28, 28, 0.7);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}

.hero-text p {
  font-size: 1.2rem;
  color: #f3f3f3;
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ----- FORMULARIO HORIZONTAL ----- */
.booking-form {
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 20px 28px;
  border: 1px solid rgba(218, 165, 32, 0.6);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6);
  margin-top: 20px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
  justify-content: space-between;
}

.form-group {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #daa520;
}

.form-group input,
.form-group select {
  background: #f3f3f3;
  border: none;
  padding: 12px 14px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  color: #1c1c1c;
  outline: none;
  transition: 0.2s;
  border: 1px solid transparent;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #daa520;
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.4);
}

.btn-submit {
  background: #daa520;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1c1c1c;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
  margin-top: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover {
  background: #c99414;
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  color: #1c1c1c;
}

.demo-message {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #daa520;
  text-align: center;
  font-weight: 500;
}

/* ----- SECCIÓN DE LOGOS FLOTANTES (DEBAJO DEL FORMULARIO) ----- */
.floating-logos {
  width: 100%;
  margin-top: 32px;
  text-align: center;
}

.logos-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #daa520;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.9;
}

.logos-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.circle-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(218, 165, 32, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  background-color: #2a2a2a;
  display: block;
}

.circle-logo:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #daa520;
  box-shadow: 0 16px 28px rgba(218, 165, 32, 0.2);
}

/* ----- SECCIÓN DE LOGOS DE PARTNERS (5 columnas horizontales, sin adornos) ----- */
.partners-logos-section {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.partners-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #daa520;
  margin-bottom: 24px;
  font-weight: 500;
}

.partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-logo {
  width: auto;
  max-width: 100px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.partner-logo:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 880px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-form {
    border-radius: 32px;
    padding: 20px;
  }
  .btn-submit {
    margin-top: 12px;
    width: 100%;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .hero-slogan {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .nav-container {
    height: 70px;
    padding: 0 20px;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .hero {
    padding-top: 140px; /* Ajuste para móvil: un poco menos de espacio */
  }
}

@media (max-width: 760px) {
  .nav-links {
    gap: 0.9rem;
  }
  .nav-links li a {
    font-size: 0.85rem;
  }
  .lang-text {
    display: none;
  }
  .lang-selector {
    padding: 6px 10px;
  }
  .logo-image {
    height: 42px;
  }
  .hero-container {
    padding: 20px 24px 60px 24px;
  }
  .hero {
    padding-top: 120px; /* Menos espacio en móviles para no desperdiciar pantalla */
  }
  .circle-logo {
    width: 70px;
    height: 70px;
  }
  .logos-flex {
    gap: 25px;
  }
  .partners-grid {
    gap: 10px;
  }
  .partner-logo {
    max-width: 65px;
    max-height: 50px;
  }
  .partners-title {
    font-size: 0.7rem;
  }
  .partners-logos-section {
    margin-top: 36px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 0.7rem;
  }
  .nav-links li a {
    font-size: 0.75rem;
  }
  .hero-container {
    padding: 15px 20px 50px 20px;
  }
  .hero {
    padding-top: 100px;
  }
  .partners-grid {
    gap: 8px;
  }
  .partner-logo {
    max-width: 55px;
    max-height: 45px;
  }
  .partners-logos-section {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .circle-logo {
    width: 60px;
    height: 60px;
  }
  .logos-flex {
    gap: 20px;
  }
  .hero {
    padding-top: 90px;
  }
}

/* Sección flotante con 3 fotos - centrada a 1200px, fondo blanco */
.features-section {
  max-width: 1200px;
  margin: 80px auto;
  background-color: #ffffff;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.features-container {
  padding: 48px 40px 56px 40px;
}

.features-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.features-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  max-width: 650px;
  margin: 0 auto 48px auto;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
}

.feature-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  padding: 0 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .features-section {
    margin: 60px 24px;
  }
  
  .features-container {
    padding: 36px 24px 40px 24px;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  
  .features-grid {
    gap: 24px;
  }
  
  .feature-image {
    height: 180px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-image {
    height: 200px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-section {
    margin: 40px 20px;
  }
  
  .features-container {
    padding: 32px 20px;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .feature-card p {
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .feature-image {
    height: 160px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
}

/* SECCIÓN PRINCIPAL */
.coches-section {
    padding: 3rem 1.5rem;
    background: #ffffff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
}

/* CABECERA */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a3c4f, #2c6280);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.description {
    font-size: 1.1rem;
    color: #5c6f7e;
    max-width: 550px;
    margin: 0 auto;
}

/* 3 OPCIONES DE TIPO (SEDAN, SUV, MINIVAN) - SOLO TEXTO ELEGANTE */
.tipos-opciones {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f8;
}

.tipo-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5a74;
    letter-spacing: 0.3px;
    position: relative;
    cursor: default;
}

.tipo-item::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c7da0;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.tipo-item:hover::after {
    transform: scaleX(1);
}

/* CONTENEDOR DE LAS 3 TARJETAS */
.tarjetas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Enlace que envuelve la tarjeta */
.tarjeta-coche-link {
    text-decoration: none;
    display: block;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: all 0.3s ease;
}

/* TARJETA INDIVIDUAL - SOMBRAS MÁS ELEGANTES */
.tarjeta-coche {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #eef2f8;
    padding: 1.5rem 1.5rem 1.8rem;
    transition: all 0.3s ease;
    /* SOMBRAS MEJORADAS Y MÁS NOTABLES */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
                0 8px 10px -6px rgba(0, 0, 0, 0.02);
    position: relative;
    cursor: pointer;
}

.tarjeta-coche-link:hover .tarjeta-coche {
    transform: translateY(-6px);
    border-color: #dce6f0;
    /* SOMBRA MÁS PROFUNDA AL HOVER */
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(44, 125, 160, 0.05);
}

/* ESPACIO PARA LA IMAGEN DEL COCHE */
.imagen-coche {
    width: 100%;
    margin-bottom: 1.2rem;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f5fa;
}

.coche-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.tarjeta-coche-link:hover .coche-img {
    transform: scale(1.02);
}

/* TÍTULO DEL TIPO */
.categoria-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f4e6e;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
    border-left: 4px solid #2c7da0;
    padding-left: 0.9rem;
}

/* CAPACIDAD CON ESTRELLAS */
.capacidad-estrellas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fbfe;
    padding: 0.5rem 1rem;
    border-radius: 80px;
    width: fit-content;
    margin-bottom: 1rem;
    border: 1px solid #eef3fc;
}

.capacidad-info {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c5a74;
}

.capacidad-info .icono {
    font-size: 1.1rem;
}

.capacidad-info .numero {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a4a64;
    margin-right: 0.1rem;
}

.separador {
    font-size: 1rem;
    color: #c0a56b;
    letter-spacing: 1px;
}

/* LISTA DE MODELOS */
.modelos-lista {
    background-color: #fafdff;
    border: 1px solid #ecf3f9;
    border-radius: 20px;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    color: #2f4f6b;
    line-height: 1.45;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ETIQUETA DE CLASE */
.etiqueta-clase {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #5f7f96;
    background: #f0f5fa;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .tarjetas-container {
        gap: 1.5rem;
    }
    
    .tarjeta-coche-link {
        min-width: 260px;
    }
}

@media (max-width: 700px) {
    .coches-section {
        padding: 2rem 1rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .tipos-opciones {
        gap: 1.5rem;
    }
    
    .tipo-item {
        font-size: 1rem;
    }
    
    .tarjetas-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tarjeta-coche-link {
        max-width: 100%;
        width: 100%;
    }
    
    .categoria-titulo {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .capacidad-estrellas {
        gap: 0.5rem;
        padding: 0.4rem 0.9rem;
    }
    
    .modelos-lista {
        font-size: 0.85rem;
    }
    
    .tipos-opciones {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* SECCIÓN DE TOURS */
.tours-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
    font-family: system-ui, 'Inter', 'Segoe UI', sans-serif;
}

.tours-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

/* CABECERA */
.tours-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tours-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a3c4f, #2c6280);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.tours-header p {
    font-size: 1.1rem;
    color: #5c6f7e;
    max-width: 550px;
    margin: 0 auto;
}

/* CARRUSEL WRAPPER */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-container {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

/* TARJETA DE TOUR */
.tour-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

/* IMAGEN DE PORTADA */
.tour-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0.5;
    transition: opacity 0.3s;
}

.tour-card:hover .tour-overlay {
    opacity: 0.7;
}

/* INFORMACIÓN DE LA TARJETA */
.tour-info {
    padding: 1.2rem 1.2rem 1.5rem;
    background: #ffffff;
}

.tour-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f4e6e;
    margin-bottom: 0.25rem;
    letter-spacing: -0.3px;
}

.tour-location {
    font-size: 0.9rem;
    color: #2c7da0;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-features {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #5c6f7e;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* BOTONES DE NAVEGACIÓN */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1f4e6e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1f4e6e;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

/* INDICADORES (DOTS) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    width: 28px;
    border-radius: 20px;
    background: #2c7da0;
}

.dot:hover {
    background: #2c7da0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .tour-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .carousel-container {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .tours-section {
        padding: 2rem 1rem;
    }
    
    .tours-header h2 {
        font-size: 2rem;
    }
    
    .tour-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-container {
        gap: 16px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* SECCIÓN DE CONTACTO - FONDO #1c1c1c */
.contacto-section {
    padding: 5rem 1.5rem;
    background: #1c1c1c;
    font-family: system-ui, 'Inter', 'Segoe UI', sans-serif;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* CABECERA */
.contacto-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contacto-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contacto-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 550px;
    margin: 0 auto;
}

/* GRID DE DOS COLUMNAS */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* FORMULARIO */
.contacto-formulario {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto-formulario:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.contacto-formulario h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-left: 4px solid #25D366;
    padding-left: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 0.95rem;
    color: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group select {
    cursor: pointer;
    color: #ffffff;
}

.form-group select option {
    background: #2a2a2a;
    color: #ffffff;
}

.btn-enviar {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(37, 211, 102, 0.3);
}

/* INFORMACIÓN DE CONTACTO */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* BOTÓN DE WHATSAPP GRANDE */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-text {
    flex: 1;
    text-align: center;
}

.whatsapp-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.whatsapp-number {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-arrow {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.8;
}

/* BOTÓN DE LLAMADA */
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.2s ease;
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* MENSAJE DE ÉXITO */
.success-message {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    color: #25D366;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacto-section {
        padding: 3rem 1.2rem;
    }
    
    .contacto-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .contacto-formulario {
        padding: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 1rem;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-title {
        font-size: 0.9rem;
    }
}

/* SECCIÓN TOURS MACHU PICCHU - FONDO #1c1c1c */
.tours-machupicchu-section {
    padding: 5rem 1.5rem;
    background: #1c1c1c;
    font-family: system-ui, 'Inter', 'Segoe UI', 'Playfair Display', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo sutil */
.tours-machupicchu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(210, 180, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tours-machupicchu-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CABECERA */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4a574;
    background: rgba(212, 165, 116, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1rem;
    color: #a0a0a0;
    max-width: 550px;
    margin: 0 auto;
}

/* GRID DE 3 TARJETAS */
.tours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* TARJETA PREMIUM */
.tour-card-premium {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(145deg, #252525, #1f1f1f);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(2px);
}

.tour-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 165, 116, 0.2);
}

/* IMAGEN AGREGADA */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-premium:hover .card-image img {
    transform: scale(1.08);
}

/* Overlay sutil sobre la imagen */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(31, 31, 31, 0.9), transparent);
    pointer-events: none;
}

/* Fondo sutil dentro de la tarjeta */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(212, 165, 116, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.card-content {
    padding: 1.5rem 1.8rem 2rem;
    position: relative;
    z-index: 2;
}

/* Ícono del tour */
.tour-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Ruta (Origen → Destino) */
.tour-ruta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.ruta-origen {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4a574;
    font-weight: 500;
}

.ruta-flecha {
    font-size: 1rem;
    color: #d4a574;
    opacity: 0.7;
}

.ruta-destino {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 500;
    background: rgba(212, 165, 116, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Título del tour */
.tour-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

/* Detalles del tour */
.tour-detalles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.detalle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #b8b8b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.detalle-icon {
    font-size: 0.9rem;
}

/* Incluye */
.tour-incluye {
    background: rgba(212, 165, 116, 0.08);
    border-left: 3px solid #d4a574;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.tour-incluye p {
    font-size: 0.75rem;
    color: #c0c0c0;
    line-height: 1.5;
}

/* Footer de la tarjeta */
.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-precio {
    display: flex;
    flex-direction: column;
}

.precio-desde {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio-valor {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    line-height: 1;
}

.precio-persona {
    font-size: 0.7rem;
    color: #888;
}

.btn-consultar {
    background: transparent;
    border: 1.5px solid #d4a574;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #d4a574;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-consultar:hover {
    background: #d4a574;
    color: #1c1c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(212, 165, 116, 0.4);
}

/* Decoración esquina */
.card-decoracion {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(212, 165, 116, 0.08) 50%);
    border-radius: 0 0 32px 0;
    pointer-events: none;
    z-index: 1;
}

/* Nota adicional */
.tours-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1rem;
}

.tours-note p {
    font-size: 0.85rem;
    color: #888;
}

.tours-note strong {
    color: #d4a574;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .tours-grid {
        gap: 1.5rem;
    }
    
    .tour-card-premium {
        min-width: 280px;
    }
}

@media (max-width: 850px) {
    .tours-machupicchu-section {
        padding: 3rem 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tours-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .tour-card-premium {
        max-width: 450px;
        width: 100%;
    }
    
    .card-image {
        height: 180px;
    }
}

@media (max-width: 550px) {
    .card-content {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .tour-titulo {
        font-size: 1.3rem;
    }
    
    .precio-valor {
        font-size: 1.5rem;
    }
    
    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-consultar {
        width: 100%;
        text-align: center;
    }
    
    .card-image {
        height: 160px;
    }
}

/* FOOTER - FONDO #1c1c1c */
.footer {
    background: #1c1c1c;
    padding: 3rem 1.5rem 1.5rem;
    font-family: system-ui, 'Inter', 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid principal - 4 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Columnas */
.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a574;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #d4a574;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Texto de empresa */
.footer-logo p {
    font-size: 0.8rem;
    color: #9a9a9a;
    line-height: 1.6;
}

/* Redes Sociales */
.footer-social {
    margin-top: 1rem;
}

.social-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #d4a574;
    display: block;
    margin-bottom: 0.6rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 0.8rem;
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #d4a574;
}

/* Listas de enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d4a574;
}

.text-muted {
    font-size: 0.8rem;
    color: #8a8a8a;
}

/* Contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.contact-icon {
    font-size: 0.9rem;
    min-width: 20px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #d4a574;
}

/* Fila inferior */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #6a6a6a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 550px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-col h4 {
        margin-bottom: 0.8rem;
    }
}








/* SECCIÓN DE PRECIOS */
.prices-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
    font-family: system-ui, 'Inter', sans-serif;
}

.prices-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabecera */
.prices-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.prices-section .badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2c7da0;
    background: rgba(44, 125, 160, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prices-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a3c4f;
    margin-bottom: 0.75rem;
}

.prices-section .section-header p {
    font-size: 1rem;
    color: #5c6f7e;
    max-width: 600px;
    margin: 0 auto;
}

/* Contenedor de la tabla */
.prices-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Tabla de precios */
.prices-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    font-size: 0.85rem;
}

.prices-table thead tr {
    background: linear-gradient(135deg, #1a3c4f, #2c6280);
    color: white;
}

.prices-table th {
    padding: 1rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.prices-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.prices-table th:first-child,
.prices-table td:first-child {
    position: sticky;
    left: 0;
    background: inherit;
}

.prices-table th:first-child {
    background: #1a3c4f;
}

.prices-table th:nth-child(2) {
    text-align: left;
}

.vehicle-col {
    min-width: 90px;
}

.vehicle-capacity {
    font-size: 0.65rem;
    font-weight: normal;
    opacity: 0.8;
    display: block;
}

.prices-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #eef2f8;
    text-align: center;
}

.prices-table td:first-child {
    font-weight: 600;
    color: #1a3c4f;
    text-align: left;
    background: white;
}

.prices-table td:nth-child(2) {
    text-align: left;
    font-weight: 500;
    color: #2c5a74;
}

.price {
    font-weight: 700;
    color: #2c7da0;
    font-size: 0.95rem;
}

.route-detail {
    font-size: 0.7rem;
    color: #8ba0ae;
    font-weight: normal;
    display: block;
}

.highlight-row {
    background: rgba(44, 125, 160, 0.05);
}

.highlight-row td {
    border-bottom-color: rgba(44, 125, 160, 0.15);
}

/* Hover en filas */
.prices-table tbody tr:hover {
    background: rgba(44, 125, 160, 0.08);
    transition: background 0.2s ease;
}

/* Nota */
.prices-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #eef3fc;
    border-radius: 16px;
    border-left: 4px solid #2c7da0;
}

.prices-note p {
    font-size: 0.85rem;
    color: #3a5a6e;
    margin: 0;
}

.prices-note strong {
    color: #1a3c4f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .prices-table th,
    .prices-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .vehicle-col {
        min-width: 70px;
    }
    
    .prices-table th:first-child {
        padding-left: 0.8rem;
    }
    
    .prices-table td:first-child {
        padding-left: 0.8rem;
    }
}

@media (max-width: 700px) {
    .prices-section {
        padding: 2rem 1rem;
    }
    
    .prices-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
    }
    
    .vehicle-capacity {
        display: none;
    }
    
    .price {
        font-size: 0.8rem;
    }
}

@media (max-width: 550px) {
    .prices-table th,
    .prices-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.65rem;
    }
    
    .route-detail {
        display: none;
    }
}