: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; }

.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-title { font-family: var(--font-serif); font-size: 36px; font-weight: 400; color: var(--forest-1); 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: 560px; margin: 0 auto; line-height: 1.6; }

.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); }

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

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

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

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

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

.about-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;
}

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

.about-hero-content .container {
  text-align: center;
}

.about-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);
}

.about-hero h1 em {
  font-style: italic; color: #FF5800;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

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

.about-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);
}

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

.about-hero-dot:hover {
  background: rgba(255,255,255,0.6);
}
/* ============================================
       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);
    }
/* ============================================
   STORY SECTION
   ============================================ */
.story-section { padding: 80px 0; background: white; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.story-image {
  border-radius: 16px; overflow: hidden;
  position: relative;
}
.story-image img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform var(--transition-slow);
}
.story-image:hover img { transform: scale(1.02); }
.story-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95); padding: 12px 20px;
  border-radius: 12px; backdrop-filter: blur(8px);
}
.story-image-badge .year {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  color: var(--forest-1); line-height: 1;
}
.story-image-badge .label { font-size: 12px; color: var(--light-gray); }
.story-text h2 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: var(--forest-1); margin-bottom: 20px; line-height: 1.2;
}
.story-text h2 em { font-style: italic; color: var(--forest-3); }
.story-text p {
  text-align: justify; font-size: 14px; color: var(--gray-text); line-height: 1.7;
  margin-bottom: 16px;
}
.story-text .lead {
  font-size: 18px; color: var(--forest-1); font-weight: 500;
  line-height: 1.5; margin-bottom: 20px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  background: linear-gradient(135deg, var(--forest-1), var(--forest-2));
  padding: 100px 0; color: white; text-align: center;
  position: relative; overflow: hidden;
}
.values-section::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--forest-4) 0%, transparent 70%);
  opacity: 0.12;
}
.values-section .section-title { color: white; }
.values-section .section-desc { color: var(--forest-6); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; max-width: 900px; margin: 48px auto 0;
}
.value-item { text-align: center; padding: 24px; }
.value-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.value-item:hover .value-icon {
  background: rgba(255,255,255,0.18); transform: translateY(-3px);
}
.value-item h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.value-item p { font-size: 13px; color: var(--forest-6); line-height: 1.5; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { padding: 80px 0; background: var(--cream); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: white; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--forest-8);
  text-align: center; transition: box-shadow var(--transition-medium);
}
.team-card:hover { box-shadow: 0 8px 24px rgba(13,59,46,0.06); }
.team-img {
  height: 220px; position: relative; overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 20px; }
.team-info h4 { font-size: 16px; font-weight: 500; color: var(--forest-1); margin-bottom: 4px; }
.team-info .role { font-size: 13px; color: var(--forest-3); margin-bottom: 8px; }
.team-info p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-section {
  background: white; padding: 64px 0;
  border-top: 1px solid var(--forest-8);
  border-bottom: 1px solid var(--forest-8);
}
.cert-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.cert-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; background: var(--forest-9);
  border-radius: 12px; border: 1px solid var(--forest-8);
}
.cert-icon { font-size: 24px; }
.cert-text h4 { font-size: 14px; font-weight: 500; color: var(--forest-1); }
.cert-text p { font-size: 12px; color: var(--light-gray); }

 /* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--sand);
  padding: 80px 0;
}

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

.testi-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--forest-8);
  transition: box-shadow var(--transition-medium);
}

.testi-card:hover {
  box-shadow: 0 8px 24px rgba(13,59,46,0.06);
}

.testi-stars {
  color: #f5c518;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--forest-5), var(--forest-4));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-1);
}

.testi-location {
  font-size: 12px;
  color: var(--light-gray);
}

/* ============================================
   BLOG / JOURNAL
   ============================================ */
.blog-section {
  background: white;
  padding: 80px 0;
}

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

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

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(13,59,46,0.06);
}

.blog-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

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

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

.blog-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--forest-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.blog-content {
  padding: 24px;
}

.blog-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-1);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-content h4 {
  color: var(--forest-3);
}

.blog-content p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 11px;
  color: var(--light-gray);
}

/* ============================================
   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) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image img { height: 400px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero h1 { font-size: 42px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .about-hero { height: 60vh; min-height: 400px; }
  .about-hero h1 { font-size: 32px; }
  .about-hero p { font-size: 16px; }
  .about-hero-content { padding: 40px 0; }
  .story-image img { height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { flex-direction: column; gap: 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .tours-grid, .blog-grid, .testi-grid { grid-template-columns: 1fr; }
}