/* ===== NAVBAR OVERRIDE FOR INTERIOR PAGES ===== */
.navbar { background: transparent; box-shadow: none; }
.navbar .nav-links a { color: var(--white); }
.navbar .nav-logo img { filter: brightness(0) invert(1); }
.navbar .btn-nav { border-color: var(--white) !important; color: var(--white) !important; }
.navbar .nav-toggle span { background: var(--white); }

.navbar.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar.scrolled .nav-logo img { filter: none; }
.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .nav-links a:hover { color: var(--terra); }
.navbar.scrolled .btn-nav { border-color: var(--terra) !important; color: var(--terra) !important; }
.navbar.scrolled .btn-nav:hover { background: var(--terra) !important; color: var(--white) !important; }
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ===== INTERIOR HERO ===== */
.int-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.int-hero-bg {
  position: absolute;
  inset: 0;
}
.int-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.int-hero-content {
  position: relative;
  z-index: 2;
}
.back-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
}
.back-link:hover { color: var(--gold); }

.int-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.int-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.int-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.int-hero-content h1 span { color: var(--gold); }
.int-loc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.int-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  width: fit-content;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===== MAIN LAYOUT ===== */
.int-main {
  padding: 4rem 0 6rem;
}
.int-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* ===== BODY SECTIONS ===== */
.int-section {
  margin-bottom: 3rem;
}
.int-section h2 {
  font-size: 1.4rem;
  color: var(--earth);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--cream);
}
.int-section p { margin-bottom: 0.9rem; }

.int-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.int-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--terra);
}
.hi-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.int-highlights li span:last-child { font-size: 0.93rem; color: var(--dark); line-height: 1.5; }

.int-perfil {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.int-perfil p { margin: 0; font-size: 0.95rem; color: var(--dark); }

.int-alert {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(139,69,19,0.08);
  border: 1px solid rgba(139,69,19,0.25);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}
.alert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.int-alert div { font-size: 0.9rem; color: var(--dark); line-height: 1.6; }
.int-alert strong { color: var(--terra); }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.gear-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--light);
  border-radius: var(--radius);
  gap: 0.5rem;
  transition: var(--transition);
}
.gear-item:hover { background: var(--cream); }
.gear-item span { font-size: 1.5rem; }
.gear-item p { font-size: 0.78rem; color: var(--dark); margin: 0; line-height: 1.4; }

.int-post {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: var(--radius);
  align-items: flex-start;
}
.post-icon { font-size: 2rem; flex-shrink: 0; }
.int-post h3 { font-size: 1rem; color: var(--earth); margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 600; }
.int-post p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.post-price { font-size: 0.78rem; font-weight: 600; color: var(--terra); letter-spacing: 0.03em; }

/* ===== SIDEBAR ===== */
.int-sidebar {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-card {
  background: var(--white);
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--earth);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.sidebar-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}
.sidebar-table tr {
  border-bottom: 1px solid var(--light);
}
.sidebar-table td {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  vertical-align: middle;
}
.sidebar-table td:first-child { color: var(--gray); width: 45%; }
.sidebar-table td:last-child { color: var(--dark); font-weight: 500; text-align: right; }
.sidebar-meeting {
  padding: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.sidebar-meeting strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.3rem; }
.sidebar-meeting p { font-size: 0.88rem; color: var(--dark); margin: 0; }

.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--terra);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: var(--terra); color: var(--white); }

.sidebar-nav { padding: 1.5rem; }
.sidebar-route {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--light);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}
.sidebar-route:hover { background: rgba(242,101,34,0.06); }
.sidebar-route:last-child { border-bottom: none; }
.sidebar-route:hover .sr-name { color: var(--terra); }
.sr-code { display: none; }
.sr-name { font-size: 0.83rem; color: var(--dark); flex: 1; line-height: 1.3; }
.sr-dif { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.45rem; border-radius: 20px; flex-shrink: 0; }
.sr-dif.baja { background: rgba(50,150,40,0.85); color: #fff; }
.sr-dif.media { background: rgba(200,80,20,0.85); color: #fff; }

/* ===== ITINERARIO ===== */
.int-itinerary { display: flex; flex-direction: column; gap: 0; margin: 1.25rem 0; border-left: 2px solid var(--orange); padding-left: 0; }
.itin-row { display: flex; gap: 1.25rem; padding: 0.85rem 0 0.85rem 1.5rem; border-bottom: 1px solid var(--light-gray); }
.itin-row:last-child { border-bottom: none; }
.itin-time { font-size: 0.78rem; font-weight: 700; color: var(--orange); min-width: 2.8rem; padding-top: 0.1rem; letter-spacing: 0.04em; }
.itin-content { font-size: 0.92rem; color: var(--dark); line-height: 1.5; }
.itin-content strong { color: var(--black); }
.itin-actor { font-size: 0.78rem; color: var(--gray); margin-left: 0.3rem; }
.itin-note { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 0.15rem; }
.itin-disclaimer { font-size: 0.78rem; color: var(--gray); font-style: italic; margin-top: 0.75rem; }
.int-alert-season { background: rgba(107,124,94,0.08); border-left: 3px solid #6b7c5e; }

/* ===== INCLUDES / EXCLUDES ===== */
.int-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.int-includes, .int-excludes { background: var(--bg); padding: 1.5rem; border-radius: var(--radius); }
.int-includes h3, .int-excludes h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--orange); }
.int-includes ul, .int-excludes ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.int-includes ul li, .int-excludes ul li { font-size: 0.88rem; color: var(--dark); padding-left: 1.2rem; position: relative; }
.int-includes ul li::before { content: '✓'; position: absolute; left: 0; color: #5a8a5a; font-weight: 700; }
.int-excludes ul li::before { content: '✕'; position: absolute; left: 0; color: #c07a7a; font-weight: 700; }

/* ===== ACTORES LOCALES ===== */
.int-actors { display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.actor-card { background: var(--bg); border-radius: 10px; padding: 1.1rem 1.25rem; border-left: 3px solid var(--orange); }
.actor-name { font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 0.2rem; }
.actor-role { font-size: 0.83rem; color: var(--gray); margin-bottom: 0.4rem; }
.actor-detail { font-size: 0.78rem; color: var(--gray); }
.int-extra-actors { margin-top: 1rem; background: var(--bg); padding: 1rem 1.25rem; border-radius: 10px; }
.int-extra-actors h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; }
.int-extra-actors p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ===== TALLERES (B04) ===== */
.int-talleres { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.taller-group { background: var(--bg); padding: 1.1rem 1.25rem; border-radius: 10px; }
.taller-group h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; }
.taller-group p { font-size: 0.85rem; color: var(--dark); line-height: 1.7; }

/* ===== MENÚS (B04) ===== */
.int-menus { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.menu-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.75rem 1rem; background: var(--bg); border-radius: 8px; font-size: 0.85rem; color: var(--dark); line-height: 1.5; }
.menu-num { min-width: 1.5rem; height: 1.5rem; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* ===== COSTEO ===== */
.int-costeo { width: 100%; margin-bottom: 1rem; }
.int-costeo td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.int-costeo .costeo-total td { border-top: 1px solid var(--light-gray); padding-top: 0.75rem; }
.pending-tag { font-size: 0.78rem; color: #a07a20; background: rgba(201,168,76,0.12); padding: 0.15rem 0.5rem; border-radius: 20px; white-space: nowrap; }
.costeo-note { font-size: 0.88rem; color: var(--gray); background: var(--bg); padding: 0.9rem 1.1rem; border-radius: 8px; margin-top: 0.5rem; }
.int-pending { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.int-pending li { position: relative; padding-left: 1.4rem; font-size: 0.95rem; color: var(--gray); }
.int-pending li::before { content: '☐'; position: absolute; left: 0; color: var(--orange); font-size: 1rem; }

/* ===== SECTION DIVIDER ===== */
.int-section h2 {
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.int-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2rem;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== ITINERARY ENHANCED ===== */
.itin-row {
  position: relative;
  padding-left: 1.75rem;
  transition: background 0.2s ease;
  border-radius: 0 8px 8px 0;
}
.itin-row:hover { background: rgba(242,101,34,0.04); }
.itin-time {
  font-size: 0.75rem; font-weight: 800; color: var(--orange);
  min-width: 3rem; padding-top: 0.1rem; letter-spacing: 0.06em;
  background: rgba(242,101,34,0.08); border-radius: 20px;
  padding: 0.15rem 0.5rem; text-align: center; flex-shrink: 0;
  align-self: flex-start; margin-top: 0.1rem;
}

/* ===== ACTOR CARDS ENHANCED ===== */
.int-actors { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; margin: 1rem 0; }
.actor-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.actor-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

/* ===== HIGHLIGHTS ENHANCED ===== */
.int-highlights li {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.int-highlights li:hover { border-color: var(--orange); transform: translateX(4px); }

/* ===== INCLUDES/EXCLUDES ENHANCED ===== */
.int-includes { border-top: 3px solid #5a8a5a; }
.int-excludes { border-top: 3px solid #c07a7a; }

/* ===== SIDEBAR ENHANCED ===== */
.sidebar-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.btn-primary.btn-full, .btn-outline.btn-full {
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .int-grid { grid-template-columns: 1fr; }
  .int-sidebar { position: static; order: 2; }
  .int-stats { padding: 1rem 1.25rem; width: 100%; }
  .stat { padding: 0 1rem; }
  .stat-val { font-size: 1.1rem; }
  .gear-grid { grid-template-columns: repeat(3, 1fr); }
  .int-includes-grid { grid-template-columns: 1fr; }
  .int-talleres { grid-template-columns: 1fr; }
  .int-actors { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .int-hero { padding: 7rem 0 3.5rem; }
  .int-hero-content h1 { font-size: 2rem; }
  .int-stats { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 0.6rem 1rem; width: 50%; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .int-includes-grid { grid-template-columns: 1fr; }
  .int-main { padding: 2.5rem 0 4rem; }
  .int-grid { gap: 2rem; }
  .back-link { font-size: 0.75rem; }
  .itin-row { padding-left: 1rem; }
  .container { padding: 0 1.25rem; }
}
