
   .site-container {
    width: 100%;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
  }
  
  /* ========== HEADER ========== */
  .site-header {
    background: #E6004F;
    color: #fff;
    padding: 20px 30px;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .brand {
    display: flex;
    flex-direction: column;
  }
  
  .brand-title {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .brand-sub {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  .site-nav {
    margin-left: auto;
  }
  
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
  }
  
  .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: #fff;
  }
  
  .nav-link:hover {
    color: #FFB400;
  }
  
  .nav-cta {
    margin-left: 15px;
  }
  
/* Contenedor general para aislar subpáginas */
.route-page {
    font-family: 'Poppins', sans-serif;
    background: #F5F5F5; /* mismo fondo que home */
    color: #1A1A1A; /* mismo color de texto */
    line-height: 1.6;
  }
  
  /* TITULOS */
  .route-page h1, .route-page h2, .route-page h3, .route-page h4 {
    color: #1A1A1A;
    font-weight: 700;
  }
  
  .route-page h2, .route-page h3 {
    color: #E6004F; /* color destacado de la home */
  }
  
  /* PÁRRAFOS */
  .route-page p {
    font-size: 1rem;
    color: #1A1A1A;
    margin-bottom: 15px;
  }
  
  /* ENLACES */
  .route-page a {
    color: #E6004F;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .route-page a:hover {
    color: #FFB400;
  }
  
  /* BOTONES */
  .route-page .btn, 
  .route-page .hero-btn, 
  .route-page .cta-btn, 
  .route-page .card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #E6004F; 
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: center;
  }
.route-page .card-btn:hover{
    background: #c0003f;
}
  
  /* Botones principales */
  .route-page .btn-primary, .route-page .hero-btn {
    background: #CAF51D;
    color: #1A1A1A;
  }
  .route-page .btn-primary:hover, .route-page .hero-btn:hover {
    background: #E6004F;
    color: #fff;
    transform: translateY(-4px);
  }
  
  /* Botones secundarios */
  .route-page .btn-secondary, .route-page .cta-btn {
    background: #E6004F;
    color: #fff;
  }
  .route-page .btn-secondary:hover, .route-page .cta-btn:hover {
    background: #FFB400;
    color: #1A1A1A;
    transform: translateY(-4px);
  }
  
  /* CARDS */
  .route-page .cards-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E6004F;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .route-page .card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .route-page .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  }
  .route-page .card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .route-page .card p {
    font-size: 1rem;
    color: #333;
  }
  .route-page .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;  
    border-radius: 15px; 
  }
  .route-page .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
  }
  
/* Redes sociales en las cards */
.social-links {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-start; /* izquierda */
  align-items: center;
}

.social-links a img {
  width: 20px !important;   /* fuerza tamaño */
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  display: inline-block;
}

.social-links a img:hover {
  transform: scale(1.2);
  opacity: 1;
}

  
  /* HERO */
  .route-page .hero-section {
    position: relative;
    background: #FFB400;
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
  }
  
  .route-page .hero-section .hero-title {
    color:#fff;
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  
  .route-page .hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
  }
  .route-page .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .route-page .hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 180, 0, 0.3);
    z-index: 1;
  }
  
  .route-page .hero-content {
    position: relative;
    z-index: 2;
  }
  
  /* ========== RESTAURANT INFO SECTION ========== */
#restaurant-info {
    margin: 60px auto;
    padding: 40px 20px;
    max-width: 1000px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    display: none; /* Oculto hasta que se cargue la info */
  }
  
  #restaurant-info.active {
    display: block;
  }
  
  #restaurant-info h2 {
    font-size: 2rem;
    color: #E6004F;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
  }
  
  #restaurant-info .restaurant-video {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  #restaurant-info video {
    width: 100%;
    display: block;
    margin: 0 auto 25px;
    max-width: 800px;
    height: 450px; /* Fuerza un aspecto horizontal */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover; /* Recorta el exceso para mantener proporción */
  }
  
  
  #restaurant-info p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
  }
  
  #restaurant-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #restaurant-info ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  #restaurant-info ul li strong {
    color: #000;
    font-weight: 600;
  }
  /* Compatibilidad para toggle show/hide (JS usa 'hidden' y 'active') */
.restaurant-info.hidden { display: none; }
.restaurant-info.active { display: block; }

/* Si tienes selector con id, mantenlo coherente también */
#restaurant-info.hidden { display: none; }
#restaurant-info.active { display: block; }

/* Asegúrate de mantener el estilo del video horizontal */
#restaurant-info video {
  width: 100%;
  max-width: 800px;
  height: 450px; /* fuerza aspecto horizontal */
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}

  
  /* MEDIA: VIDEOS, GALERÍA, MAPA */
  .route-page .media {
    display: grid;
    gap: 16px;
    margin: 30px auto;
  }
  .route-page .media img, .route-page .media video {
    width: 100%;
    border-radius: 8px;
  }
  
  /* ITINERARIO */
  .route-page .itinerary ol {
    padding-left: 20px;
    margin-top: 12px;
  }
  .route-page .itinerary li {
    margin-bottom: 10px;
  }
  
  /* TARJETAS DE INFORMACIÓN PRÁCTICA */
  .route-page .practical-info {
    display: grid;
    gap: 14px;
    margin: 30px auto;
  }
  .route-page .info-card {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  }
  
  .site-footer {
    background: #696969;
    text-align: center;
    padding: 20px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* centra horizontal */
    align-items: center;     /* centra vertical */
    text-align: center;
    height: 60px; /* ajusta según el alto que quieras */
      }
      
  
  .site-footer p {
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  
  
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .route-page .hero-title {
      font-size: 2.5rem;
    }
    .route-page .hero-subtitle {
      font-size: 1rem;
    }
    .route-page .media {
      grid-template-columns: 1fr;
    }
    .route-page .practical-info {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .route-page .btn, .route-page .hero-btn, .route-page .cta-btn {
      padding: 0.8rem 1.2rem;
      font-size: 0.95rem;
    }
  }
  