@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}

:root {
  --text-color: #fff;
  --bg-color: #000;
  --bg2-color: #202020;
  --main-color: #2e8b57;
  --secondary-text: #ffffffab;
  --h1-font: 6rem;
  --h2-font: 3rem;
  --p-font: 1rem;
}

h2 {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}

button,
a,
div {
  -webkit-tap-highlight-color: transparent;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  padding: 27px 17%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

header.sticky {
  padding: 12px 17%;
  background: linear-gradient(to bottom, #000, transparent);
}

.logo {
  font-size: 33px;
  font-size: 1.5rem;
  color: var(--text-color);
  font: 700;
}

span {
  color: var(--main-color);
}

.navbar {
  display: flex;
}

.navbar a {
  color: var(--text-color);
  font-size: var(--p-font);
  font-weight: 500;
  margin: 15px 22px;
  transition: all 0.5s ease;
}

.navbar a:hover {
  color: var(--main-color);
}

.h-right {
  display: flex;
  align-items: center;
  display: none;
}

.h-right a:first-child {
  color: var(--text-color);
  font-size: var(--p-font);
  margin-right: 20px;
}

.h-right a {
  vertical-align: middle;
  font-size: 20px;
  color: var(--text-color);
  margin-right: 18px;
  margin-left: 5px;
  transition: all 0.5s ease;
}

.h-right a:hover {
  color: var(--main-color);
  transform: translateY(-3px);
}

#menu-icon {
  color: var(--text-color);
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
  display: none;
  position: relative;
}

section {
  padding: 70px 17% 60px;
}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
    url(../img/Background1.jpg);

  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-text {
  max-width: 492px;
}

.home-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--main-color);
}

.home-text h1 {
  font-size: var(--h1-font);
  /* font-weight: 800; */

  line-height: 1.2;
  margin-bottom: 20px;
}

.title {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.3em;
}

.home-text p {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 30px;
  color: var(--secondary-text);
  /* margin-bottom: 35px; */
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  padding: 13px 40px;
  background-color: var(--main-color);
  color: var(--bg-color);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.feature-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.row-img {
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
}

.row-img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.7s;
}

.row-img img:hover {
  transform: scale(1.2);
}

.feature-content h4 {
  font-size: var(--p-font);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease;
}

.feature-content h4:hover {
  color: var(--main-color);
}

.holiday {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 9rem;
}

.holiday-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.holiday-text h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.holiday-text h2 {
  font-size: var(--h2-font);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.holiday-text p {
  font-size: var(--p-font);
  color: var(--secondary-text);
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 35px;
}

.center-text {
  text-align: center;
}

.center-text h2 {
  font-size: var(--h2-font);
  font-weight: 800;
}

.tour-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  margin-top: 5rem;
}

.tour h2 {
  position: relative;
}

#testimonials h2 {
  position: relative;
}

#testimonials h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--main-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.tour h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--main-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.box {
  position: relative;
}

.box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  will-change: filter;
  display: block;
}

.box .text-container {
  position: absolute;
  left: 25px;
  bottom: 65px;
  text-align: left;
}

.box h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}

.box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.box img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.center-btn {
  text-align: center;
  margin-top: 4rem;
}

.culture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 9rem;
}

.culture img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.culture h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.culture h2 {
  font-size: var(--h2-font);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.culture p {
  font-size: var(--p-font);
  color: var(--secondary-text);
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 35px;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 2rem;

}

.footer-box {
  display: flex;
  flex-direction: column;
}

.footer-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer a {
  color: var(--secondary-text);
  margin-bottom: 0.8rem;
  transition: all 0.5s ease;
}

.footer a:hover {
  translate: translateX(-5px);
  color: var(--text-color);
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--bg2-color);
  color: var(--text-color);
  font-size: 20px;
  border-radius: 50%;
  transition: transform 0.6s;
}
.social a:hover {
  background-color: var(--main-color);
  color: var(--bg-color);
  transform: translateX(-4px);
}

.copyright {
  text-align: center;
  padding: 20px;
  color: var(--secondary-text);
  font-size: 15px;
}

.social-icons {
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 1700px) {
  header {
    padding: 18px 8%;
  }

  header.sticky {
    padding: 7px 8%;
  }
  section {
    padding: 50px 8% 40px;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 14px 5%;
  }

  header.sticky {
    padding: 7px 5%;
  }
  section {
    padding: 45px 5% 35px;
  }

  :root {
    --h1-font: 4.6rem;
    --h2-font: 2.8rem;
    --p-font: 15px;
  }
  /* .home {
    
  } */
}

@media (max-width: 1050px) {
  .feature-content {
    gap: 1.5rem;
  }
  .holiday {
    gap: 3rem;
  }
  .culture {
    gap: 3rem;
  }

  #menu-icon {
    display: block;
  }

  /* social icons menu */

  .h-right {
    display: block;
  }

  .h-right a {
    display: none;
  }

  .social-icons.open {
    width: auto;
    height: auto;
    opacity: 1;
    display: flex;
    position: fixed;
    top: 85%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1002;
  }

  .social-icons a {
    color: var(--secondary-text);
    font-size: var(--p-font);
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
  }

  .social-icons.open a {
    margin: 15px 22px;
    transition: all 0.5s ease;
  }

  .navbar {
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 40px 60px;
    top: 0;
    bottom: 0;
    left: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    transition: all 0.5s ease;
  }

  .navbar a {
    display: block;
    padding: 0;
    margin: 0 0 40px 0;
    color: var(--secondary-text);
    font-size: 2.2rem;
    font-weight: 400;
  }

  .navbar.open {
    left: 0;
  }
}

@media (max-width: 800px) {
  .testimonials {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* figure.snip1157 {
    margin:  10px 0;
  } */

  .holiday {
    display: flex;
    flex-direction: column-reverse;
  }
  .culture {
    display: flex;
    flex-direction: column-reverse;
  }
  .newsletter-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --h1-font: 3rem;
    --h2-font: 2.5rem;
  }
}

@media (max-width: 450px) {
  header {
    padding: 12px 3%;
  }

  header.sticky {
    padding: 7px 3%;
  }
  section {
    padding: 60px 3% 50px;
  }
}

.swiper {
  width: 100%;
  margin: 70px auto 60px auto !important;
  max-width: 1400px;
}

.swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.swiper .center-text {
  margin-bottom: 5rem;
}

.swiper-slide {
  width: calc(50% - 30px) !important;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
}

.testimonial {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  /* background-color: var(--bg2-color); */
  box-sizing: border-box;
}

blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-text);
  margin-bottom: 20px;
}

.author h5 {
  margin: 0;
  font-weight: 700;
  color: var(--main-color);
}

.author span {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

/* Paginación Swiper */
.swiper-pagination {
  margin-top: 25px;
}

/* Fix responsive */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important;
    padding: 25px 20px;
    max-width: none;
  }

  blockquote {
    font-size: 0.95rem;
  }
}

/* .swiper-pagination-bullet {
  opacity: 1 !important;
  background-color: var(--bg2-color) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
} */

/* Glass effect para testimonios */
/* Contenedor de los slides: usar flex para alinear y estirar */
#testimonials .swiper-wrapper {
  display: flex;
  align-items: stretch; /* Estira todos los slides a la misma altura */
}

/* Cada slide debe ser flex y permitir que el contenido crezca */
#testimonials .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto; /* Swiper ajusta la altura */
}

#testimonials .testimonial {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%); */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
}




/* Estado inicial: oculto y desplazado */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Cuando entra en el viewport */
.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}
