:root {
  --bg-main: #eef0ed;
  --bg-soft: #f7f8f5;
  --forest-950: #0d1d16;
  --forest-900: #12281d;
  --forest-800: #193a28;
  --forest-700: #24543a;
  --forest-500: #3f8758;
  --lime: #a8ce3b;
  --orchid-yellow: #f5c841;
  --wild-red: #d9473f;
  --toucan-orange: #ef8d32;
  --white: #fff;
  --text-dark: #17221b;
  --text-muted: #607067;
  --shadow-lg: 0 30px 90px rgba(6, 25, 15, 0.26);
  --radius-xl: 30px;
  --nav-height: 86px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--orchid-yellow);
  color: var(--forest-950);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--forest-950);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orchid-yellow);
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: loaderSpin 1.5s linear infinite;
  box-shadow: 0 0 40px rgba(245, 200, 65, 0.18);
}
@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(245, 200, 65, 0.12),
    transparent 66%
  );
  transition: opacity 0.3s ease;
}

.navbar {
  min-height: var(--nav-height);
  padding: 12px 0;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 13, 0.91),
    rgba(7, 20, 13, 0.62),
    transparent
  );
  transition:
    background 0.35s ease,
    min-height 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}
.navbar.nav-scrolled {
  min-height: 72px;
  background: rgba(13, 29, 22, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(5, 17, 11, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar-brand {
  color: var(--white);
}
.brand-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--forest-950);
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--orchid-yellow), var(--lime));
  box-shadow: 0 10px 30px rgba(245, 200, 65, 0.22);
  transform: rotate(-4deg);
}
.brand-copy {
  line-height: 0.86;
  letter-spacing: 0.08em;
}
.brand-copy strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 900;
}
.brand-copy small {
  color: var(--orchid-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.brand-logo {
  height: 58px;
  width: auto;
  transition: 0.35s;
}

.navbar.nav-scrolled .brand-logo {
  height: 50px;
}
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  padding: 0.8rem 0.55rem !important;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.42rem;
  height: 2px;
  background: linear-gradient(90deg, var(--orchid-yellow), var(--wild-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.btn-contact-nav {
  color: var(--forest-950);
  background: var(--orchid-yellow);
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(245, 200, 65, 0.19);
  transition: 0.25s ease;
}
.btn-contact-nav:hover {
  color: var(--forest-950);
  background: #ffd95a;
  transform: translateY(-2px);
}
.menu-lines {
  width: 30px;
  display: grid;
  gap: 6px;
}
.menu-lines span {
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}
.menu-lines span:nth-child(2) {
  width: 21px;
  margin-left: auto;
  background: var(--orchid-yellow);
}

.hero-section {
  position: relative;
  height: 100dvh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-950);
  isolation: isolate;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 10px);
  padding-bottom: 18px;
}

.hero-container > .row {
  width: 100%;
  height: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.6rem, 2.6vw, 2.7rem);
  color: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(13, 35, 23, 0.76),
    rgba(17, 42, 28, 0.43)
  );
  backdrop-filter: blur(13px) saturate(1.25);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-actions {
  justify-content: center;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -5;
  transform: scale(1.04);
  background-image: url("../img/portada-calakmul.jpg");
  background-size: cover;
  background-position: center 48%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to {
    transform: scale(1.11);
  }
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 25, 14, 0.55) 0%,
    rgba(8, 25, 14, 0.25) 45%,
    rgba(8, 25, 14, 0.55) 100%
  );
}
.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -3;
  opacity: 0.35;
}
.hero-light-one {
  width: 300px;
  height: 300px;
  right: 10%;
  top: 17%;
  background: var(--orchid-yellow);
}
.hero-light-two {
  width: 260px;
  height: 260px;
  right: 24%;
  bottom: 12%;
  background: var(--wild-red);
  opacity: 0.16;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: 18px;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 955px;

  margin: 0 auto;
  padding: clamp(1.5rem, 2.6vw, 2.6rem);
  color: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(13, 35, 23, 0.76),
    rgba(17, 42, 28, 0.43)
  );
  backdrop-filter: blur(13px) saturate(1.25);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    transparent 30%
  );
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.15rem;
  justify-content: center;
  color: #f6e8ac;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
}
.hero-eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--orchid-yellow);
}
h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  margin: 0 0 1.1rem;
  white-space: nowrap;
}

.title-main {
  display: inline-flex;
  align-items: center;
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
}

.title-accent {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.7rem, 6.1vw, 6.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.82;
  color: var(--orchid-yellow);
  transform: translateY(2px);
}
.hero-eyebrow {
  margin-bottom: 0.85rem;
}

.hero-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-description p {
  margin-bottom: 0.8rem;
}

.hero-actions {
  margin-top: 1.1rem;
}

.hero-features {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.hero-features .row {
  justify-content: center;
}

.hero-features [class*="col-"] {
  display: flex;
  justify-content: center;
}

.mini-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 230px;
  text-align: left;
}
.hero-description {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.97rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}
.hero-description-secondary {
  color: rgba(255, 255, 255, 0.71);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
}
.hero-actions {
  margin-top: 1.2 rem;
}
.btn-primary-explore,
.btn-outline-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 55px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 800;
  font-size: 0.86rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.btn-primary-explore {
  color: var(--forest-950);
  background: linear-gradient(135deg, var(--orchid-yellow), #efab35);
  border: 0;
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.22);
}
.btn-primary-explore:hover {
  color: var(--forest-950);
  box-shadow: 0 18px 42px rgba(245, 200, 65, 0.31);
}
.btn-outline-explore {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-explore:hover {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero-features {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.mini-feature {
  display: flex;
  align-items: center;
  gap: 11px;
}
.mini-feature > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orchid-yellow);
  background: rgba(245, 200, 65, 0.1);
  border: 1px solid rgba(245, 200, 65, 0.18);
}
.mini-feature strong,
.mini-feature span {
  display: block;
}
.mini-feature strong {
  font-size: 0.78rem;
  color: white;
}
.mini-feature span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.57);
}

.nature-particle {
  position: absolute;
  z-index: 1;
  color: white;
  opacity: 0.4;
  animation: floatParticle 7s ease-in-out infinite;
}
.particle-yellow {
  top: 26%;
  right: 8%;
  color: var(--orchid-yellow);
  font-size: 2.4rem;
}
.particle-red {
  top: 52%;
  right: 19%;
  color: var(--wild-red);
  font-size: 1.6rem;
  animation-delay: -2s;
}
.particle-green {
  bottom: 19%;
  right: 7%;
  color: var(--lime);
  font-size: 2rem;
  animation-delay: -4s;
}
@keyframes floatParticle {
  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.scroll-indicator:hover {
  color: white;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding-top: 7px;
}
.scroll-mouse div {
  width: 4px;
  height: 8px;
  margin: auto;
  border-radius: 3px;
  background: var(--orchid-yellow);
  animation: mouseMove 1.8s ease infinite;
}

@media (min-width: 768px) and (max-height: 780px) {
  .hero-container {
    padding-top: 82px;
    padding-bottom: 12px;
  }

  .hero-card {
    max-width: 1000px;
    padding: 2rem 2.2rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.8rem;
  }

  h1 {
    margin-bottom: 0.8rem;
  }

  .title-main {
    font-size: clamp(3.8rem, 7vw, 5.8rem);
  }

  .title-accent {
    font-size: clamp(2.8rem, 5vw, 4rem);
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-description p {
    margin-bottom: 0.75rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .btn-primary-explore,
  .btn-outline-explore {
    min-height: 50px;
    padding: 0.75rem 1.3rem;
  }

  .hero-features {
    margin-top: 1rem;
    padding-top: 0.8rem;
  }
}

@keyframes mouseMove {
  70% {
    transform: translateY(13px);
    opacity: 0;
  }
}
.hero-bottom-gradient {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(238, 240, 237, 0.2) 36%,
    var(--bg-main) 100%
  );
}

.reveal-on-load {
  opacity: 0;
  transform: translateY(25px);
}
.reveal-on-load.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s ease 0.2s,
    transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) 0.2s;
}
.content-placeholder {
  min-height: 42vh;
  display: grid;
  place-items: center;
  background: var(--bg-main);
}
.content-placeholder.section-light {
  background: var(--bg-soft);
}
.placeholder-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 1px dashed rgba(36, 84, 58, 0.22);
  border-radius: 24px;
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.5);
}
.placeholder-card i {
  font-size: 2.4rem;
  color: var(--forest-500);
}
.placeholder-card span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  box-shadow: 0 12px 30px rgba(14, 40, 25, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  transform: translateY(-3px);
}

/* ======================================================
   SOBRE NOSOTROS
====================================================== */

.about-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(168, 206, 59, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 93% 25%,
      rgba(245, 200, 65, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 78% 95%,
      rgba(217, 71, 63, 0.07),
      transparent 27%
    ),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

/* Patrón tenue de fondo */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(
      circle at 20px 20px,
      rgba(36, 84, 58, 0.08) 2px,
      transparent 2.5px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(36, 84, 58, 0.035) 49%,
      rgba(36, 84, 58, 0.035) 51%,
      transparent 52%
    );
  background-size:
    54px 54px,
    90px 90px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.about-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  top: 32%;
  border: 1px solid rgba(36, 84, 58, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(36, 84, 58, 0.025),
    0 0 0 90px rgba(36, 84, 58, 0.018);
  pointer-events: none;
}

.about-decoration {
  position: absolute;
  z-index: 0;
  color: var(--forest-700);
  opacity: 0.06;
  pointer-events: none;
}

.about-decoration-one {
  left: 3%;
  top: 18%;
  font-size: 8rem;
  transform: rotate(-18deg);
}

.about-decoration-two {
  right: 4%;
  top: 8%;
  font-size: 7rem;
  transform: rotate(18deg);
}

.about-decoration-three {
  left: 5%;
  bottom: 7%;
  font-size: 9rem;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0 auto clamp(2.8rem, 5vw, 4.5rem);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 1rem;
  color: var(--forest-700);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.section-kicker i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  box-shadow: 0 8px 25px rgba(245, 200, 65, 0.24);
}

.section-heading h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.section-heading h2 span {
  position: relative;
  color: var(--forest-500);
}

.section-heading h2 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 3%;
  bottom: 0.02em;
  height: 0.18em;
  z-index: -1;
  border-radius: 999px;
  background: rgba(245, 200, 65, 0.72);
  transform: rotate(-1deg);
}

.section-heading p {
  max-width: 720px;
  margin: 1.4rem auto 0;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.8;
}

/* Cards */
.about-cards-row {
  position: relative;
  z-index: 2;
}

.about-card {
  --card-color: var(--forest-500);

  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(25, 58, 40, 0.1);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(15px) saturate(1.15);
  box-shadow:
    0 20px 55px rgba(20, 53, 34, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.8);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.mission-card {
  --card-color: var(--forest-500);
}

.vision-card {
  --card-color: var(--orchid-yellow);
}

.values-card {
  --card-color: var(--wild-red);
}

.about-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -100px;
  top: -105px;
  border-radius: 50%;
  background: var(--card-color);
  opacity: 0.09;
  transition:
    transform 0.55s ease,
    opacity 0.55s ease;
}

.about-card::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--card-color),
    transparent
  );
  transform: scaleX(0.25);
  opacity: 0.4;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.about-card:hover {
  transform: translateY(-12px);
  border-color: color-mix(in srgb, var(--card-color) 35%, transparent);
  box-shadow:
    0 30px 75px rgba(20, 53, 34, 0.16),
    0 0 45px color-mix(in srgb, var(--card-color) 12%, transparent);
}

.about-card:hover::before {
  opacity: 0.15;
  transform: scale(1.3);
}

.about-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.about-card-number {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: rgba(18, 40, 29, 0.09);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.about-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 1.55rem;
  border-radius: 21px;
  color: var(--forest-950);
  font-size: 1.75rem;
  background: color-mix(in srgb, var(--card-color) 32%, white);
  box-shadow:
    0 14px 30px color-mix(in srgb, var(--card-color) 18%, transparent),
    inset 0 1px rgba(255, 255, 255, 0.8);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.45s ease;
}

.about-card:hover .about-icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.06);
  border-radius: 50%;
}

.about-card-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--card-color);
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-card h3 {
  margin: 0 0 1.15rem;
  color: var(--forest-950);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.about-card-content {
  position: relative;
  z-index: 2;
}

.about-card-content > p {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.78;
}

.about-card-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 1.3rem;
}

.about-card-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.about-card-footer i {
  color: var(--card-color);
}

/* Lista dinámica de valores */
.values-list {
  display: grid;
  gap: 0.65rem;
}

.value-item {
  width: 100%;
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 0.75rem;
  text-align: left;
  color: var(--text-dark);
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 14px;
  background: rgba(247, 248, 245, 0.75);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.value-item:hover,
.value-item.active {
  transform: translateX(4px);
  border-color: rgba(217, 71, 63, 0.22);
  background: white;
  box-shadow: 0 10px 25px rgba(21, 49, 32, 0.07);
}

.value-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--wild-red);
  background: rgba(217, 71, 63, 0.09);
}

.value-copy {
  min-width: 0;
}

.value-copy strong {
  display: block;
  color: var(--forest-900);
  font-size: 0.76rem;
}

.value-copy small {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.65rem;
  line-height: 1.5;
  opacity: 0;
  transition:
    grid-template-rows 0.35s ease,
    margin-top 0.35s ease,
    opacity 0.35s ease;
}

.value-copy small::before {
  content: "";
  min-height: 0;
}

.value-item.active .value-copy small {
  grid-template-rows: 1fr;
  margin-top: 3px;
  opacity: 1;
}

.value-arrow {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.value-item.active .value-arrow {
  transform: rotate(180deg);
}

/* Servicios integrales */
.about-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(245, 200, 65, 0.2),
      transparent 25%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: 0 25px 70px rgba(13, 29, 22, 0.2);
}

.about-services::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  left: -90px;
  bottom: -110px;
  border-radius: 50%;
  border: 35px solid rgba(168, 206, 59, 0.08);
}

.about-services-intro {
  position: relative;
  z-index: 2;
}

.about-services-intro span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.about-services-intro h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.about-service-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-service-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.about-service-item:hover {
  color: white;
  transform: translateY(-5px);
  border-color: rgba(245, 200, 65, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.about-service-item > i:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orchid-yellow);
  background: rgba(245, 200, 65, 0.1);
}

.about-service-item > i:last-child {
  color: var(--orchid-yellow);
  transition: transform 0.3s ease;
}

.about-service-item:hover > i:last-child {
  transform: translate(3px, -3px);
}

.about-service-item strong,
.about-service-item small {
  display: block;
}

.about-service-item strong {
  font-size: 0.76rem;
}

.about-service-item small {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Animación de entrada */
.reveal-about {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-about.about-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   SERVICIO DE TRANSPORTE
====================================================== */

.transport-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 20%,
      rgba(168, 206, 59, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 15%,
      rgba(245, 200, 65, 0.14),
      transparent 25%
    ),
    linear-gradient(180deg, var(--bg-soft), var(--bg-main));
}

.transport-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(
      30deg,
      rgba(36, 84, 58, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(36, 84, 58, 0.05) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(36, 84, 58, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(36, 84, 58, 0.05) 87.5%
    );
  background-size: 70px 120px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 15%,
    black 88%,
    transparent
  );
}

.transport-heading {
  position: relative;
  z-index: 2;
}

/* Contenedor principal */
.fleet-showcase {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(168, 206, 59, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(245, 200, 65, 0.12),
      transparent 29%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  box-shadow: 0 35px 90px rgba(13, 29, 22, 0.23);
}

.fleet-showcase::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -280px;
  bottom: -350px;
  border: 60px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  pointer-events: none;
}

.fleet-showcase-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem clamp(1.4rem, 3vw, 2.7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fleet-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(168, 206, 59, 0.09);
  animation: fleetStatusPulse 1.8s ease infinite;
}

@keyframes fleetStatusPulse {
  50% {
    box-shadow: 0 0 0 10px rgba(168, 206, 59, 0);
  }
}

.fleet-showcase-header h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  font-weight: 800;
}

.fleet-counter {
  display: flex;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.42);
}

.fleet-counter strong {
  color: var(--orchid-yellow);
  font-size: 2rem;
  font-weight: 900;
}

.fleet-counter span {
  font-size: 0.84rem;
}

/* Imagen */
.fleet-main-row {
  min-height: 510px;
}

.fleet-visual {
  position: relative;
  height: 100%;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
}

.fleet-capacity-badge {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.fleet-capacity-badge i {
  color: var(--orchid-yellow);
}

.fleet-capacity-badge strong {
  font-size: 0.7rem;
}

.fleet-image-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 330px;
  display: grid;
  place-items: center;
}

.fleet-main-image {
  width: 100%;
  height: 100%;
  max-width: 680px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.38));
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fleet-main-image.changing {
  opacity: 0;
  transform: translateX(35px) scale(0.96);
}

.fleet-orbit {
  position: absolute;
  border: 1px solid rgba(245, 200, 65, 0.12);
  border-radius: 50%;
  animation: fleetOrbit 20s linear infinite;
}

.fleet-orbit-one {
  width: 340px;
  height: 340px;
}

.fleet-orbit-two {
  width: 440px;
  height: 440px;
  animation-direction: reverse;
  animation-duration: 28s;
}

.fleet-orbit::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 12%;
  left: 12%;
  border-radius: 50%;
  background: var(--orchid-yellow);
  box-shadow: 0 0 25px rgba(245, 200, 65, 0.7);
}

@keyframes fleetOrbit {
  to {
    transform: rotate(360deg);
  }
}

.fleet-road {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  bottom: 17%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.fleet-road span {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 55%;
  height: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    90deg,
    transparent 0 20px,
    rgba(245, 200, 65, 0.45) 20px 42px
  );
}

/* Detalles */
.fleet-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.025);
}

.fleet-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.fleet-details h4 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.fleet-details > p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
  line-height: 1.75;
}

.fleet-specifications {
  display: grid;
  gap: 0.7rem;
}

.fleet-specification {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.fleet-spec-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orchid-yellow);
  background: rgba(245, 200, 65, 0.1);
}

.fleet-specification small,
.fleet-specification strong {
  display: block;
}

.fleet-specification small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fleet-specification strong {
  font-size: 0.73rem;
}

.fleet-benefits {
  margin-top: 1.4rem;
}

.fleet-benefits h5 {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.fleet-benefits ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.fleet-benefits li i {
  color: var(--lime);
}

.fleet-contact-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: var(--forest-950);
  background: linear-gradient(
    135deg,
    var(--orchid-yellow),
    var(--toucan-orange)
  );
  font-size: 0.74rem;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fleet-contact-button:hover {
  color: var(--forest-950);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(245, 200, 65, 0.22);
}

/* Selector */
.fleet-selector-wrapper {
  position: relative;
  z-index: 4;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.fleet-selector-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0.75rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.fleet-selector-item:hover {
  color: white;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.075);
}

.fleet-selector-item.active {
  color: white;
  border-color: rgba(245, 200, 65, 0.42);
  background: rgba(245, 200, 65, 0.11);
  box-shadow: inset 0 -3px var(--orchid-yellow);
}

.fleet-selector-number {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.57rem;
  font-weight: 900;
}

.fleet-selector-thumbnail {
  width: 64px;
  height: 48px;
  display: grid;
  place-items: center;
}

.fleet-selector-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 7px rgba(0, 0, 0, 0.24));
}

.fleet-selector-copy {
  min-width: 0;
}

.fleet-selector-copy strong,
.fleet-selector-copy small {
  display: block;
}

.fleet-selector-copy strong {
  overflow: hidden;
  font-size: 0.66rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fleet-selector-copy small {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.53rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Nota */
.fleet-note {
  position: relative;
  z-index: 2;
  max-width: 850px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  text-align: center;
}

.fleet-note i {
  flex: 0 0 auto;
  color: var(--forest-500);
}

.fleet-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* Animaciones */
.transport-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.transport-reveal.transport-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   RESPONSIVE TRANSPORTE
====================================================== */

@media (max-width: 1199.98px) {
  .fleet-selector {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 0.4rem;
  }

  .fleet-selector-item {
    min-width: 215px;
    scroll-snap-align: start;
  }
}

@media (max-width: 991.98px) {
  .fleet-main-row {
    min-height: 0;
  }

  .fleet-visual {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fleet-image-wrapper {
    height: 285px;
  }

  .fleet-details {
    min-height: 530px;
  }

  .fleet-contact-button {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .transport-section {
    padding: 4.5rem 0;
  }

  .fleet-showcase {
    border-radius: 23px;
  }

  .fleet-showcase-header {
    align-items: center;
    padding: 1.2rem;
  }

  .fleet-showcase-header h3 {
    font-size: 1rem;
  }

  .fleet-counter strong {
    font-size: 1.5rem;
  }

  .fleet-visual {
    min-height: 330px;
    padding: 3.7rem 1.2rem 1.5rem;
  }

  .fleet-capacity-badge {
    top: 1rem;
    left: 1rem;
  }

  .fleet-image-wrapper {
    height: 225px;
  }

  .fleet-orbit-one {
    width: 230px;
    height: 230px;
  }

  .fleet-orbit-two {
    width: 300px;
    height: 300px;
  }

  .fleet-details {
    min-height: 0;
    padding: 1.4rem;
  }

  .fleet-details h4 {
    font-size: 1.65rem;
  }

  .fleet-details > p {
    font-size: 0.84rem;
  }

  .fleet-contact-button {
    width: 100%;
    justify-content: center;
  }

  .fleet-selector-wrapper {
    padding: 0.8rem;
  }

  .fleet-selector-item {
    min-width: 195px;
  }
}

@media (max-width: 480px) {
  .fleet-showcase-header {
    gap: 0.6rem;
  }

  .fleet-status {
    font-size: 0.51rem;
  }

  .fleet-showcase-header h3 {
    max-width: 230px;
  }

  .fleet-capacity-badge strong {
    font-size: 0.62rem;
  }

  .fleet-image-wrapper {
    height: 190px;
  }

  .fleet-visual {
    min-height: 295px;
  }

  .fleet-details h4 {
    font-size: 1.45rem;
  }

  .fleet-specification {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .fleet-spec-icon {
    width: 38px;
    height: 38px;
  }

  .fleet-selector-item {
    min-width: 180px;
    grid-template-columns: auto 54px minmax(0, 1fr);
  }

  .fleet-selector-thumbnail {
    width: 54px;
    height: 42px;
  }
}

/* ======================================================
   SERVICIO DE TOURS
====================================================== */

.tours-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 4% 16%,
      rgba(245, 200, 65, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 94% 80%,
      rgba(168, 206, 59, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

.tours-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(
      circle at 15px 15px,
      rgba(36, 84, 58, 0.07) 1.7px,
      transparent 2px
    ),
    linear-gradient(
      60deg,
      transparent 47%,
      rgba(36, 84, 58, 0.03) 48%,
      rgba(36, 84, 58, 0.03) 52%,
      transparent 53%
    );
  background-size:
    52px 52px,
    95px 95px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 14%,
    black 86%,
    transparent
  );
}

.tours-grid {
  position: relative;
  z-index: 2;
}

/* Cards */
.tour-card {
  --tour-color: var(--forest-500);

  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  overflow: hidden;
  border: 1px solid rgba(25, 58, 40, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(15px);
  box-shadow:
    0 22px 60px rgba(18, 48, 31, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.tour-card-archaeology {
  --tour-color: var(--toucan-orange);
}

.tour-card-nature {
  --tour-color: var(--forest-500);
}

.tour-card-bats {
  --tour-color: var(--wild-red);
}

.tour-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -125px;
  top: -125px;
  border-radius: 50%;
  background: var(--tour-color);
  opacity: 0.08;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.tour-card::after {
  content: "";
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tour-color),
    transparent
  );
  transform: scaleX(0.24);
  opacity: 0.45;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-12px);
  border-color: color-mix(in srgb, var(--tour-color) 38%, transparent);
  box-shadow:
    0 34px 82px rgba(18, 48, 31, 0.17),
    0 0 45px color-mix(in srgb, var(--tour-color) 11%, transparent);
}

.tour-card:hover::before {
  opacity: 0.14;
  transform: scale(1.3);
}

.tour-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.tour-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.7rem;
}

.tour-number {
  color: rgba(13, 29, 22, 0.1);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
}

.tour-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--forest-950);
  font-size: 1.65rem;
  background: color-mix(in srgb, var(--tour-color) 32%, white);
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--tour-color) 17%, transparent),
    inset 0 1px rgba(255, 255, 255, 0.8);
  transition:
    transform 0.4s ease,
    border-radius 0.4s ease;
}

.tour-card:hover .tour-icon {
  transform: translateY(-5px) rotate(-7deg);
  border-radius: 50%;
}

.tour-card-content {
  position: relative;
  z-index: 2;
}

.tour-category {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--tour-color);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.tour-card h3 {
  margin: 0 0 1rem;
  color: var(--forest-950);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.tour-card-content > p {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.tour-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tour-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 999px;
  color: var(--forest-700);
  background: rgba(247, 248, 245, 0.82);
  font-size: 0.65rem;
  font-weight: 700;
}

.tour-features i {
  color: var(--tour-color);
}

.tour-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(25, 58, 40, 0.09);
}

.tour-card-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.69rem;
  font-weight: 700;
}

.tour-card-footer > span i {
  color: var(--tour-color);
}

.tour-card-footer a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--forest-950);
  background: color-mix(in srgb, var(--tour-color) 32%, white);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.tour-card-footer a:hover {
  color: var(--forest-950);
  transform: translate(3px, -3px);
  background: color-mix(in srgb, var(--tour-color) 48%, white);
}

/* Card personalizada */
.custom-tour-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(245, 200, 65, 0.23),
      transparent 26%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: 0 28px 75px rgba(13, 29, 22, 0.21);
}

.custom-tour-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(
    180deg,
    var(--orchid-yellow),
    var(--toucan-orange),
    var(--wild-red)
  );
}

.custom-tour-decoration {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 10rem;
  opacity: 0.035;
  pointer-events: none;
}

.custom-tour-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--forest-950);
  font-size: 1.8rem;
  background: linear-gradient(
    135deg,
    var(--orchid-yellow),
    var(--toucan-orange)
  );
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.2);
}

.custom-tour-copy {
  position: relative;
  z-index: 2;
}

.custom-tour-copy > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.custom-tour-copy h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.custom-tour-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.83rem;
  line-height: 1.7;
}

.custom-tour-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.custom-tour-button:hover {
  color: var(--forest-950);
  background: #ffd85a;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.22);
}

/* Entrada al hacer scroll */
.tours-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.tours-reveal.tours-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   RESPONSIVE TOURS
====================================================== */

@media (max-width: 991.98px) {
  .tour-card {
    max-width: 720px;
    margin-inline: auto;
  }

  .custom-tour-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .custom-tour-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .tours-section {
    padding: 4.5rem 0;
  }

  .tour-card {
    padding: 1.4rem;
    border-radius: 23px;
  }

  .tour-card-top {
    margin-bottom: 1.3rem;
  }

  .tour-icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .tour-number {
    font-size: 3rem;
  }

  .tour-card h3 {
    font-size: 1.7rem;
  }

  .tour-card-content > p {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  .custom-tour-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    border-radius: 23px;
  }

  .custom-tour-card::before {
    top: 0;
    left: 1.4rem;
    right: 1.4rem;
    bottom: auto;
    width: auto;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(
      90deg,
      var(--orchid-yellow),
      var(--toucan-orange),
      var(--wild-red)
    );
  }

  .custom-tour-icon {
    margin-inline: auto;
  }

  .custom-tour-copy p {
    font-size: 0.82rem;
  }

  .custom-tour-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .tour-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tour-features span {
    justify-content: center;
    width: 100%;
  }

  .tour-card-footer {
    align-items: center;
  }

  .tour-card-footer > span {
    max-width: 210px;
  }
}

/* ======================================================
   GALERÍA DE EXPERIENCIAS
====================================================== */

.gallery-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 15%, rgba(217, 71, 63, 0.09), transparent 24%),
    radial-gradient(
      circle at 94% 12%,
      rgba(245, 200, 65, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 84% 88%,
      rgba(168, 206, 59, 0.11),
      transparent 26%
    ),
    linear-gradient(180deg, var(--bg-soft), var(--bg-main));
}

.gallery-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(
      circle at 18px 18px,
      rgba(36, 84, 58, 0.07) 2px,
      transparent 2.4px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(36, 84, 58, 0.028) 49%,
      rgba(36, 84, 58, 0.028) 51%,
      transparent 52%
    );
  background-size:
    58px 58px,
    110px 110px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 12%,
    black 90%,
    transparent
  );
}

.gallery-decoration {
  position: absolute;
  z-index: 0;
  color: var(--forest-700);
  opacity: 0.045;
  pointer-events: none;
}

.gallery-decoration-one {
  left: -1rem;
  top: 17%;
  font-size: 11rem;
  transform: rotate(-18deg);
}

.gallery-decoration-two {
  right: 1%;
  bottom: 13%;
  font-size: 10rem;
  transform: rotate(22deg);
}

/* Barra de filtros */
.gallery-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(20, 53, 34, 0.07);
}

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 0.69rem;
  font-weight: 800;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.gallery-filter:hover {
  color: var(--forest-800);
  transform: translateY(-2px);
  background: rgba(36, 84, 58, 0.06);
}

.gallery-filter.active {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--forest-800);
  box-shadow: 0 9px 24px rgba(25, 58, 40, 0.2);
}

.gallery-filter.active i {
  color: var(--orchid-yellow);
}

.gallery-count {
  flex: 0 0 auto;
  padding-right: 0.7rem;
  color: var(--text-muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.gallery-count strong {
  margin-right: 3px;
  color: var(--forest-700);
  font-size: 1rem;
}

/* Cuadrícula editorial */
.experience-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 115px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.gallery-item-featured {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-item-tall {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-item-standard {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item-wide {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-item.gallery-hidden {
  display: none;
}

.gallery-link,
.gallery-figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}

.gallery-figure {
  overflow: hidden;
  border-radius: inherit;
  background: var(--forest-900);
  box-shadow: 0 20px 50px rgba(13, 29, 22, 0.15);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.45s ease;
}

.gallery-figure::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: inherit;
}

.gallery-figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(245, 200, 65, 0.22);
  filter: blur(12px);
  opacity: 0;
  transition:
    opacity 0.45s ease,
    transform 0.55s ease;
}

.gallery-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.6s ease;
}

.gallery-image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 13, 0.06) 15%,
      rgba(7, 20, 13, 0.22) 46%,
      rgba(7, 20, 13, 0.91) 100%
    ),
    linear-gradient(90deg, rgba(7, 20, 13, 0.2), transparent 60%);
  transition: background 0.5s ease;
}

.gallery-item:hover {
  z-index: 5;
}

.gallery-item:hover .gallery-figure {
  box-shadow:
    0 30px 75px rgba(13, 29, 22, 0.26),
    0 0 0 1px rgba(245, 200, 65, 0.12);
}

.gallery-item:hover .gallery-figure::after {
  opacity: 1;
  transform: scale(1.45);
}

.gallery-item:hover img {
  transform: scale(1.09);
  filter: saturate(1.12) contrast(1.04);
}

/* Información de las imágenes */
.gallery-caption {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  color: white;
  transform: translateZ(28px);
}

.gallery-caption-copy {
  min-width: 0;
}

.gallery-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0.5rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.gallery-caption h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.05rem, 2.2vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.gallery-caption p {
  max-width: 520px;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
  line-height: 1.55;
}

.gallery-open {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: scale(0.82);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    background 0.35s ease;
}

.gallery-item:hover .gallery-open,
.gallery-link:focus-visible .gallery-open {
  transform: scale(1);
  opacity: 1;
}

.gallery-open:hover {
  background: var(--orchid-yellow);
  color: var(--forest-950);
}

.gallery-index {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Bloque final */
.gallery-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(245, 200, 65, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: 0 28px 75px rgba(13, 29, 22, 0.2);
}

.gallery-footer::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -160px;
  bottom: -180px;
  border: 40px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.gallery-footer-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--forest-950);
  font-size: 1.8rem;
  background: linear-gradient(
    135deg,
    var(--orchid-yellow),
    var(--toucan-orange)
  );
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.2);
}

.gallery-footer-copy {
  position: relative;
  z-index: 2;
}

.gallery-footer-copy > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.gallery-footer-copy h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gallery-footer-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.81rem;
  line-height: 1.65;
}

.gallery-contact-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.gallery-contact-button:hover {
  color: var(--forest-950);
  background: #ffd85a;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.22);
}

/* Animación de entrada */
.gallery-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-reveal.gallery-visible {
  opacity: 1;
  transform: none;
}

/* Personalización de GLightbox */
.glightbox-clean .gslide-description {
  background: rgba(13, 29, 22, 0.96);
}

.glightbox-clean .gslide-title {
  margin-bottom: 0.35rem;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.glightbox-clean .gslide-desc {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  border-radius: 50%;
  background-color: rgba(13, 29, 22, 0.85);
}

/* ======================================================
   RESPONSIVE GALERÍA
====================================================== */

@media (max-width: 1199.98px) {
  .experience-gallery {
    grid-auto-rows: 105px;
  }

  .gallery-item-featured {
    grid-column: span 7;
    grid-row: span 5;
  }

  .gallery-item-tall {
    grid-column: span 5;
    grid-row: span 5;
  }

  .gallery-item-standard {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-item-wide {
    grid-column: span 6;
    grid-row: span 3;
  }
}

@media (max-width: 991.98px) {
  .gallery-toolbar {
    display: block;
  }

  .gallery-filters {
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .gallery-filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .gallery-count {
    display: block;
    margin-top: 0.6rem;
    padding: 0 0.5rem;
  }

  .experience-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }

  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-item-standard {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-footer {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gallery-contact-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .gallery-section {
    padding: 4.5rem 0;
  }

  .gallery-decoration {
    display: none;
  }

  .gallery-toolbar {
    margin-bottom: 1rem;
    padding: 0.65rem;
    border-radius: 17px;
  }

  .gallery-filter {
    min-height: 39px;
    padding: 0.58rem 0.75rem;
    font-size: 0.63rem;
  }

  .experience-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 115px;
    gap: 0.7rem;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-item-standard {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-caption {
    padding: 1rem;
  }

  .gallery-category {
    margin-bottom: 0.3rem;
    font-size: 0.49rem;
  }

  .gallery-caption h3 {
    font-size: 1rem;
  }

  .gallery-caption p {
    display: none;
  }

  .gallery-open {
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: scale(1);
    font-size: 0.8rem;
  }

  .gallery-index {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.55rem;
  }

  .gallery-footer {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
    border-radius: 23px;
  }

  .gallery-footer-icon {
    margin-inline: auto;
  }

  .gallery-footer-copy p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .experience-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.85rem;
  }

  .gallery-item-featured,
  .gallery-item-tall,
  .gallery-item-standard,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: auto;
    height: 285px;
  }

  .gallery-item-featured,
  .gallery-item-wide {
    height: 330px;
  }

  .gallery-caption {
    align-items: flex-end;
  }

  .gallery-caption h3 {
    max-width: 220px;
    font-size: 1.15rem;
  }

  .gallery-open {
    width: 42px;
    height: 42px;
  }
}

/* Desactiva el efecto 3D en dispositivos táctiles */
@media (hover: none), (pointer: coarse) {
  .gallery-figure {
    transform: none !important;
  }

  .gallery-item:hover img {
    transform: scale(1.04);
  }
}

/* ======================================================
   FLORA Y FAUNA
====================================================== */

.nature-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 14%,
      rgba(168, 206, 59, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 22%,
      rgba(245, 200, 65, 0.12),
      transparent 24%
    ),
    radial-gradient(circle at 80% 93%, rgba(36, 84, 58, 0.11), transparent 26%),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

.nature-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    radial-gradient(
      circle at 18px 18px,
      rgba(36, 84, 58, 0.08) 2px,
      transparent 2.5px
    ),
    linear-gradient(
      35deg,
      transparent 47%,
      rgba(36, 84, 58, 0.028) 48%,
      rgba(36, 84, 58, 0.028) 52%,
      transparent 53%
    );
  background-size:
    58px 58px,
    110px 110px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 12%,
    black 90%,
    transparent
  );
}

.nature-decoration {
  position: absolute;
  z-index: 0;
  color: var(--forest-700);
  opacity: 0.04;
  pointer-events: none;
}

.nature-decoration-one {
  top: 13%;
  left: -2rem;
  font-size: 13rem;
  transform: rotate(-25deg);
}

.nature-decoration-two {
  right: 2%;
  bottom: 17%;
  font-size: 11rem;
  transform: rotate(20deg);
}

/* Estadísticas */
.nature-statistics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.nature-statistic {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(20, 53, 34, 0.07);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.nature-statistic:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 206, 59, 0.35);
  box-shadow: 0 22px 45px rgba(20, 53, 34, 0.11);
}

.nature-statistic-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--forest-800);
  background: rgba(168, 206, 59, 0.2);
  font-size: 1.2rem;
}

.nature-statistic strong,
.nature-statistic small {
  display: block;
}

.nature-statistic strong {
  margin-bottom: 2px;
  color: var(--forest-950);
  font-size: 0.94rem;
  font-weight: 900;
}

.nature-statistic small {
  color: var(--text-muted);
  font-size: 0.61rem;
  line-height: 1.45;
}

/* Visor principal */
.nature-explorer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 2fr);
  overflow: hidden;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(168, 206, 59, 0.13),
      transparent 29%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  box-shadow: 0 35px 90px rgba(13, 29, 22, 0.23);
}

/* Navegación lateral */
.nature-navigation {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nature-tab {
  width: 100%;
  display: grid;
  grid-template-columns: auto 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.nature-tab:hover {
  color: white;
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.055);
}

.nature-tab.active {
  color: white;
  border-color: rgba(245, 200, 65, 0.24);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 4px 0 var(--orchid-yellow),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.nature-tab-number {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.55rem;
  font-weight: 900;
}

.nature-tab-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--lime);
  background: rgba(168, 206, 59, 0.1);
}

.nature-tab.active .nature-tab-icon {
  color: var(--forest-950);
  background: var(--orchid-yellow);
}

.nature-tab-copy {
  min-width: 0;
}

.nature-tab-copy strong,
.nature-tab-copy small {
  display: block;
}

.nature-tab-copy strong {
  font-size: 0.72rem;
}

.nature-tab-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.55rem;
  line-height: 1.4;
}

.nature-tab-arrow {
  color: var(--orchid-yellow);
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nature-tab.active .nature-tab-arrow {
  opacity: 1;
  transform: none;
}

/* Área visual */
.nature-display {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
}

.nature-image-area {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--forest-950);
}

.nature-image-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 0.35s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.5s ease;
}

.nature-image-area img.nature-changing {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(5px);
}

.nature-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 18, 11, 0.05),
      rgba(6, 18, 11, 0.18) 50%,
      rgba(6, 18, 11, 0.85)
    ),
    linear-gradient(90deg, transparent 55%, rgba(6, 18, 11, 0.25));
}

.nature-image-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.nature-image-label > i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
}

.nature-image-label small,
.nature-image-label strong {
  display: block;
}

.nature-image-label small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nature-image-label strong {
  font-size: 0.78rem;
}

.nature-image-counter {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.nature-image-counter strong {
  color: var(--orchid-yellow);
  font-size: 1.5rem;
}

/* Texto dinámico */
.nature-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: rgba(255, 255, 255, 0.035);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nature-content.nature-content-changing {
  opacity: 0;
  transform: translateY(12px);
}

.nature-content-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.nature-content h3 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3.3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nature-content-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.75;
}

.nature-content > p:not(.nature-content-lead) {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.83rem;
  line-height: 1.75;
}

.nature-species-block {
  margin-top: 1rem;
}

.nature-species-label {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.nature-species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nature-species-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.62rem;
}

.nature-species-list i {
  color: var(--lime);
}

.nature-highlight {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  margin-top: 1.4rem;
  padding: 0.85rem;
  border: 1px solid rgba(245, 200, 65, 0.15);
  border-radius: 15px;
  background: rgba(245, 200, 65, 0.07);
}

.nature-highlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orchid-yellow);
  background: rgba(245, 200, 65, 0.1);
}

.nature-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.67rem;
  line-height: 1.55;
}

/* Especies animadas */
.species-showcase {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(25, 58, 40, 0.1);
  border-bottom: 1px solid rgba(25, 58, 40, 0.1);
}

.species-showcase-heading {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.species-showcase-heading > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.species-showcase-heading h3 {
  margin: 0 0 0.5rem;
  color: var(--forest-950);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.species-showcase-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.79rem;
}

.species-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.species-marquee-track {
  width: max-content;
  display: flex;
  gap: 0.7rem;
  animation: natureMarquee 35s linear infinite;
}

.species-marquee:hover .species-marquee-track {
  animation-play-state: paused;
}

.species-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(25, 58, 40, 0.1);
  border-radius: 999px;
  color: var(--forest-800);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 25px rgba(20, 53, 34, 0.06);
  font-size: 0.69rem;
  font-weight: 800;
}

.species-chip i {
  color: var(--forest-500);
}

@keyframes natureMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* Card del tour */
.nature-tour-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(245, 200, 65, 0.2),
      transparent 27%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: 0 28px 75px rgba(13, 29, 22, 0.21);
}

.nature-tour-card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--lime), var(--orchid-yellow));
}

.nature-tour-decoration {
  position: absolute;
  right: 9%;
  top: 50%;
  color: white;
  font-size: 10rem;
  opacity: 0.035;
  transform: translateY(-50%);
}

.nature-tour-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--forest-950);
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--lime), var(--orchid-yellow));
}

.nature-tour-copy {
  position: relative;
  z-index: 2;
}

.nature-tour-copy > span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.nature-tour-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nature-tour-copy p {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.7;
}

.nature-tour-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nature-tour-button:hover {
  color: var(--forest-950);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 200, 65, 0.22);
}

/* Entrada */
.nature-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.nature-reveal.nature-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   RESPONSIVE FLORA Y FAUNA
====================================================== */

@media (max-width: 1199.98px) {
  .nature-statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nature-explorer {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .nature-display {
    grid-template-columns: 1fr;
  }

  .nature-image-area {
    min-height: 430px;
  }
}

@media (max-width: 991.98px) {
  .nature-explorer {
    grid-template-columns: 1fr;
  }

  .nature-navigation {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .nature-tab {
    min-width: 230px;
    scroll-snap-align: start;
  }

  .nature-tab:hover {
    transform: translateY(-3px);
  }

  .nature-tab.active {
    box-shadow:
      inset 0 -4px var(--orchid-yellow),
      0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .nature-tour-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .nature-tour-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .nature-section {
    padding: 4.5rem 0;
  }

  .nature-decoration {
    display: none;
  }

  .nature-statistics {
    grid-template-columns: 1fr;
  }

  .nature-explorer {
    border-radius: 23px;
  }

  .nature-navigation {
    padding: 0.8rem;
  }

  .nature-tab {
    min-width: 210px;
    grid-template-columns: auto 40px minmax(0, 1fr);
  }

  .nature-tab-arrow {
    display: none;
  }

  .nature-tab-icon {
    width: 40px;
    height: 40px;
  }

  .nature-image-area {
    min-height: 340px;
  }

  .nature-image-label {
    left: 1rem;
    bottom: 1rem;
  }

  .nature-image-counter {
    top: 1rem;
    right: 1rem;
  }

  .nature-content {
    padding: 1.5rem;
  }

  .nature-content h3 {
    font-size: 1.8rem;
  }

  .nature-content-lead {
    font-size: 0.86rem;
  }

  .nature-content > p:not(.nature-content-lead) {
    font-size: 0.8rem;
  }

  .nature-species-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nature-species-list span {
    justify-content: center;
  }

  .nature-tour-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
    border-radius: 23px;
  }

  .nature-tour-card::before {
    top: 0;
    left: 1.4rem;
    right: 1.4rem;
    bottom: auto;
    width: auto;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--lime), var(--orchid-yellow));
  }

  .nature-tour-icon {
    margin-inline: auto;
  }

  .nature-tour-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .nature-image-area {
    min-height: 290px;
  }

  .nature-image-label > i {
    width: 38px;
    height: 38px;
  }

  .nature-image-label strong {
    font-size: 0.68rem;
  }

  .nature-content h3 {
    font-size: 1.55rem;
  }

  .nature-highlight {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .nature-highlight-icon {
    width: 38px;
    height: 38px;
  }

  .species-marquee {
    mask-image: linear-gradient(
      90deg,
      transparent,
      black 4%,
      black 96%,
      transparent
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .species-marquee-track {
    animation: none;
  }
}

/* ======================================================
   CONTACTO
====================================================== */

.contact-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(245, 200, 65, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 94% 25%,
      rgba(168, 206, 59, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 90%,
      rgba(217, 71, 63, 0.07),
      transparent 27%
    ),
    linear-gradient(180deg, var(--bg-soft), var(--bg-main));
}

.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(
      circle at 18px 18px,
      rgba(36, 84, 58, 0.08) 2px,
      transparent 2.5px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(36, 84, 58, 0.028) 49%,
      rgba(36, 84, 58, 0.028) 51%,
      transparent 52%
    );
  background-size:
    58px 58px,
    105px 105px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 10%,
    black 92%,
    transparent
  );
}

.contact-decoration {
  position: absolute;
  z-index: 0;
  color: var(--forest-700);
  opacity: 0.04;
  pointer-events: none;
}

.contact-decoration-one {
  top: 8%;
  left: 2%;
  font-size: 11rem;
  transform: rotate(-15deg);
}

.contact-decoration-two {
  right: 2%;
  bottom: 12%;
  font-size: 12rem;
  transform: rotate(18deg);
}

/* ======================================================
   MAPA
====================================================== */

.location-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(25, 58, 40, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(17, 46, 29, 0.13);
}

.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.location-title {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.location-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  color: var(--forest-950);
  font-size: 1.6rem;
  background: linear-gradient(
    135deg,
    var(--orchid-yellow),
    var(--toucan-orange)
  );
  box-shadow: 0 15px 32px rgba(245, 200, 65, 0.25);
}

.location-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.location-title h3 {
  margin: 0 0 0.35rem;
  color: var(--forest-950);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.location-title p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.location-route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 49px;
  padding: 0.8rem 1.1rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--forest-800);
  font-size: 0.7rem;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-route-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(25, 58, 40, 0.22);
}

.location-map-wrapper {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(25, 58, 40, 0.09);
  border-bottom: 1px solid rgba(25, 58, 40, 0.09);
}

.calakmul-map {
  width: 100%;
  height: 100%;
  background: #dbe4d7;
}

.map-floating-card {
  position: absolute;
  z-index: 500;
  left: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 300px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 17px;
  color: white;
  background: rgba(13, 29, 22, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.23);
}

.map-floating-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--forest-950);
  background: var(--orchid-yellow);
}

.map-floating-card small,
.map-floating-card strong,
.map-floating-card div > span {
  display: block;
}

.map-floating-card small {
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.map-floating-card strong {
  margin: 2px 0;
  font-size: 0.77rem;
}

.map-floating-card div > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
}

.map-legend {
  position: absolute;
  z-index: 500;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(13, 29, 22, 0.12);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 800;
}

.map-dot {
  font-size: 0.52rem;
}

.map-dot-main {
  color: var(--wild-red);
}

.map-dot-archaeology {
  color: var(--toucan-orange);
}

.map-dot-nature {
  color: var(--forest-500);
}

/* Marcadores personalizados */
.calakmul-map-marker {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 15px 15px 15px 3px;
  color: white;
  font-size: 1rem;
  background: var(--forest-700);
  box-shadow: 0 8px 20px rgba(13, 29, 22, 0.28);
  transform: rotate(-45deg);
}

.calakmul-map-marker i {
  transform: rotate(45deg);
}

.calakmul-map-marker.marker-main {
  background: var(--wild-red);
}

.calakmul-map-marker.marker-archaeology {
  background: var(--toucan-orange);
}

.calakmul-map-marker.marker-nature {
  background: var(--forest-600);
}

.calakmul-map .leaflet-popup-content-wrapper {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(13, 29, 22, 0.18);
}

.calakmul-map .leaflet-popup-content {
  margin: 0.9rem;
  font-family: inherit;
}

.map-popup span {
  display: block;
  margin-bottom: 3px;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.map-popup strong {
  display: block;
  color: var(--forest-950);
  font-size: 0.82rem;
}

.map-popup p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
}

.location-point {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0.8rem;
  text-align: left;
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 15px;
  color: var(--text-muted);
  background: rgba(247, 248, 245, 0.8);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.location-point:hover,
.location-point.active {
  transform: translateY(-4px);
  border-color: rgba(36, 84, 58, 0.23);
  background: white;
  box-shadow: 0 13px 28px rgba(20, 53, 34, 0.09);
}

.location-point.active {
  box-shadow:
    inset 0 -3px var(--orchid-yellow),
    0 13px 28px rgba(20, 53, 34, 0.09);
}

.location-point-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--forest-700);
  background: rgba(168, 206, 59, 0.16);
}

.location-point strong,
.location-point small {
  display: block;
}

.location-point strong {
  overflow: hidden;
  color: var(--forest-950);
  font-size: 0.66rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.location-point small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.52rem;
  line-height: 1.35;
}

/* ======================================================
   EQUIPO
====================================================== */

.team-introduction {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: clamp(3rem, 7vw, 5.5rem) auto 2rem;
  text-align: center;
}

.team-introduction > span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.team-introduction h3 {
  margin: 0 0 0.7rem;
  color: var(--forest-950);
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.team-introduction p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.contact-team-grid {
  position: relative;
  z-index: 2;
}

.contact-person-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 1.2rem;
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  overflow: hidden;
  border: 1px solid rgba(25, 58, 40, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(20, 53, 34, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.contact-person-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -105px;
  border-radius: 50%;
  background: var(--orchid-yellow);
  opacity: 0.09;
  transition: transform 0.5s ease;
}

.contact-person-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 206, 59, 0.35);
  box-shadow: 0 27px 65px rgba(20, 53, 34, 0.14);
}

.contact-person-card:hover::before {
  transform: scale(1.35);
}

.contact-person-number {
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  color: rgba(13, 29, 22, 0.08);
  font-size: 3rem;
  font-weight: 900;
}

.contact-person-avatar {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--forest-950);
  background: linear-gradient(135deg, var(--lime), var(--orchid-yellow));
  box-shadow: 0 13px 30px rgba(168, 206, 59, 0.22);
}

.contact-person-avatar span {
  font-size: 1rem;
  font-weight: 900;
}

.contact-person-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-person-role {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.contact-person-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--forest-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-person-copy > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.contact-person-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.person-action {
  min-width: 0;
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0.65rem;
  border: 1px solid rgba(25, 58, 40, 0.09);
  border-radius: 13px;
  color: var(--forest-800);
  background: rgba(247, 248, 245, 0.84);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.person-action:hover {
  color: var(--forest-900);
  transform: translateY(-3px);
  border-color: rgba(36, 84, 58, 0.22);
  background: white;
}

.person-action > i {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: var(--forest-700);
}

.person-action-whatsapp > i {
  background: #25d366;
}

.person-action small,
.person-action strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.person-action small {
  color: var(--text-muted);
  font-size: 0.5rem;
}

.person-action strong {
  font-size: 0.64rem;
}

.person-action-full {
  grid-column: 1 / -1;
}

/* ======================================================
   CONTACTO GENERAL
====================================================== */

.general-contact-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(400px, 1.15fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(245, 200, 65, 0.2),
      transparent 27%
    ),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: 0 28px 75px rgba(13, 29, 22, 0.22);
}

.general-contact-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -160px;
  bottom: -180px;
  border: 42px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.general-contact-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 61px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.general-contact-icon {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--forest-950);
  font-size: 1.45rem;
  background: linear-gradient(
    135deg,
    var(--orchid-yellow),
    var(--toucan-orange)
  );
}

.general-contact-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.general-contact-intro h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 900;
}

.general-contact-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  line-height: 1.55;
}

.general-contact-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
}

.general-contact-option {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.general-contact-option:hover {
  color: white;
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.1);
}

.general-contact-option > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--orchid-yellow);
  background: rgba(245, 200, 65, 0.1);
}

.general-contact-option small,
.general-contact-option strong {
  display: block;
}

.general-contact-option small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.52rem;
}

.general-contact-option strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 0.7rem;
}

.contact-socials {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-socials > span {
  display: block;
  max-width: 180px;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.58rem;
  line-height: 1.5;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.contact-social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-radius 0.3s ease;
}

.contact-social:hover {
  color: white;
  transform: translateY(-5px) rotate(-4deg);
  border-radius: 50%;
}

.contact-social-whatsapp:hover {
  background: #25d366;
}

.contact-social-facebook:hover {
  background: #1877f2;
}

.contact-social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* ======================================================
   FORMULARIO
====================================================== */

.reservation-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
  margin-top: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  border-radius: 31px;
  box-shadow: 0 35px 90px rgba(13, 29, 22, 0.2);
}

.reservation-information {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(
      circle at 15% 90%,
      rgba(168, 206, 59, 0.17),
      transparent 29%
    ),
    linear-gradient(145deg, var(--forest-950), var(--forest-700));
}

.reservation-information::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -190px;
  top: -170px;
  border: 48px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.reservation-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.reservation-information h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.reservation-information > p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  line-height: 1.75;
}

.reservation-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.reservation-benefits > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
}

.reservation-benefits > div > i {
  margin-top: 3px;
  color: var(--lime);
}

.reservation-benefits strong,
.reservation-benefits small {
  display: block;
}

.reservation-benefits strong {
  color: white;
  font-size: 0.73rem;
}

.reservation-benefits small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  line-height: 1.5;
}

.reservation-whatsapp-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 2.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 16px;
  background: rgba(37, 211, 102, 0.09);
}

.reservation-whatsapp-note > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: #25d366;
  font-size: 1.15rem;
}

.reservation-whatsapp-note small,
.reservation-whatsapp-note strong {
  display: block;
}

.reservation-whatsapp-note small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.54rem;
}

.reservation-whatsapp-note strong {
  color: white;
  font-size: 0.78rem;
}

/* Formulario blanco */
.reservation-form {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
}

.reservation-form-heading {
  margin-bottom: 1.7rem;
}

.reservation-form-heading > span {
  display: block;
  color: var(--forest-500);
  text-transform: uppercase;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reservation-form-heading h4 {
  margin: 0.3rem 0 0.4rem;
  color: var(--forest-950);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.reservation-form-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.69rem;
}

.reservation-form .form-label {
  margin-bottom: 0.4rem;
  color: var(--forest-900);
  font-size: 0.65rem;
  font-weight: 800;
}

.reservation-input {
  position: relative;
}

.reservation-input > i {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 1rem;
  color: var(--forest-500);
  font-size: 0.85rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.reservation-input .form-control,
.reservation-input .form-select {
  min-height: 52px;
  padding-left: 2.7rem;
  border: 1px solid rgba(25, 58, 40, 0.12);
  border-radius: 14px;
  color: var(--forest-950);
  background-color: #f7f8f5;
  font-size: 0.76rem;
  box-shadow: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.reservation-input .form-control:focus,
.reservation-input .form-select:focus {
  border-color: var(--forest-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(36, 84, 58, 0.08);
}

.reservation-textarea > i {
  top: 1.05rem;
  transform: none;
}

.reservation-textarea textarea.form-control {
  min-height: 135px;
  padding-top: 0.9rem;
  resize: vertical;
}

.reservation-character-counter {
  margin-top: 0.35rem;
  color: var(--text-muted);
  text-align: right;
  font-size: 0.56rem;
}

.reservation-form .invalid-feedback {
  font-size: 0.58rem;
}

.reservation-language-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.reservation-language-options label {
  cursor: pointer;
}

.reservation-language-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reservation-language-options span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(25, 58, 40, 0.12);
  border-radius: 13px;
  color: var(--text-muted);
  background: #f7f8f5;
  font-size: 0.67rem;
  font-weight: 800;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.reservation-language-options span:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 84, 58, 0.28);
}

.reservation-language-options input:checked + span {
  color: white;
  border-color: var(--forest-700);
  background: var(--forest-700);
  box-shadow: 0 10px 24px rgba(25, 58, 40, 0.18);
}

.reservation-language-options input:checked + span i {
  color: var(--orchid-yellow);
}

.reservation-privacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 9px;
  padding: 0.8rem;
  border-radius: 13px;
  background: rgba(36, 84, 58, 0.045);
  cursor: pointer;
}

.reservation-privacy input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--forest-700);
}

.reservation-privacy span {
  color: var(--text-muted);
  font-size: 0.62rem;
  line-height: 1.55;
}

.reservation-privacy-feedback {
  display: none;
}

.reservation-privacy.is-invalid {
  border: 1px solid #dc3545;
}

.reservation-privacy.is-invalid + .reservation-privacy-feedback {
  display: block;
}

.reservation-submit {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 17px;
  color: white;
  text-align: left;
  background: linear-gradient(135deg, #1da851, #25d366);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.23);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reservation-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.3);
}

.reservation-submit-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
}

.reservation-submit small,
.reservation-submit strong {
  display: block;
}

.reservation-submit small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.55rem;
}

.reservation-submit strong {
  font-size: 0.82rem;
}

.reservation-submit-note {
  max-width: 620px;
  margin: 0.7rem auto 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.56rem;
  line-height: 1.55;
}

/* Animación */
.contact-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.contact-reveal.contact-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   FOOTER
====================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 1.5rem;
  color: white;
  background:
    radial-gradient(
      circle at 15% 100%,
      rgba(168, 206, 59, 0.12),
      transparent 28%
    ),
    linear-gradient(145deg, #07150d, var(--forest-950));
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, white 1.5px, transparent 1.7px);
  background-size: 42px 42px;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.65fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3rem;
}

.footer-logo {
  width: auto;
  height: 67px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer-navigation > span,
.footer-contact > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--orchid-yellow);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.footer-navigation div {
  display: grid;
  gap: 0.65rem;
}

.footer-navigation a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-navigation a:hover,
.footer-contact a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-wrap: anywhere;
}

.footer-contact i {
  color: var(--lime);
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p,
.footer-bottom > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
}

.footer-bottom i {
  color: var(--wild-red);
}

/* ======================================================
   RESPONSIVE CONTACTO
====================================================== */

@media (max-width: 1199.98px) {
  .location-points {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .location-point {
    min-width: 220px;
    scroll-snap-align: start;
  }

  .general-contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-socials {
    grid-column: 1 / -1;
  }

  .contact-socials > span {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .location-card-header {
    align-items: flex-start;
  }

  .general-contact-card {
    grid-template-columns: 1fr;
  }

  .reservation-wrapper {
    grid-template-columns: 1fr;
  }

  .reservation-information {
    text-align: center;
  }

  .reservation-benefits {
    max-width: 650px;
    margin-inline: auto;
    text-align: left;
  }

  .reservation-whatsapp-note {
    max-width: 400px;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-decoration {
    display: none;
  }

  .location-card {
    border-radius: 23px;
  }

  .location-card-header {
    display: grid;
    gap: 1.2rem;
    padding: 1.3rem;
  }

  .location-title {
    align-items: flex-start;
  }

  .location-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .location-title h3 {
    font-size: 1.55rem;
  }

  .location-route-button {
    width: 100%;
  }

  .location-map-wrapper {
    height: 430px;
  }

  .map-floating-card {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
  }

  .map-legend {
    right: 0.6rem;
    left: 0.6rem;
    justify-content: center;
    border-radius: 14px;
  }

  .contact-person-card {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 21px;
  }

  .contact-person-avatar {
    margin-inline: auto;
  }

  .contact-person-actions {
    grid-template-columns: 1fr;
  }

  .person-action-full {
    grid-column: auto;
  }

  .general-contact-card {
    padding: 1.4rem;
    border-radius: 23px;
  }

  .general-contact-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .general-contact-icon {
    margin-inline: auto;
  }

  .general-contact-option:hover {
    transform: translateY(-3px);
  }

  .reservation-wrapper {
    border-radius: 23px;
  }

  .reservation-information {
    padding: 2rem 1.4rem;
  }

  .reservation-information h3 {
    font-size: 2.3rem;
  }

  .reservation-form {
    padding: 1.5rem 1.1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-navigation a:hover,
  .footer-contact a:hover {
    transform: translateY(-2px);
  }

  .footer-contact {
    justify-items: center;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .location-title {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-icon {
    margin-inline: auto;
  }

  .location-map-wrapper {
    height: 390px;
  }

  .map-floating-card {
    padding: 0.7rem;
  }

  .map-floating-card div > span {
    display: none;
  }

  .location-point {
    min-width: 190px;
  }

  .contact-person-actions {
    gap: 0.55rem;
  }

  .reservation-language-options {
    grid-template-columns: 1fr;
  }

  .reservation-information h3 {
    font-size: 2rem;
  }

  .general-contact-option {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .general-contact-option > span {
    width: 40px;
    height: 40px;
  }

  .footer-logo {
    height: 55px;
  }
}

/* ======================================================
   RESPONSIVE SOBRE NOSOTROS
====================================================== */

@media (max-width: 1199.98px) {
  .about-card {
    padding: 1.6rem;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .about-services-intro {
    max-width: 600px;
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 991.98px) {
  .about-card {
    max-width: 720px;
    margin-inline: auto;
  }

  .about-card-content > p {
    font-size: 0.95rem;
  }

  .about-service-items {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-section::after,
  .about-decoration {
    display: none;
  }

  .section-heading {
    margin-bottom: 2.4rem;
    padding-inline: 0.4rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .section-heading p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-card {
    padding: 1.4rem;
    border-radius: 23px;
  }

  .about-icon {
    width: 59px;
    height: 59px;
    margin-inline: auto;
    font-size: 1.5rem;
  }

  .about-card-label,
  .about-card h3 {
    text-align: center;
  }

  .about-card-content > p {
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .about-card-footer {
    text-align: center;
  }

  .about-services {
    padding: 1.35rem;
    border-radius: 23px;
  }

  .about-service-items {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .about-service-item small {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .section-kicker {
    font-size: 0.61rem;
    letter-spacing: 0.12em;
  }

  .about-card-number {
    font-size: 3rem;
  }

  .value-item {
    grid-template-columns: 35px minmax(0, 1fr) 18px;
    padding: 0.68rem;
  }

  .value-icon {
    width: 35px;
    height: 35px;
  }

  .about-services-intro h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 12px;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(13, 29, 22, 0.97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  }
  .nav-link {
    padding: 0.72rem 0.5rem !important;
  }
  .btn-contact-nav {
    width: 100%;
    margin-top: 0.4rem;
  }
  .nature-particle {
    display: none;
  }
}
@media (max-width: 767.98px) {
  :root {
    --nav-height: 75px;
  }
  .navbar {
    min-height: 75px;
  }
  .brand-symbol {
    width: 40px;
    height: 40px;
  }
  .hero-card {
    margin-top: 78px;
    margin-bottom: 115px;
    border-radius: 23px;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 18, 10, 0.9), rgba(7, 27, 15, 0.62)),
      linear-gradient(180deg, rgba(5, 15, 9, 0.25), rgba(7, 24, 15, 0.65));
  }
  .hero-description {
    line-height: 1.7;
  }
  .hero-description-secondary {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .scroll-indicator {
    right: 50%;
    transform: translateX(50%);
    bottom: 28px;
  }
  .scroll-indicator span {
    display: none;
  }
  .cursor-glow {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-card {
    padding: 1.45rem;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
  .title-main {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }
  .title-accent {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
  .mini-feature > i {
    width: 34px;
    height: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 992px) and (max-height: 760px) {
  .hero-container {
    padding-top: calc(var(--nav-height) + 4px);
    padding-bottom: 10px;
  }

  .hero-card {
    max-width: 1120px;
    padding: 1.6rem 2.2rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.65rem;
  }

  h1 {
    margin-bottom: 0.8rem;
  }

  .title-main {
    font-size: clamp(3.6rem, 5.7vw, 5.5rem);
  }

  .title-accent {
    font-size: clamp(2.6rem, 3.8vw, 3.8rem);
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .hero-description p {
    margin-bottom: 0.65rem;
  }

  .hero-actions {
    margin-top: 0.8rem;
  }

  .btn-primary-explore,
  .btn-outline-explore {
    min-height: 48px;
    padding: 0.7rem 1.25rem;
  }

  .hero-features {
    margin-top: 0.8rem;
    padding-top: 0.75rem;
  }

  .mini-feature > i {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-container {
    width: 100%;
    height: auto;
    padding: 92px 16px 55px;
    display: block;
  }

  .hero-container > .row {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.1rem;
    border-radius: 22px;
    text-align: center;
    overflow: hidden;
  }

  .hero-eyebrow {
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.58rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .hero-eyebrow span {
    width: 25px;
  }

  h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0 0 1.15rem;
    white-space: normal;
    line-height: 1;
  }

  .title-main {
    display: block;
    width: 100%;
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 0.95;
    text-align: center;
    white-space: nowrap;
  }

  .title-accent {
    display: block;
    margin: 0.12rem 0 0;
    font-size: clamp(2.6rem, 14vw, 4.2rem);
    line-height: 0.95;
    text-align: center;
    transform: none;
  }

  .hero-description {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.86rem;
    line-height: 1.65;
    text-align: center;
  }

  .hero-description p {
    margin-bottom: 1rem;
  }

  .hero-description-secondary {
    display: none;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .hero-actions .btn,
  .btn-primary-explore,
  .btn-outline-explore {
    width: 100%;
    min-height: 50px;
    padding: 0.8rem 1rem;
    font-size: 0.78rem;
  }

  .hero-features {
    width: 100%;
    margin-top: 1.2rem;
    padding-top: 1.15rem;
  }

  .hero-features .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
  }

  .hero-features [class*="col-"] {
    width: 100%;
    max-width: 250px;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .mini-feature {
    width: 100%;
    max-width: 220px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
  }

  .mini-feature > i {
    width: 38px;
    height: 38px;
  }

  .mini-feature strong {
    font-size: 0.72rem;
  }

  .mini-feature span {
    font-size: 0.61rem;
  }

  .hero-bottom-gradient {
    height: 100px;
  }
}
