/* ============================================
   SISTEMA DE DISEÑO — AMAZON TOURS PERU
   ============================================ */
   :root {
  --forest-1: #4C572D;
  --forest-2: #1a5c48;
  --forest-3: #FF5800;
  --forest-4: #515C35;
  --forest-5: #515C35;
  --forest-6: #a8e9c8;
  --forest-7: #d4f5e0;
  --sand: #e8faf0;
  --sand: #f4fdf7;
  --cream: #faf9f6;
  --sand: #f5f3ee;
  --charcoal: #1a1a1a;
  --gray-text: #555555;
  --light-gray: #888888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.3s ease-out;
  --transition-slow: 0.6s ease-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.btn-whatsapp {
	display:block;
	width:70px;
	height:70px;
	color#fff;
	position: fixed;
	right:20px;
	bottom:100px;
	border-radius:50%;
	line-height:80px;
	text-align:center;
	z-index:999;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #C0CAA7;
  padding: 20px 0;
  transition: box-shadow var(--transition-fast);
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: var(--forest-1); }
.nav-logo-icon { width: 32px; height: 32px; background: var(--forest-4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-text); position: relative; padding-bottom: 4px; transition: color var(--transition-fast); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--forest-3); transition: width var(--transition-medium); }
.nav-links a:hover { color: var(--forest-1); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--forest-3); color: white; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 500; border: none; cursor: pointer; transition: background var(--transition-fast); }
.nav-cta:hover { background: var(--forest-2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest-1); }

/* ============================================
   MENÚ MULTINIVEL — DROPDOWN DESKTOP
   ============================================ */
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(13,59,46,0.12);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
  margin-top: 8px;
  border: 1px solid var(--sand);
}
.nav-links > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--sand);
  color: var(--forest-1);
  border-left-color: var(--forest-4);
  padding-left: 24px;
}
.dropdown li a strong {
  display: block;
  color: var(--forest-1);
  font-weight: 500;
  margin-bottom: 2px;
}
.dropdown li a span {
  display: block;
  font-size: 11px;
  color: var(--light-gray);
}

/* ============================================
   MENÚ MÓVIL — ACORDEÓN
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 25px; left: 0;
  width: 100%; height: 100vh;
  background: white;
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  padding: 80px 50px 40px;
}
.mobile-menu.active { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest-1);
  z-index: 10;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--sand);
}
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest-1);
  cursor: pointer;
  text-align: left;
}
.mobile-accordion-trigger .mobile-arrow {
  font-size: 14px;
  color: var(--forest-4);
  transition: transform 0.25s;
}
.mobile-accordion-trigger.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 16px;
}
.mobile-accordion-panel.open {
  padding-bottom: 8px;
}

.mobile-accordion-panel a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--gray-text);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: color 0.15s;
}
.mobile-accordion-panel a:last-child { border-bottom: none; }
.mobile-accordion-panel a:hover { color: var(--forest-1); }
.mobile-accordion-panel a strong {
  display: block;
  color: var(--forest-1);
  font-weight: 500;
  margin-bottom: 2px;
}
.mobile-accordion-panel a span {
  display: block;
  font-size: 12px;
  color: var(--light-gray);
}

.mobile-menu > a.mobile-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest-1);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}

.mobile-menu-cta {
  margin-top: 24px;
  width: 100%;
  background: var(--forest-3);
  color: white;
  padding: 16px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-cta:hover { background: var(--forest-2); }

/* ============================================
   TOUR HERO CON CAROUSEL DE IMÁGENES
   ============================================ */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.tour-hero-carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.tour-hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.tour-hero-slide.active { opacity: 1; }

.tour-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
	180deg,
	rgba(13, 59, 46, 0.1) 0%,
	rgba(13, 59, 46, 0.3) 50%,
	rgba(13, 59, 46, 0.5) 100%
  );
  z-index: 1;
}

.tour-hero-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 60px 0;
  z-index: 2;
}

.tour-breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-breadcrumb a { color: white; opacity: 0.7; transition: opacity var(--transition-fast); }
.tour-breadcrumb a:hover { opacity: 1; }
.tour-breadcrumb span { opacity: 0.5; }

.tour-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.tour-hero h1 em { font-style: italic; color: #FF5800; }

.tour-hero-meta {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.tour-hero-meta span { display: flex; align-items: center; gap: 6px; }

/* Carousel dots */
.tour-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.tour-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tour-hero-dot.active {
  background: var(--forest-5);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.2);
}

.tour-hero-dot:hover {
  background: rgba(255,255,255,0.6);
}

/* ============================================
   TOUR INFO BAR
   ============================================ */
.tour-info-bar {
  background: white;
  border-bottom: 1px solid var(--sand);
  padding: 40px 0;
  
  top: 72px;
  z-index: 100;
}
.tour-info-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-info-bar-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tour-info-bar-price .from { font-size: 13px; color: var(--light-gray); }
.tour-info-bar-price .price { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--forest-1); }
.tour-info-bar-price .per { font-size: 13px; color: var(--light-gray); }
.tour-info-bar-btn {
  background: var(--forest-3);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
}
.tour-info-bar-btn:hover { background: var(--forest-2); transform: translateY(-1px); }

/* ============================================
   TOUR CONTENT
   ============================================ */
.tour-content { padding: 64px 0; }
.tour-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.tour-main h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--forest-1);
  margin-bottom: 20px;
}
.tour-main h2 em { font-style: italic; color: var(--forest-3); }
.tour-main p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tour-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--sand);
  border-radius: 12px;
  border: 1px solid var(--sand);
}
.highlight-icon {
  width: 36px; height: 36px;
  background: var(--sand);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.highlight-text h4 { font-size: 14px; font-weight: 500; color: var(--forest-1); margin-bottom: 2px; }
.highlight-text p { font-size: 12px; color: var(--light-gray); margin: 0; line-height: 1.4; }

.itinerary { margin: 48px 0; }
.itinerary-day {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
}
.itinerary-day:last-child { border-bottom: none; }
.day-number {
  width: 48px; height: 48px;
  background: var(--forest-5);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.day-content h4 { font-size: 16px; font-weight: 500; color: var(--forest-1); margin-bottom: 6px; }
.day-content p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin: 0; }

.tour-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
}
.tour-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.tour-gallery img:hover { transform: scale(1.03); }
.tour-gallery .gallery-main { grid-row: 1 / 3; }

.tour-sidebar {
  position: sticky;
  top: 160px;
  align-self: start;
}
.sidebar-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--sand);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest-1);
  margin-bottom: 20px;
}
.sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row .label { color: var(--light-gray); }
.sidebar-row .value { font-weight: 500; color: var(--forest-1); }
.sidebar-btn {
  width: 100%;
  background: var(--forest-3);
  color: white;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
  margin-top: 8px;
}
.sidebar-btn:hover { background: var(--forest-2); }
.sidebar-btn-secondary {
  width: 100%;
  background: transparent;
  color: var(--forest-3);
  padding: 14px;
  border-radius: 50px;
  border: 1.5px solid var(--forest-4);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 12px;
}
.sidebar-btn-secondary:hover { background: var(--sand); }

.includes-list { list-style: none; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-text);
}
.includes-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--forest-3);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================
   EXPERIENCES / TOURS
   ============================================ */
.tours-section {
  background: white;
  padding: 80px 0;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--forest-8);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,59,46,0.08);
}

/* IMAGEN VERTICAL */
.tour-img {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-duration {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--forest-1);
  backdrop-filter: blur(4px);
}

.tour-info {
  padding: 24px;
}

.tour-info h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--forest-1);
  margin-bottom: 8px;
}

.tour-info p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price {
  color: var(--forest-3);
  font-weight: 500;
  font-size: 15px;
}

.tour-link {
  color: var(--forest-4);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.tour-link:hover {
  color: var(--forest-2);
}
/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-4);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.section-tag2 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-9);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--forest-4);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--forest-3);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-desc2 {
  font-size: 16px;
  color: var(--forest-9);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ============================================
   RELATED TOURS
   ============================================ */
.related-section {
  background: var(--sand);
  padding: 80px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,59,46,0.08); }
.related-img { height: 180px; position: relative; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-duration {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.95); padding: 5px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 500; color: var(--forest-1);
}
.related-info { padding: 20px; }
.related-info h4 { font-size: 15px; font-weight: 500; color: var(--forest-1); margin-bottom: 6px; }
.related-info p { font-size: 13px; color: var(--gray-text); margin-bottom: 12px; line-height: 1.5; }
.related-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.related-price { color: var(--forest-3); font-weight: 500; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--forest-4), var(--forest-4));
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--forest-3);
}

.cta-section p {
  font-size: 16px;
  color: white;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--forest-3);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: inline-block;
}

.cta-btn:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,138,110,0.25);
}

.cta-btn:active {
  transform: scale(0.98);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  /*background: var(--charcoal);*/
  background-image: url('../img/odd_background2.png'); 
  color: #aaa;
  padding: 64px 0 32px;
  text-align: center;
}

.footer-brand {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 28px;
  height: 28px;
  background: var(--forest-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: #777;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  margin-bottom: 32px;
  list-style: none;
}

.footer-links a {
  color: #aaa;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tour-content-grid { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .tour-gallery .gallery-main { grid-row: 1 / 2; grid-column: 1 / 3; }
  .tours-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .tour-hero h1 { font-size: 48px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .tour-hero { height: 60vh; min-height: 400px; }
  .tour-hero h1 { font-size: 32px; }
  .tour-hero-content { padding: 40px 0; }
  .tour-info-bar { top: 64px; }
  .tour-info-bar-inner { flex-direction: column; gap: 12px; }
  .tour-highlights { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 160px); }
  .tour-gallery .gallery-main { grid-row: auto; grid-column: auto; }
  .tours-grid, .blog-grid, .testi-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .itinerary-day { gap: 16px; }
}