*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.section-subtitle {
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4a373;
}

.main-header {
  width: 100%;
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #000000;
}
.main-header .nav {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.main-header .nav.scrolled {
  background: rgba(0, 0, 0, 0.5);
  height: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.main-header .nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.main-header .nav__logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.main-header .nav__logo img {
  width: 45px;
}
.main-header .nav__list {
  display: none;
}
@media (min-width: 768px) {
  .main-header .nav__list {
    display: flex;
    gap: 4rem;
  }
}
.main-header .nav__link {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 6px;
}
.main-header .nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4a373;
  transition: width 0.3s ease;
}
.main-header .nav__link:hover, .main-header .nav__link.active {
  color: #d4a373;
}
.main-header .nav__link:hover::after, .main-header .nav__link.active::after {
  width: 100%;
}
.main-header .nav__lang {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .main-header .nav__lang {
    justify-content: center;
    margin-top: 1rem;
  }
}
.main-header .nav__lang a {
  transition: color 0.3s ease;
}
.main-header .nav__lang a:hover, .main-header .nav__lang a.active {
  color: #d4a373;
}
.main-header .nav__lang span {
  color: rgba(255, 255, 255, 0.4);
}
.main-header .nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 2000;
}
@media (min-width: 768px) {
  .main-header .nav__toggle {
    display: none;
  }
}
.main-header .nav__toggle .nav__burger {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
}
.main-header .nav__toggle .nav__burger::before, .main-header .nav__toggle .nav__burger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  left: 0;
  transition: transform 0.3s ease;
}
.main-header .nav__toggle .nav__burger::before {
  top: -8px;
}
.main-header .nav__toggle .nav__burger::after {
  top: 8px;
}
.main-header .nav__toggle.is-active .nav__burger {
  background-color: transparent;
}
.main-header .nav__toggle.is-active .nav__burger::before {
  transform: translateY(8px) rotate(45deg);
}
.main-header .nav__toggle.is-active .nav__burger::after {
  transform: translateY(-8px) rotate(-45deg);
}
.main-header .hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  z-index: 10;
}
.main-header .hero__content {
  max-width: 800px;
  padding: 0 2rem;
}
.main-header .hero__badge {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  letter-spacing: 2px;
}
.main-header .hero__title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 3rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main-header .hero__title span {
  display: block;
  font-size: 1.2em;
}
@media (min-width: 768px) {
  .main-header .hero__title {
    font-size: 6.5rem;
  }
}
.main-header .hero__dots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
.main-header .hero__dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.main-header .hero__dots .dot.active {
  background-color: #d4a373;
  transform: scale(1.3);
}

.hero__video-container {
  position: absolute;
  inset: 0;
  height: 600px;
  background-color: #000000;
  background: #000000;
  background-image: url("../img/hero-malintzin.jpg");
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
  z-index: 0;
}
.hero__video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}
.hero__video.active {
  opacity: 1;
  z-index: 2;
}

@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 400px;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease ease-in-out;
    z-index: 1500;
  }
  .nav__menu.show-menu {
    top: 0;
  }
  .nav__menu .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
  }
  .nav__menu .nav__link {
    font-size: 1.5rem;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

.section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}

.main-footer {
  background: linear-gradient(to bottom, #111111, #050505);
  color: #ffffff;
  padding: 4rem 0 2rem;
  font-family: "Poppins", sans-serif;
}
.main-footer .footer-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .main-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
    text-align: left;
  }
}
.main-footer .footer-label {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .main-footer .footer-label {
    display: block;
  }
}
.main-footer .footer-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #d4a373;
}
@media (min-width: 768px) {
  .main-footer .footer-label::after {
    left: 0;
    transform: none;
  }
}
.main-footer .footer-info p.mt-2, .main-footer .footer-contact p.mt-2 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-footer .footer-info address, .main-footer .footer-contact address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.main-footer .footer-link {
  display: inline-block;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, transform 0.3s ease;
}
.main-footer .footer-link:hover {
  color: #00a8cc;
}
@media (max-width: 767px) {
  .main-footer .footer-link:hover {
    transform: translateY(-3px);
  }
}
@media (min-width: 768px) {
  .main-footer .footer-link:hover {
    transform: translateX(5px);
  }
}
.main-footer .footer-link--alt {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.main-footer .footer-link--alt:hover {
  color: #ffffff;
  border-bottom: 1px solid #d4a373;
}
.main-footer .social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .main-footer .social-links {
    justify-content: flex-start;
  }
}
.main-footer .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 1.8rem;
  color: #ffffff;
  transition: all 0.3s ease;
}
.main-footer .social-links li a:hover {
  background-color: #00a8cc;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 168, 204, 0.3);
}
.main-footer .footer-bottom {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .main-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.main-footer .footer-bottom p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}
.main-footer .footer-bottom .bior-credit {
  transition: color 0.3s ease;
}
.main-footer .footer-bottom .bior-credit span, .main-footer .footer-bottom .bior-credit strong {
  color: #d4a373;
  font-weight: 700;
}
.main-footer .footer-bottom .bior-credit:hover {
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #2d4a3e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn--primary {
  background-color: #00a8cc;
  color: #ffffff;
  border: 2px solid #00a8cc;
}
.btn--primary:hover {
  background-color: #007e99;
  border-color: #007e99;
  transform: translateY(-3px);
}
.btn-hex {
  font-size: 1.8rem;
  padding: 0.5rem 1.6rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid #ffffff;
  backdrop-filter: blur(5px);
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .btn-hex {
    font-size: 1.2rem;
    padding: 0.5rem 1.6rem;
  }
}
.btn-hex:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-link {
  font-size: 1.3rem;
  color: #00a8cc;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}
.btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00a8cc;
  transition: width 0.3s ease;
}
.btn-link:hover::after {
  width: 100%;
}

.hexagon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .hexagon-container {
    padding: 0rem 0;
  }
}

.hexagon-row {
  display: flex;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .hexagon-row {
    flex-wrap: wrap;
    max-width: 300px;
    gap: 2px;
    margin-top: 0 !important;
  }
  .hexagon-row .hexagon-item:nth-child(3) {
    margin-top: -37px;
  }
  .hexagon-row:nth-child(2), .hexagon-row:nth-child(3) {
    margin-top: -37px !important;
  }
}
@media (min-width: 768px) {
  .hexagon-row:nth-child(2), .hexagon-row:nth-child(3) {
    margin-top: -68px;
  }
}

.hexagon-item {
  position: relative;
  width: 250px;
  height: 290px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.4s ease;
  z-index: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .hexagon-item {
    width: 140px;
    height: 160px;
  }
}
.hexagon-item.hide {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.hexagon-item .hexagon-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.hexagon-item .hexagon-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}
.hexagon-item .hexagon-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  text-align: center;
}
.hexagon-item .hexagon-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  font-family: "Playfair Display", serif;
  text-shadow: 0 2px 4px #000000;
}
@media (max-width: 767px) {
  .hexagon-item .hexagon-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
}
.hexagon-item:hover {
  transform: scale(1.1);
  z-index: 10;
}
.hexagon-item:hover .hexagon-bg {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  padding: 2rem;
  overflow-y: auto;
}
.modal.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #ffffff;
  color: #000000;
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}
.modal .close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.modal .close-modal:hover {
  color: #d4a373;
}
.modal .modal-body {
  display: flex;
  flex-direction: column;
}
.modal .modal-body .modal-img-wrapper {
  width: 100%;
  height: 300px;
}
.modal .modal-body .modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal .modal-body .modal-info {
  padding: 3rem;
}
.modal .modal-body .modal-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #000000;
}
.modal .modal-body .modal-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #333333;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonials {
  padding: 8rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/testimonials-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}
.testimonials__header {
  margin-bottom: 5rem;
}
.testimonials__header .section-title {
  margin-bottom: 0.5rem;
}
.testimonials__header .section-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.8;
}
.testimonials__grid {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials__grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .testimonials__grid {
    gap: 3rem;
  }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 85vw;
  max-width: 420px;
  padding: 2.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card__icon {
  margin-bottom: 1.5rem;
  color: #ffffff;
  opacity: 0.9;
}
.testimonial-card__icon svg {
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .testimonial-card__icon svg {
    width: 50px;
    height: 50px;
  }
}
.testimonial-card__text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .testimonial-card__text {
    font-size: 1.2rem;
  }
}
.testimonial-card__author {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #00a8cc;
  letter-spacing: 1px;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal.is-visible .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-content.modal-full-hero {
  position: relative;
  width: 90%;
  height: 85%;
  max-width: 1200px;
  max-height: 800px;
  background-color: #2d4a3e;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .modal-content.modal-full-hero {
    width: 80%;
    height: 90%;
  }
}

.close-modal {
  position: fixed;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 50;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}
.close-modal:hover {
  transform: scale(1.1) rotate(90deg);
  opacity: 1;
}
@media (max-width: 767px) {
  .close-modal {
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
  }
}

.modal-hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modal-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal-hero-bg .modal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.modal-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6rem 2rem 4rem;
}
@media (min-width: 768px) {
  .modal-container {
    padding: 8rem 5vw 4rem;
  }
}
@media (min-width: 1200px) {
  .modal-container {
    padding: 10rem 10vw 4rem;
  }
}

.modal-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal-main-content {
    justify-content: flex-start;
    padding-top: 2rem;
  }
}
.modal-main-content .hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 10vw, 7rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .modal-main-content .hero-title {
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }
}
.modal-main-content .hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .modal-main-content .hero-subtitle {
    margin-bottom: 2rem;
  }
}

.modal-actions .btn-discover {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal-actions .btn-discover:hover {
  background-color: #ffffff;
  color: #2d4a3e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-footer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .modal-footer-stats {
    gap: 3rem;
  }
}
@media (min-width: 1200px) {
  .modal-footer-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 4vw;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .modal-footer-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.modal-footer-stats .stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.modal-footer-stats .stat-item .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  width: 50px;
  text-align: right;
}
.modal-footer-stats .stat-item .stat-info {
  flex: 1;
}
.modal-footer-stats .stat-item .stat-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-footer-stats .stat-item .stat-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

.promo-section {
  padding: 5rem 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.8) 0%, #111111 50%, rgba(17, 17, 17, 0.8) 100%);
}

.promo-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .promo-card {
    flex-direction: row;
    min-height: 550px;
  }
}
.promo-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #000000;
}
@media (min-width: 768px) {
  .promo-card__image {
    width: 45%;
    min-height: 500px;
  }
}
.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
}
.promo-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}
.promo-card__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: #ff4757;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-card__content {
  padding: 2.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .promo-card__content {
    width: 55%;
    padding: 4.5rem;
  }
}
@media (max-width: 767px) {
  .promo-card__content {
    padding: 3rem 1.5rem;
  }
}
.promo-card__tag {
  color: #00a8cc;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.promo-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -1px;
}
.promo-card p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.promo-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .promo-card__details {
    gap: 3rem;
  }
}
.promo-card__details .detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.promo-card__details .detail-item i {
  font-size: 1.5rem;
  color: #d4a373;
}
.promo-card__details .detail-item span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #ffffff;
}
.promo-card__features {
  margin-bottom: 3.5rem;
}
.promo-card__features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.promo-card__features ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.promo-card__features ul li i {
  color: #00a8cc;
  font-size: 0.8rem;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.btn-promo:hover {
  background: #ffffff;
  color: #2d4a3e;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .btn-promo {
    width: 100%;
  }
}
.btn-promo i {
  font-size: 1.2rem;
}

.gallery-section {
  padding: 8rem 0;
  background-color: #1a1a1a;
  color: #ffffff;
  overflow: hidden;
}
.gallery-section .section-header {
  margin-bottom: 3rem;
}
.gallery-section .section-header .section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.gallery-section .section-header .section-subtitle {
  font-family: "Poppins", sans-serif;
  color: #d4a373;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
}

.btn--outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  border: 2px solid #00a8cc;
  color: #00a8cc;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--outline-accent:hover {
  background-color: #00a8cc;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 168, 204, 0.3);
  transform: translateY(-3px);
}

.gallery-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .gallery-slide {
    width: 280px;
    height: 420px;
  }
}
.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-slide .slide-info {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 2;
}
.gallery-slide .slide-info h3 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.gallery-slide .slide-info p {
  color: #00a8cc;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  transition: all 0.5s ease;
  z-index: 10;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: 400;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #00a8cc;
  border-color: #00a8cc;
  color: #ffffff;
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1rem;
  }
}

.swiper-button-prev {
  left: 1.5rem;
}

.swiper-button-next {
  right: 1.5rem;
}

.contact-section {
  padding: 5rem 0;
  background-color: #111111;
  color: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1200px) {
  .contact-wrapper {
    gap: 5rem;
  }
}

.contact-form-col .section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.contact-form-col .section-subtitle {
  color: #d4a373;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.bior-form .form-group {
  margin-bottom: 1.5rem;
}
.bior-form .form-group label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.bior-form .form-group input, .bior-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.bior-form .form-group input:focus, .bior-form .form-group textarea:focus {
  outline: none;
  border-color: #00a8cc;
  background-color: rgba(255, 255, 255, 0.08);
}
.bior-form .form-group input::placeholder, .bior-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.bior-form .form-group textarea {
  resize: vertical;
}
.bior-form .form-submit {
  width: 100%;
  padding: 1rem;
  background-color: #2d4a3e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}
.bior-form .form-submit:hover {
  background-color: rgb(54.6428571429, 89.8571428571, 75.2857142857);
  transform: translateY(-2px);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.info-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.info-card .info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.info-card .info-list li i {
  color: #00a8cc;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
.info-card .info-list li span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.info-card .info-list li a, .info-card .info-list li p {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-card .info-list li a:hover {
  color: #d4a373;
}

.home-page .tour-filter {
  margin-bottom: 1rem;
}
.home-page .tour-filter ul {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
.home-page .tour-filter ul li {
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .home-page .tour-filter ul li {
    font-size: 1.4rem;
  }
}
.home-page .tour-filter ul li.active {
  color: #ffffff;
}
.home-page .tour-filter ul li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #00a8cc;
}
.home-page .tour-filter ul li:hover {
  color: #ffffff;
}
.home-page .section-title-alt {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
  opacity: 0.8;
}

.tour-section {
  width: 100%;
  position: relative;
  padding: 3rem 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../img/bosque-difuminado.jpg");
  background-size: cover;
  background-position: center;
}
.tour-section .tour-filter ul li {
  color: rgba(255, 255, 255, 0.7);
}
.tour-section .tour-filter ul li.active, .tour-section .tour-filter ul li:hover {
  color: #ffffff;
}
.tour-section .tour-filter ul li.active::after, .tour-section .tour-filter ul li:hover::after {
  background-color: #d4a373;
}
.tour-section .section-title {
  color: #ffffff;
  font-size: 3.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .tour-section .section-title {
    font-size: 2.5rem;
  }
}

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