/* ==========================
   ESTILO PRINCIPAL
============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #f8f5eb;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}
.header h1 {
  color: #2d6a4f;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Marko One", sans-serif;
  font: size 1.9em;
  margin-bottom: 8px;
}
.header p {
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sección Intro Minimalista */
.intro {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f5eb;
  overflow: hidden;
  padding: 40px 0;
}
.intro-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}
.intro-icon {
  font-size: 4rem;
  color: #2d6a4f;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}
.intro-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2d6a4f;
  line-height: 1.1;
}
.intro-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Elementos decorativos */
.intro-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  z-index: 1;
}
.decoration-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}
.decoration-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}
.decoration-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  background: rgba(82, 183, 136, 0.1);
}

/* Botón intro-boton */
.intro-boton {
  display: inline-block;
  padding: 16px 40px;
  background: #7b6f58;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}
.intro-boton:hover {
  background: #7b6f58;
  transform: translateY(-3px);
}

/* Elementos decorativos */
.intro-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  z-index: 1;
}
.decoration-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}
.decoration-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}
.decoration-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  background: rgba(82, 183, 136, 0.1);
}

/* ==========================
   DESTINOS
============================= */
.destinos-grid {
  display: grid;
  scroll-behavior: smooth;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.destino-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 450px;
}
.destino-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.destino-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destino-card:hover .destino-image {
  transform: scale(1.1);
}
.destino-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6),
    transparent
  );
  color: white;
}
.destino-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

/* ==========================
   GALERIA DE TOURS
   ============================= */

.gallery-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 20px 0;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding-bottom: 20px;
}
.tour-card {
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
  transition: all 0.5s ease;
  opacity: 0.7;
  transform: scale(0.95);
}
.tour-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.tour-card:hover {
  transform: scale(1.02);
}
.tour-card.active:hover {
  transform: scale(1.05);
}
.tour-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.virtual-tour-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #b99119;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.virtual-tour-btn:hover {
  background-color: #977614;
}
.tour-content {
  padding: 18px;
}
.tour-title {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Marko One", sans-serif;
  color: #64452a;
  margin-bottom: 8px;
}
.tour-location {
  display: flex;
  align-items: center;
  color: #666;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}
.tour-location i {
  margin-right: 6px;
  color: #298f6d;
}
.activity-type {
  display: flex;
  align-items: center;
  color: #666;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  margin-bottom: 12px;
}
.activity-type i {
  margin-right: 6px;
  color: #298f6d;
}
.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.price {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #b99119;
}
.accessibility-badge {
  background-color: #b99119;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  display: inline-flex;
  align-items: center;
}
.accessibility-badge i {
  margin-right: 5px;
}
.quick-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
}
.info-item {
  display: flex;
  align-items: center;
}
.info-item i {
  margin-right: 5px;
  color: #666;
}
.btn-details {
  background-color: transparent;
  color: #2d6a4f;
  border: 2px solid #2d6a4f;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  margin-bottom: 8px;
}
.btn-details:hover {
  background-color: #2d6a4f;
  color: white;
}
.btn-reservation {
  background-color: #2d6a4f;
  color: white;
  border: 2px solid #2d6a4f;
}
.btn-reservation:hover {
  background-color: #1e5128;
  border-color: #1e5128;
}

.nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}
.nav-btn {
  background-color: #b99119;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0;
}
.nav-btn:hover:not(:disabled) {
  background-color: #876b15;
}
.nav-btn:disabled {
  background-color: #e5e0e0;
  cursor: not-allowed;
}
.progress-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e5e0e0;
  margin: 0;
  transition: background-color 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.progress-dot.active {
  background-color: #b99119;
  border-color: #b99119;
}

/* ==========================
   IMPACT SECTION
   ============================= */
/* ==========================
           IMPACT SECTION
           ============================= */
.impact-section {
  padding: 100px 0;
  background: #298f6d;
  text-align: center;
  z-index: 2;
  border-top: 1px solid #2d6a4f;
  border-bottom: 1px solid #2d6a4f;
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.impact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.05);
  z-index: -1;
}

.impact-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(100, 69, 42, 0.05);
  z-index: -1;
}

.impact-section h2 {
  font-size: 3rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "Marko One", sans-serif;
  color: white;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

/* Subrayado decorativo para el título */
.impact-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #64452a, transparent);
  border-radius: 2px;
}

.impact-section p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  justify-content: center;
  color: white;
  font-family: "Poppins", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.impact-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  min-width: 200px;
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Barra superior animada */
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2d6a4f, #64452a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
  color: #2d6a4f;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2);
  opacity: 1;
  color: #64452a;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: #64452a;
  transform: scale(1.1);
}

.stat-number::after {
  content: "%";
  position: absolute;
  top: 10px;
  color: #2d6a4f;
  right: -30px;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number::after {
  color: #64452a;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
  max-width: 200px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: #333;
}

/* Animación de entrada mejorada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Retrasos escalonados para animación */
.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.6s;
}
/* ==========================
   COMPARACION SECTION
   ============================= */
.comparison-section h2 {
  font-size: 3rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "Marko One", sans-serif;
  color: #2d6a4f;
  line-height: 1.1;
}

.comparison-section p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  justify-content: center;
  color: #4d4848;
  font-family: "Poppins", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-section {
  padding: 100px 0;
  background: #f8f5eb;
  text-align: center;
  border-bottom: 1px solid #808008;
  border-top: 1px solid #808008;
  z-index: 2;
}
.comparison-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
}
.comparison-column {
  flex: 1;
  padding: 40px;
  border-radius: 15px;
  position: relative;
}
.eco-tours {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
  color: white;
}
.regular-tours {
  background: white;
  color: #64452a;
}
.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}
.comparison-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.comparison-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.comparison-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 400;
  color: white;
}
.comparison-list {
  list-style: none;
}
.comparison-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.comparison-item i {
  margin-right: 15px;
  font-size: 1.2rem;
}
.eco-tours .comparison-item i {
  color: #a7e1c1;
}
.regular-tours .comparison-item i {
  color: #d62828;
}
/* ==========================
   JOURNEY SECTION
   ============================= */
.journey-section h2 {
  font-size: 3rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "Marko One", sans-serif;
  color: #64452a;
  line-height: 1.1;
}

.journey-section p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  justify-content: center;
  color: #666;
  font-family: "Poppins", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.journey-section {
  padding: 100px 0;
  background: white;
  text-align: center;
  z-index: 2;
}
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2d6a4f, #52b788);
  transform: translateX(-50%);
}
.journey-item {
  position: relative;
  margin-bottom: 50px;
}
.journey-item:nth-child(odd) .journey-content {
  margin-left: 0;
  margin-right: 55%;
  text-align: right;
}
.journey-item:nth-child(even) .journey-content {
  margin-left: 55%;
  margin-right: 0;
}
.journey-point {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #2d6a4f;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 5px solid white;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.2);
  transition: all 0.3s ease;
}
.journey-item:hover .journey-point {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(45, 106, 79, 0.3);
}
.journey-content {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(31, 30, 30, 0.05);
  transition: all 0.3s ease;
}
.journey-item:hover .journey-content {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.journey-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #7b6f58;
  margin-bottom: 10px;
}
.journey-description {
  color: #555;
  font-weight: 400;
}
/* ==========================
   PANAMA SECTION
   ============================= */
.panama-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b6f58 0%, #918369 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #64452a;
  border-top: 1px solid #64452a;
}

/* Elementos decorativos de fondo */
.panama-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.panama-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.panama-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.panama-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Marko One", sans-serif;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Subrayado decorativo para el título */
.panama-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  border-radius: 2px;
}

.panama-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
  font-family: "Poppins", sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.panama-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.panama-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Efecto de onda al hacer hover */
.panama-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.panama-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.panama-card:hover::before {
  opacity: 1;
}

.panama-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.panama-card:hover .panama-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.panama-icon {
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.panama-card:hover .panama-icon {
  transform: scale(1.2);
}

.panama-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Marko One", sans-serif;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.panama-card:hover .panama-card-title {
  transform: translateY(-5px);
}

.panama-card-description {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.panama-card:hover .panama-card-description {
  opacity: 1;
}
.panama-card:nth-child(1) {
  animation-delay: 0.2s;
}

.panama-card:nth-child(2) {
  animation-delay: 0.4s;
}

.panama-card:nth-child(3) {
  animation-delay: 0.6s;
}

@media (max-width: 768px) {
  .impact-section h2,
  .panama-title {
    font-size: 2.5rem;
  }

  .impact-section p,
  .panama-subtitle {
    font-size: 1.1rem;
  }

  .impact-stats,
  .panama-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-item,
  .panama-card {
    max-width: 100%;
  }

  .panama-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .panama-card {
    padding: 30px 20px;
  }
}
/* ==========================
   MODAL DE TOURS
   ============================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background-color: #77592c;
  color: white;
  padding: 20px;
  position: relative;
}

.modal-header h2 {
  font-family: "Marko One", sans-serif;
  margin: 0;
  font-size: 1.8rem;
}

.modal-header p {
  margin: 8px 0 0 0;
  opacity: 0.9;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.close:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 25px;
}

.modal-section {
  margin-bottom: 25px;
}

.modal-section h3 {
  color: #2d6a4f;
  font-family: "Marko One", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #bc8a5f;
  padding-bottom: 8px;
}

.modal-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f8f5eb;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  color: #2d6a4f;
  font-size: 1.2rem;
}

.price-info {
  background-color: #f8f5eb;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #9b753d;
}

.price-info .price {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.modal-footer {
  padding: 20px 25px;
  background-color: #f8f5eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-planificar {
  background-color: #9b753d;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-planificar:hover {
  background-color: #77592c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.modal-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Media Queries */
@media (max-width: 992px) {
  .tour-card {
    min-width: 280px;
    max-width: 320px;
  }

  .modal-content {
    width: 95%;
    margin: 15% auto;
  }
}

@media (max-width: 768px) {
  .tour-card {
    min-width: 260px;
    max-width: 300px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .progress-dot {
    width: 10px;
    height: 10px;
  }

  .modal-content {
    width: 98%;
    margin: 20% auto;
  }

  .benefits-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .modal-footer {
    flex-direction: column;
    gap: 15px;
  }

  .btn-planificar {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .tour-card {
    min-width: 240px;
    max-width: 280px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .progress-dot {
    width: 8px;
    height: 8px;
  }

  .nav-controls {
    gap: 10px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-footer {
    padding: 15px;
  }
}

/* ==========================
   CTA SECTION
   ============================= */
.cta-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Marko One", sans-serif;
  color: #2d6a4f;
}
.cta-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #555;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.reservation-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #7b6f58;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}

