.transfer-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 18px;
}

.transfer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.transfer-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.transfer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.transfer-image {
  height: 260px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f4f4f4;
}

.transfer-content {
  padding: 30px;
  text-align: center;
}

.transfer-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.transfer-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 16px;
  color: #444;
}

.transfer-prices li {
  margin-bottom: 10px;
}

.other-destinations {
  color: #e60000;
  font-weight: 600;
  margin-bottom: 25px;
}

.transfer-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0d47a1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.transfer-btn:hover {
  background: #08306b;
}



/*seccion de los animales*/
.experience-section {
  padding: 60px 20px;
  background: #ffffff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.experience-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.experience-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.experience-content {
  position: relative;
  color: #fff;
  padding: 25px;
  z-index: 2;
}

.experience-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.experience-content p {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
  opacity: 0.95;
}

.experience-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #00a86b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.experience-btn:hover {
  background: #007a4d;
}

@media (max-width: 768px) {

  .experience-section {
    padding: 40px 15px;
  }

  .experience-grid {
    gap: 20px;
  }

  .experience-card {
    min-height: 340px;
  }

  .experience-image {
    min-height: 340px;
  }

  .experience-content {
    padding: 20px;
  }

  .experience-content h3 {
    font-size: 20px;
  }

  .experience-content p {
    font-size: 13px;
  }

  .experience-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .experience-card {
    border-radius: 16px;
  }

  .overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.2)
    );
  }

}
/*seccion delos anamles*/