@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

main {
  background-color: #3b4232;
}

.navbar {
  background-color: #3b4232;
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.logo img {
  width: 120px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.logo img:hover {
  opacity: 0.5;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: opacity 0.3s ease;
}
.nav-links a:hover {
  opacity: 0.5;
}

.active-link {
  opacity: 0.5;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

@media (max-width: 768px) {
  header {
    position: relative;
    z-index: 1;
  }
  .navbar {
    position: relative;
    z-index: 1;
  }
  .navbar-container {
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .logo img {
    width: 100px;
    transition: transform 0.3s ease;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #3b4232;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding-top: 80px;
    margin: 0;
    z-index: 1000;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }
  .nav-links li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .nav-links li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .nav-links li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .nav-links li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .navbar.active .logo img {
    transform: scale(0.95);
  }
}
.slideshow {
  position: relative;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}

.slideshow-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  position: relative;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 16px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-opinions {
  position: relative;
  overflow: hidden;
  padding: 0px 100px;
  min-height: 400px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .carousel-opinions {
    padding: 0px 50px;
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .carousel-opinions {
    padding: 0px 2rem;
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .carousel-opinions {
    padding: 0px 1rem;
    min-height: 450px;
  }
}

.opinion-slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .opinion-slide {
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .opinion-slide {
    padding: 1.5rem 0;
  }
}
.opinion-slide:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .opinion-slide:first-child {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.opinion-text {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  color: white;
  padding: 20px 100px;
}
@media (max-width: 1024px) {
  .opinion-text {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .opinion-text {
    padding: 0 1rem 2rem 1rem;
    text-align: center;
    flex: none;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .opinion-text {
    padding: 0 0.5rem 1.5rem 0.5rem;
  }
}

.opinion-image {
  flex: 1;
  padding: 20px;
}
@media (max-width: 1024px) {
  .opinion-image {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .opinion-image {
    padding: 0 2rem;
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .opinion-image {
    padding: 0 1rem;
    max-width: 250px;
  }
}
.opinion-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .opinion-image img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .opinion-image img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .opinion-image img {
    height: 180px;
  }
}

.opinion-prev, .opinion-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 768px) {
  .opinion-prev, .opinion-next {
    padding: 12px;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .opinion-prev, .opinion-next {
    padding: 10px;
    font-size: 1rem;
  }
}

.opinion-prev {
  left: 10px;
}
@media (max-width: 768px) {
  .opinion-prev {
    left: 5px;
  }
}

.opinion-next {
  right: 10px;
}
@media (max-width: 768px) {
  .opinion-next {
    right: 5px;
  }
}

.opinion-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .opinion-quote {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .opinion-quote {
    font-size: 1.1rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .opinion-quote {
    font-size: 1rem;
    line-height: 1.4;
  }
}

.opinion-author {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 1024px) {
  .opinion-author {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .opinion-author {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .opinion-author {
    font-size: 0.85rem;
  }
}

.index-front {
  height: 70vh;
  background-image: url("../../media/imgs/frontImage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.index-front .index-front-image {
  width: 100%;
  text-align: right;
}
.index-front .index-front-slogan {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgb(0, 0, 0);
  margin: 0;
}
@media (max-width: 1024px) {
  .index-front .index-front-slogan {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .index-front .index-front-slogan {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .index-front .index-front-slogan {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}
@media (max-width: 1024px) {
  .index-front {
    height: 60vh;
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .index-front {
    background-attachment: scroll;
    height: 50vh;
    align-items: center;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .index-front {
    height: 40vh;
  }
}

.index-presentation {
  background-color: #969656;
  margin-top: 100px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .index-presentation {
    margin-top: 50px;
  }
}
.index-presentation .centered-p {
  padding: 70px 500px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1440px) {
  .index-presentation .centered-p {
    padding: 70px 300px;
  }
}
@media (max-width: 1024px) {
  .index-presentation .centered-p {
    padding: 50px 150px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .index-presentation .centered-p {
    padding: 40px 4rem;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-presentation .centered-p {
    padding: 30px 1.5rem;
    font-size: 16px;
    line-height: 1.5;
  }
}
.index-presentation .flex-slides-side-text {
  display: flex;
  align-items: flex-start;
  padding: 0px 200px 50px 200px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .index-presentation .flex-slides-side-text {
    padding: 0px 100px 50px 100px;
  }
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text {
    flex-direction: column;
    padding: 0px 2rem 40px 2rem;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .index-presentation .flex-slides-side-text {
    padding: 0px 1rem 30px 1rem;
    gap: 25px;
  }
}
.index-presentation .flex-slides-side-text .slideshow {
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .slideshow {
    width: 100%;
    order: 1;
  }
}
.index-presentation .flex-slides-side-text .slideshow img {
  max-width: 100%;
  height: auto;
  display: block;
}
.index-presentation .flex-slides-side-text .index-side-text {
  flex: 1;
  text-align: justify;
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text {
    width: 100%;
    order: 2;
    text-align: left;
    background-color: #3b4232;
    padding: 15px 10px 15px 0;
  }
}
.index-presentation .flex-slides-side-text .index-side-text .index-list li {
  font-size: 20px;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
}
@media (max-width: 1024px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list li {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list li {
    font-size: 16px;
    padding-left: 1.2em;
    margin-bottom: 1em;
    line-height: 1.4;
  }
}
.index-presentation .flex-slides-side-text .index-side-text .index-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list li::before {
    font-size: 1em;
  }
}
.index-presentation .flex-slides-side-text .index-side-text .index-list p {
  display: inline;
  font-size: 20px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list p {
    font-size: 16px;
  }
}
.index-presentation .flex-slides-side-text .index-side-text .index-list h2 {
  display: inline;
  font-weight: normal;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list h2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text .index-list h2 {
    font-size: 16px;
    display: block;
    margin-bottom: 0.3em;
    font-weight: 600;
  }
}
.index-presentation .flex-slides-side-text .index-side-text p {
  font-weight: 500;
  font-size: 25px;
}
@media (max-width: 1024px) {
  .index-presentation .flex-slides-side-text .index-side-text p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .index-presentation .flex-slides-side-text .index-side-text p {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .index-presentation .flex-slides-side-text .index-side-text p {
    font-size: 16px;
  }
}

.slideshow {
  position: relative;
  max-width: 100%;
}
.slideshow .slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.slideshow .prev, .slideshow .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .slideshow .prev, .slideshow .next {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .slideshow .prev, .slideshow .next {
    padding: 0.6rem;
    font-size: 1rem;
  }
}
.slideshow .prev {
  left: 10px;
}
.slideshow .next {
  right: 10px;
}

.cabin-presentation {
  background-color: #969656;
  color: #ffffff;
  padding: 30px 60vw 30px 200px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1440px) {
  .cabin-presentation {
    padding: 30px 40vw 30px 150px;
  }
}
@media (max-width: 1024px) {
  .cabin-presentation {
    padding: 30px 30vw 30px 100px;
  }
}
@media (max-width: 768px) {
  .cabin-presentation {
    padding: 25px 2rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .cabin-presentation {
    padding: 20px 1.5rem;
  }
}
.cabin-presentation h1 {
  font-family: "Oswald", sans-serif;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .cabin-presentation h1 {
    font-size: 2rem;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .cabin-presentation h1 {
    font-size: 1.8rem;
  }
}
.cabin-presentation p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-align: justify;
}
@media (max-width: 1024px) {
  .cabin-presentation p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cabin-presentation p {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .cabin-presentation p {
    font-size: 15px;
  }
}

.cabin-details-container {
  display: flex;
  justify-content: center;
  padding: 0px 200px;
}
@media (max-width: 1440px) {
  .cabin-details-container {
    padding: 0px 150px;
  }
}
@media (max-width: 1024px) {
  .cabin-details-container {
    padding: 0px 100px;
  }
}
@media (max-width: 768px) {
  .cabin-details-container {
    padding: 0px 2rem;
  }
}
@media (max-width: 480px) {
  .cabin-details-container {
    padding: 0px 1rem;
  }
}
.cabin-details-container .cabin-details {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  gap: 40px;
}
@media (max-width: 1024px) {
  .cabin-details-container .cabin-details {
    gap: 30px;
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .cabin-details-container .cabin-details {
    gap: 25px;
    padding: 20px 0;
  }
}
.cabin-details-container .cabin-details .detail-list {
  text-align: right;
  padding-left: 300px;
  flex: 1;
}
@media (max-width: 1440px) {
  .cabin-details-container .cabin-details .detail-list {
    padding-left: 200px;
  }
}
@media (max-width: 1024px) {
  .cabin-details-container .cabin-details .detail-list {
    padding-left: 100px;
  }
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details .detail-list {
    padding-left: 0;
    text-align: left;
    width: 100%;
  }
}
.cabin-details-container .cabin-details .detail-list h2 {
  font-family: "Oswald", sans-serif;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details .detail-list h2 {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .cabin-details-container .cabin-details .detail-list h2 {
    font-size: 1.3rem;
  }
}
.cabin-details-container .cabin-details .detail-list ul {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .cabin-details-container .cabin-details .detail-list ul {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cabin-details-container .cabin-details .detail-list ul {
    font-size: 15px;
  }
}
.cabin-details-container .cabin-details .detail-list ul li {
  padding: 10px 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details .detail-list ul li {
    padding: 8px 0;
  }
}
.cabin-details-container .cabin-details .detail-list .precios {
  padding-top: 25px;
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details .detail-list .precios {
    padding-top: 20px;
  }
}
.cabin-details-container .cabin-details .cabin-slides {
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cabin-details-container .cabin-details .cabin-slides {
    width: 100%;
  }
}
.cabin-details-container .cabin-details .cabin-slides img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.provided-services {
  padding: 20px 10vw;
  background-color: #969656;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .provided-services {
    padding: 20px 5vw;
  }
}
@media (max-width: 768px) {
  .provided-services {
    padding: 20px 2rem;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .provided-services {
    padding: 20px 1rem;
    font-size: 15px;
  }
}
.provided-services .services-row {
  padding: 20px 20px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1024px) {
  .provided-services .services-row {
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  .provided-services .services-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  .provided-services .services-row {
    gap: 25px;
  }
}
.provided-services .services-row .services-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
}
@media (max-width: 768px) {
  .provided-services .services-row .services-col {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 100px;
  }
}
@media (max-width: 480px) {
  .provided-services .services-row .services-col {
    flex: 0 1 calc(50% - 25px);
  }
}
.provided-services .services-row .services-col .binoculars {
  transform: scaleY(-1);
}
.provided-services .services-row .services-col .service-icon {
  font-size: 35px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .provided-services .services-row .services-col .service-icon {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .provided-services .services-row .services-col .service-icon {
    font-size: 30px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .provided-services .services-row .services-col .service-icon {
    font-size: 28px;
  }
}
.provided-services .services-row .services-col p {
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .provided-services .services-row .services-col p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .provided-services .services-row .services-col p {
    font-size: 13px;
  }
}

.place-front {
  background-color: #969656;
  color: #ffffff;
}
.place-front .place-front-image {
  background-image: url(../../media/imgs/slide-index1.JPG);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  text-align: center;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .place-front .place-front-image {
    font-size: 36px;
    height: 400px;
    background-attachment: scroll;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .place-front .place-front-image {
    font-size: 28px;
    height: 300px;
  }
}

.place-presentation {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 20px;
  padding: 30px 200px;
}
@media (max-width: 1024px) {
  .place-presentation {
    padding: 30px 100px;
  }
}
@media (max-width: 768px) {
  .place-presentation {
    padding: 20px 2rem;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .place-presentation {
    padding: 20px 1rem;
    font-size: 16px;
  }
}

.activities-container {
  background-color: #969656;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  padding: 20px 400px;
  text-align: justify;
  font-size: 17px;
}
@media (max-width: 1440px) {
  .activities-container {
    padding: 20px 200px;
  }
}
@media (max-width: 1024px) {
  .activities-container {
    padding: 20px 100px;
  }
}
@media (max-width: 768px) {
  .activities-container {
    padding: 20px 2rem;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .activities-container {
    padding: 20px 1rem;
    font-size: 15px;
  }
}
.activities-container h2 {
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .activities-container h2 {
    font-size: 1.5rem;
  }
}
.activities-container .activity {
  background-color: #3b4232;
  margin-top: 20px;
  padding: 15px;
  display: flex;
}
@media (max-width: 768px) {
  .activities-container .activity {
    flex-direction: column;
    padding: 1rem;
  }
}
.activities-container .activity .activity-text {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .activities-container .activity .activity-text {
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.activities-container .activity img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .activities-container .activity img {
    max-width: 100%;
    width: 100%;
  }
}
.activities-container .trails {
  background-color: #3b4232;
  margin-top: 20px;
  padding: 15px;
}
@media (max-width: 768px) {
  .activities-container .trails {
    padding: 1rem;
  }
}
.activities-container .trails .trail-flex {
  display: flex;
  flex-direction: column;
}
.activities-container .trails .trail-flex .trail-presentation {
  padding-bottom: 15px;
}
.activities-container .trails .trail-flex .activity-text {
  padding-right: 15px;
}
@media (max-width: 768px) {
  .activities-container .trails .trail-flex .activity-text {
    padding-right: 0;
  }
}
.activities-container .trails .trail-flex h3 {
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .activities-container .trails .trail-flex h3 {
    font-size: 1.3rem;
  }
}
.activities-container .trails .trail-flex li {
  padding-bottom: 15px;
}
.activities-container .trails .trail-flex-img {
  display: flex;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .activities-container .trails .trail-flex-img {
    flex-direction: column;
  }
  .activities-container .trails .trail-flex-img:last-child {
    padding-bottom: 0;
  }
}
.activities-container .trails .trail-flex-img img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .activities-container .trails .trail-flex-img img {
    max-width: 100%;
    width: 100%;
    margin-top: 15px;
  }
}
.activities-container .trails .activity-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .activity, .trails {
    margin-top: 1rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  p, li {
    line-height: 1.5;
  }
  ul {
    padding-left: 1.5rem;
  }
  li {
    margin-bottom: 0.5rem;
  }
}
.main-contacto {
  display: flex;
  justify-content: space-between;
  background-color: #969656;
  min-height: 800px;
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .main-contacto {
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .main-contacto {
    flex-direction: column;
    min-height: auto;
    padding-top: 0;
  }
}

.contact-form {
  padding: 50px;
  width: 700px;
  margin-bottom: 20px;
  background-color: #3b4232;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  flex: 1;
}
@media (max-width: 1024px) {
  .contact-form {
    margin-top: 20px;
    padding: 40px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 2rem;
    font-size: 16px;
    order: 2;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 25px 1.5rem;
    font-size: 15px;
  }
}
.contact-form h4 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .contact-form h4 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .contact-form h4 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .contact-form h4 {
    font-size: 24px;
  }
}
.contact-form .contact-line {
  margin: 10px 0;
}
@media (max-width: 768px) {
  .contact-form .contact-line {
    margin: 8px 0;
  }
}
.contact-form input {
  padding: 10px 100px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .contact-form input {
    padding: 10px 80px;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .contact-form input {
    padding: 10px 15px;
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-form input {
    padding: 8px 12px;
  }
}
.contact-form textarea {
  padding: 10px 114px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  resize: vertical;
}
@media (max-width: 1024px) {
  .contact-form textarea {
    padding: 10px 80px;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .contact-form textarea {
    padding: 10px 15px;
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-form textarea {
    padding: 8px 12px;
  }
}
.contact-form button {
  display: inline-block;
  background: linear-gradient(225deg, hsl(132deg, 100%, 47%) 31%, hsl(129deg, 99%, 29%) 81%);
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  color: #ffffff;
  border: none;
  padding: 10px 50px;
  border-radius: 5px;
  margin: 0 30px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.contact-form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .contact-form button {
    font-size: 25px;
    padding: 10px 40px;
  }
}
@media (max-width: 768px) {
  .contact-form button {
    font-size: 22px;
    padding: 12px 35px;
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .contact-form button {
    font-size: 20px;
    padding: 10px 30px;
  }
}
.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-form label {
    font-size: 16px;
  }
}

.map-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .map-container {
    padding: 2rem;
    order: 1;
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .map-container {
    padding: 1.5rem;
    min-height: 300px;
  }
}

iframe {
  margin-right: 50px;
  width: 1000px;
  height: 659px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1440px) {
  iframe {
    width: 800px;
    height: 500px;
    margin-right: 30px;
  }
}
@media (max-width: 1024px) {
  iframe {
    width: 600px;
    height: 400px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  iframe {
    width: 100%;
    height: 350px;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-form div {
    margin-bottom: 1rem;
  }
  input, textarea {
    box-sizing: border-box;
  }
}
footer {
  background-color: black;
  color: #ffffff;
  padding: 3rem 0;
}
footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
  }
}
@media (max-width: 480px) {
  footer .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
}
footer .footer-column {
  flex: 1;
  flex-direction: column;
}
@media (max-width: 768px) {
  footer .footer-column {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  footer .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
}
footer .footer-column h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #969656;
}
@media (max-width: 480px) {
  footer .footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
footer .footer-column ul {
  list-style: none;
  padding: 0;
}
footer .footer-column ul li {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 480px) {
  footer .footer-column ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }
}
footer .footer-column a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
footer .footer-column a:hover {
  opacity: 0.7;
}
footer .social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}
footer .social-links a:hover {
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  footer .footer-column:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
