* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #edf3e5;
  color: #10200f;
}

.section {
  padding: 100px 7%;
  background: #edf3e5;
  text-align: center;
}

.alt {
  background: #e4edd9;
}

#inicio + .section {
  position: relative;
  padding-top: 100px;
  background: #edf3e5;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100px;

  background: linear-gradient(
    to bottom,
    rgba(237, 243, 229, 0) 0%,
    rgba(237, 243, 229, 0.08) 25%,
    rgba(237, 243, 229, 0.35) 55%,
    rgba(237, 243, 229, 0.72) 80%,
    #edf3e5 100%
  );

  z-index: 2;
  pointer-events: none;
}
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background: #303b25;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 5px 18px rgba(24, 30, 18, 0.25);
}

/* LOGO */
.logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.35s ease;
}

.logo {
  width: 145px;
  height: 62px;
  padding: 8px 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(244, 247, 235, 0.10);
  border: 1px solid rgba(235, 240, 218, 0.18);
  border-radius: 14px;

  text-decoration: none;

  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.16),
    inset 0 0 12px rgba(255, 255, 255, 0.04);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  transform: scale(1.18);

  filter:
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.logo:hover {
  transform: translateY(-2px);

  background: rgba(244, 247, 235, 0.16);
  border-color: rgba(235, 240, 218, 0.32);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(185, 201, 149, 0.15);
}

.logo:hover img {
  transform: scale(1.25);

  filter:
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 5px rgba(220, 228, 190, 0.22));
}

/* MENÚ */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  position: relative;
  color: #edf1e3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  background: rgba(210, 222, 177, 0.12);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 12px rgba(225, 235, 198, 0.08),
    0 4px 14px rgba(0, 0, 0, 0.14);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #b9c995;
  border-radius: 10px;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 55%;
}

/* BOTÓN MÓVIL */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 238, 210, 0.28);
  color: #edf1e3;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  font-size: 27px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(230, 238, 210, 0.45);
}

/* SLIDER */
/* =========================================
   HERO / SLIDER — VERSIÓN DEFINITIVA
========================================= */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 82px);
  min-height: 580px;
  margin-top: 82px;
  overflow: hidden;


  /* CENTRADO REAL DEL CUADRO */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px 7%;
}


/* IMÁGENES DEL SLIDER */

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1.2s ease;

  z-index: 0;
}

.slide.active {
  opacity: 1;
}


/* OSCURECIMIENTO MUY SUAVE DE LA FOTO */

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(35, 48, 27, 0.14);

  z-index: 1;
  pointer-events: none;
}


/* CUADRO CENTRAL */

.hero-box {
  position: relative;
  z-index: 3;

  /* IMPORTANTE: SIN TOP NI TRANSFORM */
  top: auto;
  transform: none;

  width: min(90,860px);
  margin: 0;

  padding: 30px 44px;

  text-align: center;

  /* MUCHO MÁS TRANSPARENTE */
  background: rgba(248, 250, 238, 0.58);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;

  box-shadow:
    0 18px 42px rgba(20, 30, 15, 0.24);
}


/* TEXTO SUPERIOR */

.hero-tag {
  display: inline-block;
  margin-bottom: 14px;

  color: #65743f;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;

  text-transform: uppercase;
}


/* TÍTULO — VERDE OLIVO */

.hero-box h1 {
  margin: 0 0 24px;
  color: #536238;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    letter-spacing: 4px;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -1px;
  }
}


/* PÁRRAFOS — TAMBIÉN VERDE OLIVO */

.hero-box p {
  max-width: 690px;

  margin: 0 auto 17px;

  color: #56643d;

  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;

  text-transform: uppercase;
}

.hero-box p:last-child {
  margin-bottom: 0;
}


/* PALABRAS IMPORTANTES */

.hero-highlight {
  position: relative;
  display: inline-block;

  color: #46552f;

  font-weight: 900;

  padding: 0 2px;

  cursor: default;

  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}


/* LÍNEA DE COLOR */

.hero-highlight::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 100%;
  height: 3px;

  border-radius: 20px;

  transform: scaleX(0.32);
  transform-origin: left center;

  opacity: 0.75;

  transition:
    transform 0.4s ease,
    height 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}


/* EFECTO AL PASAR EL CURSOR */

.hero-highlight:hover {
  color: #344223;

  transform: translateY(-1px);

  text-shadow:
    0 3px 10px rgba(58, 72, 38, 0.16);
}

.hero-highlight:hover::after {
  transform: scaleX(1);

  height: 5px;

  opacity: 1;
}


/* COLORES DE LAS LÍNEAS */

.hero-highlight.local::after {
  background: linear-gradient(
    90deg,
    #70894a,
    #a7bc6b
  );
}

.hero-highlight.safe::after {
  background: linear-gradient(
    90deg,
    #c47a22,
    #e7ae4d
  );
}

.hero-highlight.owner::after {
  background: linear-gradient(
    90deg,
    #328577,
    #62b5a2
  );
}

.hero-highlight.trust::after {
  background: linear-gradient(
    90deg,
    #b16f29,
    #dda04c
  );
}

.hero-highlight.route::after {
  background: linear-gradient(
    90deg,
    #8a742f,
    #c4a950
  );
}

.hero-highlight.eco::after {
  background: linear-gradient(
    90deg,
    #4d852f,
    #82ad47
  );
}


/* =====================================
   RUTAS Y DESTINOS
===================================== */

.destinations-section {
  position: relative;
  overflow: hidden;

  padding-top: 110px;
  padding-bottom: 110px;

  background:
    linear-gradient(
      180deg,
      #e4edd9 0%,
      #edf3e5 100%
    );
}

/* Elementos decorativos de fondo */

.destinations-section::before,
.destinations-section::after {
  content: "";
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.destinations-section::before {
  width: 390px;
  height: 390px;

  top: 100px;
  left: -240px;

  background: rgba(119, 142, 75, 0.1);
}

.destinations-section::after {
  width: 320px;
  height: 320px;

  right: -180px;
  bottom: 120px;

  background: rgba(194, 143, 54, 0.08);
}

/* INTRODUCCIÓN */

.destinations-heading {
  position: relative;
  z-index: 2;

  width: min(100%, 980px);
  margin: 0 auto 55px;

  text-align: center;
}

.destinations-heading h2 {
  margin-bottom: 28px;
}

.destinations-location,
.destinations-intro,
.destinations-invitation {
  color: #465438;
}

.destinations-location {
  margin-bottom: 17px;

  font-size: 18px;
  line-height: 1.75;
}

.destinations-location strong {
  position: relative;

  color: #526338;
  font-weight: 900;
}

.destinations-location strong::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      #71894b,
      #b2c779
    );

  border-radius: 20px;
}

.destinations-intro {
  margin-bottom: 18px;

  font-size: 17px;
  line-height: 1.8;
}

.destinations-invitation {
  display: inline-block;

  margin-top: 7px;
  padding: 11px 18px;

  color: #586b3d;
  background: rgba(255, 255, 255, 0.48);

  border-left: 4px solid #839c56;
  border-radius: 5px 12px 12px 5px;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    0 8px 18px rgba(57, 73, 39, 0.08);
}

/* EXPLORADOR COMPLETO */

.destination-explorer {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;

  width: min(100%, 1250px);
  margin: 0 auto;
  padding: 22px;

  background: #435332;

  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 34px;

  box-shadow:
    0 25px 55px rgba(40, 53, 29, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* MENÚ LATERAL */

.destination-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;

  max-height: 680px;
  padding: 4px 8px 4px 4px;

  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aabc7b rgba(255, 255, 255, 0.08);
}

.destination-menu::-webkit-scrollbar {
  width: 7px;
}

.destination-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

.destination-menu::-webkit-scrollbar-thumb {
  background: #aabc7b;
  border-radius: 20px;
}

.destination-tab {
  position: relative;

  width: 100%;
  min-height: 53px;
  padding: 11px 14px;

  display: flex;
  align-items: center;
  gap: 13px;

  color: #e8eedb;
  background: rgba(255, 255, 255, 0.055);

  border: 1px solid transparent;
  border-radius: 13px;

  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-align: left;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-tab:hover {
  color: #ffffff;
  background: rgba(224, 236, 194, 0.12);

  border-color: rgba(224, 236, 194, 0.14);

  transform: translateX(5px);
}

.destination-tab.active {
  color: #354229;

  background:
    linear-gradient(
      135deg,
      #dce9c5,
      #bdcf99
    );

  border-color: rgba(255, 255, 255, 0.45);

  transform: translateX(7px);

  box-shadow:
    0 9px 20px rgba(27, 38, 20, 0.24);
}

.destination-tab-number {
  flex: 0 0 auto;

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #cbd9a8;
  background: rgba(255, 255, 255, 0.08);

  border-radius: 9px;

  font-size: 10px;
  font-weight: 900;

  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.destination-tab.active .destination-tab-number {
  color: #ffffff;
  background: #617545;
}

/* VISTA DEL DESTINO */

.destination-view {
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);

  min-height: 650px;

  background: #f2f6e9;

  border-radius: 24px;

  box-shadow:
    0 15px 35px rgba(25, 35, 19, 0.24);
}

/* IMAGEN */

.destination-image-wrapper {
  position: relative;
  overflow: hidden;

  min-height: 100%;
  background: #cbd8b6;
}

.destination-image {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition:
    opacity 0.35s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-image.changing {
  opacity: 0.18;
  transform: scale(1.06);
}

.destination-view:hover .destination-image {
  transform: scale(1.035);
}

.destination-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(38, 51, 28, 0.52),
      transparent 48%
    );

  pointer-events: none;
}

.destination-image-label {
  position: absolute;

  left: 22px;
  bottom: 22px;

  padding: 9px 14px;

  color: #ffffff;
  background: rgba(53, 68, 38, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 7px;

  backdrop-filter: blur(6px);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* INFORMACIÓN */

.destination-information {
  padding: 42px 39px;

  text-align: left;

  animation: destinationReveal 0.55s ease;
}

.destination-information.changing {
  animation: none;
  opacity: 0.25;
  transform: translateY(9px);
}

@keyframes destinationReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 23px;
}

.destination-small-title {
  display: block;
  margin-bottom: 8px;

  color: #778752;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.destination-information h3 {
  color: #3e4d2d;

  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.08;
  text-transform: uppercase;
}

.destination-counter {
  flex: 0 0 auto;

  color: rgba(66, 82, 46, 0.17);

  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.destination-information > p {
  margin: 0;

  color: #455338;

  font-size: 16px;
  line-height: 1.77;
  text-align: left;
}

/* ACTIVIDADES Y HORARIO */

.destination-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;

  margin-top: 27px;
}

.destination-detail {
  padding: 17px;

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;

  background: rgba(217, 230, 194, 0.6);

  border: 1px solid rgba(77, 94, 53, 0.11);
  border-radius: 15px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-detail:hover {
  transform: translateX(5px);

  background: rgba(224, 235, 205, 0.92);

  box-shadow:
    0 9px 18px rgba(55, 70, 38, 0.12);
}

.destination-detail-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #667c48;

  border-radius: 12px;

  font-size: 20px;
}

.destination-detail-label {
  display: block;
  margin-bottom: 5px;

  color: #697b49;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.destination-detail p {
  margin: 0;

  color: #3f4d33;

  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.destination-information .destination-schedule-note {
  margin-top: 17px;

  color: #707c60;

  font-size: 11px;
  line-height: 1.55;
  font-style: italic;
}

/* RECOLECCIÓN */

.destination-pickup {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;

  width: min(100%, 1120px);
  margin: 45px auto 0;
  padding: 27px 30px;

  color: #ecf2df;
  background:
    linear-gradient(
      135deg,
      #53663d,
      #3f5030
    );

  border-radius: 23px;

  text-align: left;

  box-shadow:
    0 18px 35px rgba(42, 55, 31, 0.21);
}

.destination-pickup-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #43532f;
  background: #c9d9a8;

  border-radius: 17px;

  font-size: 29px;
  font-weight: 900;

  transition:
    transform 0.35s ease;
}

.destination-pickup:hover .destination-pickup-icon {
  transform: translateX(5px);
}

.destination-pickup span {
  color: #bacb94;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.destination-pickup h3 {
  margin: 4px 0 7px;

  color: #ffffff;

  font-size: 24px;
}

.destination-pickup p {
  margin: 0;

  color: #dde7ce;

  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.destination-contact-button {
  padding: 13px 19px;

  color: #3f4f2f;
  background: #d6e4bd;

  border-radius: 9px;

  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-contact-button:hover {
  transform: translateY(-3px);

  background: #ecf4dd;

  box-shadow:
    0 9px 18px rgba(23, 32, 17, 0.21);
}

.destination-availability {
  position: relative;
  z-index: 2;

  margin: 18px auto 0;

  color: #68745a;

  font-size: 11px;
  line-height: 1.5;
  font-style: italic;
}

/* SOMBRA SUAVE DEL COLOR AL ACTIVARSE */

.hero-highlight.local:hover::after {
  box-shadow: 0 3px 12px rgba(112, 137, 74, 0.45);
}

.hero-highlight.safe:hover::after,
.hero-highlight.trust:hover::after {
  box-shadow: 0 3px 12px rgba(196, 122, 34, 0.4);
}

.hero-highlight.owner:hover::after {
  box-shadow: 0 3px 12px rgba(50, 133, 119, 0.4);
}

.hero-highlight.route:hover::after {
  box-shadow: 0 3px 12px rgba(138, 116, 47, 0.4);
}

.hero-highlight.eco:hover::after {
  box-shadow: 0 3px 12px rgba(77, 133, 47, 0.45);
}
/* SECCIONES */
.section {
  padding: 100px 7%;
  background: #f6faf2;
  text-align: center;
}

.alt {
  background: #eef7e8;
}

.section h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: #26301e;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.section h2.visible-title {
  opacity: 1;
  transform: translateY(0);
}

.section h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  background: #9cab72;
  margin: 16px auto 0;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(156, 171, 114, 0.35);
}

.section p {
  max-width: 950px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}

/* TARJETAS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.info-card {
  background: linear-gradient(135deg, #d9e8c8, #c8dbad);
  padding: 34px 30px;
  border-radius: 26px;
  text-align: left;
  border: 1px solid rgba(83, 98, 56, 0.16);
  box-shadow: 0 14px 30px rgba(48, 59, 37, 0.13);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.info-card:hover {
  transform: translateY(-16px) scale(1.08);
  background: linear-gradient(135deg, #e4f0d3, #c2d89f);
  box-shadow:
    0 24px 45px rgba(48, 59, 37, 0.26),
    0 0 28px rgba(124, 151, 75, 0.26);
  z-index: 5;
}

.info-card h3 {
  color: #3d4b2a;
  font-size: 27px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.info-card p,
.info-card li {
  color: #334126;
  font-size: 16px;
  line-height: 1.7;
}

.info-card ul {
  padding-left: 20px;
}

/* =====================================
   MISIÓN, VISIÓN Y VALORES
===================================== */

#mision {
  position: relative;
  overflow: hidden;
}

/* Formas decorativas suaves del fondo */
#mision::before,
#mision::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

#mision::before {
  width: 320px;
  height: 320px;
  top: 60px;
  left: -170px;
  background: rgba(153, 174, 103, 0.14);
}

#mision::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 20px;
  background: rgba(207, 155, 63, 0.11);
}

.section-label {
  position: relative;
  z-index: 2;

  display: inline-block;
  margin-bottom: 12px;

  color: #78854f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.info-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;

  max-width: 1180px;
  margin: 0 auto;

  align-items: stretch;
  perspective: 1200px;
}

/* Mayor especificidad para evitar que el estilo blanco anterior gane */
.info-grid .info-card {
  position: relative;
  overflow: hidden;

  min-height: 370px;
  padding: 34px 30px 30px;

  display: flex;
  flex-direction: column;

  text-align: left;

  background:
    linear-gradient(
      145deg,
      rgba(218, 232, 194, 0.98),
      rgba(196, 216, 163, 0.96)
    );

  border: 1px solid rgba(76, 94, 48, 0.16);
  border-radius: 28px;

  box-shadow:
    0 14px 30px rgba(49, 62, 36, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease;
}

/* Línea superior distintiva */
.info-grid .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 7px;

  background: var(--card-accent);
}

/* Círculo decorativo */
.info-grid .info-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;

  top: -78px;
  right: -62px;

  border-radius: 50%;
  background: var(--card-decoration);

  transition:
    transform 0.55s ease,
    opacity 0.45s ease;
}

.card-mision {
  --card-accent: linear-gradient(90deg, #6f8748, #a2b86d);
  --card-decoration: rgba(107, 132, 68, 0.16);
}

.card-vision {
  --card-accent: linear-gradient(90deg, #b67a2c, #d8aa57);
  --card-decoration: rgba(190, 133, 53, 0.14);
}

.card-valores {
  --card-accent: linear-gradient(90deg, #337d6d, #71ad91);
  --card-decoration: rgba(47, 126, 105, 0.13);
}

/* Efecto popup */
.info-grid .info-card:hover {
  transform:
    translateY(-18px)
    scale(1.065)
    rotateX(2deg);

  background:
    linear-gradient(
      145deg,
      rgba(230, 240, 211, 1),
      rgba(204, 222, 174, 1)
    );

  border-color: rgba(76, 94, 48, 0.3);

  box-shadow:
    0 30px 55px rgba(44, 57, 32, 0.25),
    0 8px 18px rgba(44, 57, 32, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  z-index: 5;
}

.info-grid .info-card:hover::after {
  transform: scale(1.35);
  opacity: 0.85;
}

/* Número decorativo */
.info-number {
  position: absolute;
  top: 21px;
  right: 24px;

  color: rgba(62, 79, 42, 0.17);

  font-size: 42px;
  font-weight: 900;
  line-height: 1;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.info-card:hover .info-number {
  color: rgba(62, 79, 42, 0.29);
  transform: translateY(-3px);
}

/* Icono */
.info-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  color: #f5f8ea;
  background: #52633a;

  font-size: 27px;
  font-weight: 900;

  box-shadow:
    0 10px 20px rgba(55, 70, 38, 0.22);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.card-vision .info-icon {
  background: #a56d28;
}

.card-valores .info-icon {
  background: #397867;
}

.info-card:hover .info-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);

  box-shadow:
    0 15px 27px rgba(55, 70, 38, 0.28);
}

/* Títulos */
.info-grid .info-card h3 {
  position: relative;

  margin-bottom: 17px;

  color: #3d4b2a;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.info-grid .info-card h3::after {
  content: "";
  display: block;

  width: 42px;
  height: 4px;
  margin-top: 10px;

  border-radius: 20px;
  background: var(--card-accent);

  transition: width 0.4s ease;
}

.info-card:hover h3::after {
  width: 85px;
}

/* Texto */
.info-grid .info-card p,
.info-grid .info-card li {
  color: #37432c;
  font-size: 16px;
  line-height: 1.72;
}

.info-grid .info-card p {
  margin: 0;
}

.info-grid .info-card strong {
  color: #4d6033;
  font-weight: 900;
}

.info-grid .info-card ul {
  margin: 0;
  padding-left: 20px;
}

.info-grid .info-card li {
  margin-bottom: 6px;
}

.info-grid .info-card li::marker {
  color: #667e43;
}

/* Texto inferior */
.card-detail {
  display: block;
  margin-top: auto;
  padding-top: 24px;

  color: #667647;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* =====================================
   CONTACTO Y RESERVACIONES
===================================== */

.contact-section {
  position: relative;
  overflow: hidden;

  padding-top: 110px;
  padding-bottom: 110px;

  color: #344128;

  background:
    linear-gradient(
      180deg,
      #e4edd9 0%,
      #dce8ce 100%
    );
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before {
  width: 420px;
  height: 420px;

  top: -220px;
  left: -230px;

  background: rgba(107, 133, 70, 0.12);
}

.contact-section::after {
  width: 340px;
  height: 340px;

  right: -190px;
  bottom: 90px;

  background: rgba(191, 139, 52, 0.09);
}

/* ENCABEZADO */

.contact-heading {
  position: relative;
  z-index: 2;

  width: min(100%, 850px);
  margin: 0 auto 48px;

  text-align: center;
}

.contact-label {
  color: #76864f;
}

.contact-heading h2 {
  color: #3b492c;
}

.contact-heading p {
  max-width: 780px;

  color: #526044;

  font-size: 17px;
  line-height: 1.75;
}

/* =====================================
   TARJETA DE IDENTIDAD
===================================== */

.contact-identity-card {
  position: relative;
  z-index: 2;

  width: min(100%, 980px);
  margin: 0 auto;
  padding: 42px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 32px;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #4d6038,
      #344428
    );

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;

  box-shadow:
    0 24px 50px rgba(42, 55, 31, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.contact-identity-card:hover {
  transform: translateY(-10px) scale(1.015);

  background:
    linear-gradient(
      135deg,
      #5c7042,
      #3e5030
    );

  box-shadow:
    0 34px 65px rgba(42, 55, 31, 0.34),
    0 0 0 4px rgba(190, 207, 145, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.contact-identity-decoration {
  position: absolute;

  width: 270px;
  height: 270px;

  top: -150px;
  right: -100px;

  border-radius: 50%;

  background: rgba(218, 232, 187, 0.1);

  transition: transform 0.55s ease;
}

.contact-identity-card:hover .contact-identity-decoration {
  transform: scale(1.35);
}

/* AVATAR */

.contact-avatar {
  position: relative;
  z-index: 2;

  width: 130px;
  height: 130px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #41502f;

  background:
    linear-gradient(
      135deg,
      #dce9bd,
      #adc47d
    );

  border: 6px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;

  font-size: 40px;
  font-weight: 900;

  box-shadow:
    0 17px 30px rgba(22, 31, 16, 0.25);

  transition:
    transform 0.4s ease,
    border-radius 0.4s ease;
}

.contact-identity-card:hover .contact-avatar {
  transform: rotate(-4deg) scale(1.06);
  border-radius: 50%;
}

/* CONTENIDO DE IDENTIDAD */

.contact-identity-content {
  position: relative;
  z-index: 2;

  text-align: left;
}

.contact-owner-label {
  color: #c4d39f;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-identity-content h3 {
  margin: 8px 0 4px;

  color: #ffffff;

  font-size: clamp(31px, 4vw, 47px);
  line-height: 1;
}

.contact-company {
  margin: 0 0 24px;

  color: #d3dfbd;

  font-size: 17px;
  font-weight: 700;
}

.contact-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin-bottom: 23px;
}

.contact-email-item {
  grid-column: 1 / -1;
}

.contact-data-item {
  padding: 14px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #eaf0df;
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-data-item:hover {
  transform: translateY(-4px);

  background: rgba(222, 235, 190, 0.14);
  border-color: rgba(222, 235, 190, 0.23);

  box-shadow:
    0 10px 20px rgba(20, 29, 14, 0.18);
}

.contact-data-icon {
  flex: 0 0 auto;

  width: 41px;
  height: 41px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #425132;
  background: #c8d9a5;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 900;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.contact-data-item:hover .contact-data-icon {
  transform: rotate(-5deg) scale(1.08);
  background: #e0eac8;
}

.contact-data-item small {
  display: block;

  margin-bottom: 3px;

  color: #b9c994;

  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.contact-data-item strong {
  display: block;

  color: #ffffff;

  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-response-message {
  margin: 0;

  color: #dce5ce;

  font-size: 14px;
  line-height: 1.7;
}

.contact-response-message strong {
  color: #ffffff;
}

/* =====================================
   FORMULARIO
===================================== */

.reservation-card {
  position: relative;
  z-index: 2;

  width: min(100%, 1120px);
  margin: 48px auto 0;

  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);

  overflow: hidden;

  background: #f4f7ec;

  border: 1px solid rgba(75, 92, 51, 0.13);
  border-radius: 32px;

  box-shadow:
    0 24px 48px rgba(47, 60, 34, 0.19);
}

/* INTRODUCCIÓN */

.reservation-introduction {
  position: relative;

  padding: 48px 38px;

  overflow: hidden;

  color: #edf3e4;
  background:
    linear-gradient(
      155deg,
      #63794a,
      #425431
    );

  text-align: left;
}

.reservation-introduction::after {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  left: -120px;
  bottom: -120px;

  border-radius: 50%;

  background: rgba(218, 232, 187, 0.1);
}

.reservation-number {
  position: absolute;

  top: 25px;
  right: 25px;

  color: rgba(255, 255, 255, 0.11);

  font-size: 80px;
  font-weight: 900;
  line-height: 1;
}

.reservation-label {
  position: relative;
  z-index: 2;

  color: #c5d59f;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.reservation-introduction h3 {
  position: relative;
  z-index: 2;

  margin: 13px 0 22px;

  color: #ffffff;

  font-size: clamp(30px, 3.6vw, 43px);
  line-height: 1.08;
  text-transform: uppercase;
}

.reservation-introduction h3::after {
  content: "";

  display: block;

  width: 65px;
  height: 5px;

  margin-top: 15px;

  background: #b8ca8a;

  border-radius: 20px;

  transition: width 0.4s ease;
}

.reservation-card:hover .reservation-introduction h3::after {
  width: 125px;
}

.reservation-introduction p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #e1e9d5;

  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.reservation-benefits {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 9px;

  margin-top: 28px;
}

.reservation-benefits span {
  padding: 10px 12px;

  color: #eaf0df;
  background: rgba(255, 255, 255, 0.08);

  border-left: 3px solid #b9cd88;
  border-radius: 5px 10px 10px 5px;

  font-size: 12px;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.reservation-benefits span:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.14);
}

/* CAMPOS */

.reservation-form {
  padding: 42px;

  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.form-field {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #52613e;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 14px 15px;

  color: #344128;
  background: #ffffff;

  border: 1px solid rgba(77, 94, 53, 0.18);
  border-radius: 12px;

  outline: none;

  font: inherit;
  font-size: 14px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 125px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a947e;
}

.form-field input:hover,
.form-field textarea:hover {
  background: #fbfdf8;

  border-color: rgba(95, 117, 64, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  transform: translateY(-2px);

  border-color: #7b9555;

  box-shadow:
    0 0 0 4px rgba(123, 149, 85, 0.12),
    0 8px 16px rgba(63, 79, 43, 0.1);
}

/* PIE DEL FORMULARIO */

.reservation-form-footer {
  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid rgba(73, 90, 51, 0.13);
}

.reservation-form-footer p {
  margin: 0 0 18px;

  color: #6b7660;

  font-size: 11px;
  line-height: 1.55;
  text-align: left;
}

.reservation-submit {
  width: 100%;
  padding: 16px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #637a49,
      #465a34
    );

  border: 0;
  border-radius: 13px;

  font: inherit;
  font-size: 14px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 12px 23px rgba(49, 65, 35, 0.22);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.reservation-submit:hover {
  transform: translateY(-4px);

  filter: brightness(1.08);

  box-shadow:
    0 18px 30px rgba(49, 65, 35, 0.3);
}

.reservation-submit-arrow {
  font-size: 23px;

  transition: transform 0.3s ease;
}

.reservation-submit:hover .reservation-submit-arrow {
  transform: translateX(7px);
}















/* RESPONSIVE */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .info-grid .info-card {
    min-height: auto;
  }

  .info-grid .info-card:hover {
    transform: translateY(-10px) scale(1.025);
  }
.contact-identity-card {
  grid-template-columns: 1fr;

  max-width: 720px;

  text-align: center;
}

.contact-avatar {
  margin: 0 auto;
}

.contact-identity-content {
  text-align: center;
}

.contact-data-grid {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 23px;
}

.reservation-card {
  grid-template-columns: 1fr;

  max-width: 760px;
}

.reservation-introduction {
  text-align: center;
}

.reservation-introduction p {
  text-align: center;
}

.reservation-introduction h3::after {
  margin-left: auto;
  margin-right: auto;
}

.reservation-benefits {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}

  /* DESTINOS TABLET */

.destinations-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.destination-explorer {
  grid-template-columns: 1fr;
  padding: 17px;
}

.destination-menu {
  flex-direction: row;

  max-height: none;
  padding: 2px 2px 10px;

  overflow-x: auto;
  overflow-y: hidden;
}

.destination-tab {
  flex: 0 0 auto;

  width: auto;
  min-width: 155px;

  white-space: nowrap;
}

.destination-tab:hover,
.destination-tab.active {
  transform: translateY(-3px);
}

.destination-view {
  grid-template-columns: 1fr;
  min-height: auto;
}

.destination-image-wrapper {
  min-height: 390px;
}

.destination-information {
  padding: 38px 32px;
}

.destination-pickup {
  grid-template-columns: auto minmax(0, 1fr);
}

.destination-contact-button {
  grid-column: 1 / -1;

  text-align: center;
}
}

@media (max-width: 520px) {
  .info-grid {
    gap: 22px;
  }

  .info-grid .info-card {
    padding: 28px 23px;
    border-radius: 22px;
  }


.contact-section {
  padding-left: 4%;
  padding-right: 4%;
}

.contact-heading {
  margin-bottom: 35px;
}

.contact-heading p {
  font-size: 15px;
}

.contact-identity-card {
  padding: 30px 18px;

  border-radius: 23px;
}

.contact-avatar {
  width: 105px;
  height: 105px;

  border-radius: 27px;

  font-size: 32px;
}

.contact-data-grid {
  grid-template-columns: 1fr;
}

.contact-email-item {
  grid-column: auto;
}

.contact-data-item {
  text-align: left;
}

.contact-identity-content h3 {
  font-size: 34px;
}

.reservation-card {
  margin-top: 35px;

  border-radius: 23px;
}

.reservation-introduction {
  padding: 38px 22px;
}

.reservation-introduction h3 {
  font-size: 30px;
}

.reservation-form {
  padding: 28px 18px;
}

.form-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-field-full {
  grid-column: auto;
}

.form-field input,
.form-field textarea {
  font-size: 16px;
}

.reservation-submit {
  padding: 15px;
  font-size: 13px;
}

/* DESTINOS CELULAR */

.destinations-section {
  padding-left: 4%;
  padding-right: 4%;
}

.destinations-heading {
  margin-bottom: 38px;
}

.destinations-location {
  font-size: 16px;
}

.destinations-intro {
  font-size: 15px;
  line-height: 1.7;
}

.destinations-invitation {
  font-size: 13px;
}

.destination-explorer {
  padding: 11px;
  border-radius: 23px;
}

.destination-menu {
  gap: 6px;
}

.destination-tab {
  min-width: 137px;
  min-height: 47px;

  padding: 9px 11px;

  font-size: 12px;
}

.destination-tab-number {
  width: 27px;
  height: 27px;

  font-size: 9px;
}

.destination-view {
  border-radius: 17px;
}

.destination-image-wrapper {
  min-height: 245px;
}

.destination-image-label {
  left: 14px;
  bottom: 14px;

  font-size: 8px;
}

.destination-information {
  padding: 27px 20px;
}

.destination-title-row {
  margin-bottom: 18px;
}

.destination-information h3 {
  font-size: 27px;
}

.destination-counter {
  font-size: 38px;
}

.destination-information > p {
  font-size: 14.5px;
  line-height: 1.7;
}

.destination-detail {
  padding: 14px;

  grid-template-columns: 37px minmax(0, 1fr);
  gap: 11px;
}

.destination-detail-icon {
  width: 37px;
  height: 37px;

  border-radius: 10px;
}

.destination-detail p {
  font-size: 13px;
}

.destination-pickup {
  grid-template-columns: 1fr;

  padding: 24px 20px;

  text-align: center;
}

.destination-pickup-icon {
  margin: 0 auto;
}

.destination-pickup p {
  text-align: center;
}

.destination-pickup h3 {
  font-size: 21px;
}
  .info-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    font-size: 23px;
  }

  .info-grid .info-card h3 {
    font-size: 23px;
  }

  .info-grid .info-card p,
  .info-grid .info-card li {
    font-size: 15px;
  }

  .info-grid .info-card:hover {
    transform: translateY(-6px) scale(1.015);
  }
}

/* =====================================
   SOLUCIONES DE TRANSPORTE
===================================== */

.servicios-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #edf3e5;
}

.servicios-panel {
  position: relative;
  overflow: hidden;

  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 70px 55px;

  background:
    linear-gradient(
      145deg,
      #52633a 0%,
      #3f4f2d 100%
    );

  border-radius: 34px;

  box-shadow:
    0 25px 55px rgba(40, 52, 29, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Decoración del panel */
.servicios-panel::before,
.servicios-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.servicios-panel::before {
  width: 330px;
  height: 330px;
  top: -170px;
  right: -120px;

  background: rgba(198, 214, 156, 0.11);
}

.servicios-panel::after {
  width: 260px;
  height: 260px;
  left: -140px;
  bottom: -140px;

  background: rgba(211, 159, 68, 0.08);
}

.servicios-label {
  position: relative;
  z-index: 2;

  color: #c8d5a3;
}

.servicios-panel h2 {
  position: relative;
  z-index: 2;

  color: #ffffff;
  margin-bottom: 28px;
}

.servicios-panel h2::after {
  background: #bdca91;
  box-shadow: none;
}

.servicios-intro {
  position: relative;
  z-index: 2;

  max-width: 920px;
  margin: 0 auto 16px;

  color: #edf1e3;

  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.servicios-intro strong {
  color: #dbe7b9;
  font-weight: 900;
}

/* GRID DE VEHÍCULOS */

.vehicle-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;

  margin-top: 48px;
  align-items: start;
}

/* TARJETA */

.vehicle-card {
  overflow: hidden;

  background: #f4f7eb;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 27px;

  box-shadow:
    0 14px 30px rgba(19, 28, 13, 0.24);

  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}

.vehicle-card:hover {
  transform: translateY(-12px) scale(1.035);

  box-shadow:
    0 28px 48px rgba(16, 24, 11, 0.34);
}

.vehicle-card.active {
  transform: translateY(-10px) scale(1.025);

  box-shadow:
    0 28px 50px rgba(16, 24, 11, 0.38),
    0 0 0 3px rgba(189, 202, 145, 0.24);
}

/* BOTÓN COMPLETO */

.vehicle-button {
  width: 100%;
  padding: 0;

  background: transparent;
  border: 0;

  color: inherit;
  font: inherit;

  text-align: left;
  cursor: pointer;
}

/* IMAGEN */

.vehicle-image {
  position: relative;
  overflow: hidden;

  height: 240px;
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      #e3ebd3 70%,
      #d4dfc0 100%
    );
}

.vehicle-image::after {
  content: "";
  position: absolute;

  left: 12%;
  right: 12%;
  bottom: 19px;

  height: 16px;

  background: rgba(38, 48, 30, 0.17);
  border-radius: 50%;

  filter: blur(8px);

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.vehicle-image img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(0 13px 12px rgba(35, 44, 27, 0.23));

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.45s ease;
}

.vehicle-card:hover .vehicle-image img,
.vehicle-card.active .vehicle-image img {
  transform: translateY(-8px) scale(1.08);

  filter:
    drop-shadow(0 18px 15px rgba(35, 44, 27, 0.3));
}

.vehicle-card:hover .vehicle-image::after,
.vehicle-card.active .vehicle-image::after {
  transform: scaleX(1.12);
  opacity: 0.75;
}

/* ENCABEZADO DE TARJETA */

.vehicle-card-header {
  min-height: 84px;
  padding: 20px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background:
    linear-gradient(
      135deg,
      #dbe7c6,
      #c7d8aa
    );
}

.vehicle-capacity {
  color: #3c4a2c;

  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;

  text-transform: uppercase;
}

.vehicle-toggle {
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f4f7eb;
  background: #52633a;

  border-radius: 50%;

  font-size: 26px;
  font-weight: 400;
  line-height: 1;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.vehicle-card:hover .vehicle-toggle {
  background: #6b7d49;
}

.vehicle-card.active .vehicle-toggle {
  transform: rotate(45deg);
  background: #9b6a2a;
}

/* DESCRIPCIÓN DESPLEGABLE */

.vehicle-description {
  display: grid;
  grid-template-rows: 0fr;

  background: #f4f7eb;

  transition:
    grid-template-rows 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vehicle-description-inner {
  overflow: hidden;
}

.vehicle-description p {
  margin: 0;
  padding: 0 24px;

  color: #3c4930;

  font-size: 15.5px;
  line-height: 1.75;
  text-align: left;

  opacity: 0;
  transform: translateY(-8px);

  transition:
    padding 0.4s ease,
    opacity 0.35s ease,
    transform 0.4s ease;
}

.vehicle-card.active .vehicle-description {
  grid-template-rows: 1fr;
}

.vehicle-card.active .vehicle-description p {
  padding: 4px 24px 26px;

  opacity: 1;
  transform: translateY(0);
}



/* =====================================
   SERVICIOS COMPLEMENTARIOS
===================================== */

.complementarios {
  width: min(100%, 1180px);
  margin: 110px auto 0;
  position: relative;
}

.complementarios-title {
  margin-bottom: 55px;
  color: #3f4e2d;
}

/* BLOQUES PRINCIPALES */

.complementary-block {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 45px;
  align-items: center;

  padding: 42px;

  background:
    linear-gradient(
      135deg,
      rgba(215, 230, 192, 0.94),
      rgba(232, 240, 216, 0.96)
    );

  border: 1px solid rgba(76, 94, 48, 0.13);
  border-radius: 32px;

  box-shadow:
    0 18px 40px rgba(48, 59, 37, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  overflow: hidden;

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
}

/* Separación entre tours y hospedaje */
.complementary-block + .complementary-block {
  margin-top: 55px;
}

.complementary-block:hover {
  transform: translateY(-10px);

  box-shadow:
    0 28px 55px rgba(48, 59, 37, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* Hospedaje alterna el orden */
.lodging-block .complementary-slider {
  order: 2;
}

.lodging-block .complementary-content {
  order: 1;
}

/* DETALLES DECORATIVOS */

.complementary-block::before {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  top: -110px;
  right: -90px;

  border-radius: 50%;

  background: rgba(137, 162, 84, 0.12);
  pointer-events: none;
}

.lodging-block::before {
  left: -100px;
  right: auto;
  background: rgba(190, 139, 59, 0.1);
}

/* CONTENIDO */

.complementary-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.complementary-number {
  position: absolute;
  right: 0;
  top: -18px;

  color: rgba(71, 88, 47, 0.12);

  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.complementary-label {
  display: inline-block;
  margin-bottom: 12px;

  color: #73814d;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.complementary-content h3 {
  position: relative;

  margin-bottom: 24px;

  color: #3d4b2a;

  font-size: clamp(30px, 3.4vw, 43px);
  font-weight: 900;

  text-transform: uppercase;
}

.complementary-content h3::after {
  content: "";

  display: block;

  width: 68px;
  height: 5px;

  margin-top: 12px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      #708a4c,
      #b4c978
    );

  transition: width 0.4s ease;
}

.complementary-block:hover h3::after {
  width: 130px;
}

.complementary-content p {
  margin: 0 0 16px;

  color: #3a472f;

  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.complementary-content strong {
  color: #526638;
  font-weight: 900;
}

/* ETIQUETAS DE TOURS */

.complementary-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 25px;
}

.complementary-features span {
  position: relative;

  padding: 9px 14px;

  color: #485a34;
  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(81, 101, 56, 0.16);
  border-radius: 8px;

  font-size: 12px;
  font-weight: 800;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.complementary-features span:hover {
  color: #ffffff;
  background: #607443;

  transform: translateY(-3px);

  box-shadow:
    0 7px 15px rgba(61, 76, 42, 0.2);
}

/* LISTA DE SERVICIOS DE HOSPEDAJE */

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin-top: 25px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;

  color: #3f4e31;
  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(78, 95, 53, 0.13);
  border-radius: 12px;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 7px 16px rgba(48, 59, 37, 0.14);
}

.service-icon {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #70884c;

  border-radius: 50%;

  font-size: 13px;
  font-weight: 900;
}

/* =====================================
   MINI SLIDESHOW
===================================== */

.mini-slider {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 350px;

  overflow: hidden;

  border-radius: 24px;

  background: #dfe8cf;

  box-shadow:
    0 16px 32px rgba(41, 53, 29, 0.2);
}

.mini-slide {
  position: absolute;
  inset: 0;

  opacity: 0;

  transform: scale(1.05);

  transition:
    opacity 0.75s ease,
    transform 1.1s ease;
}

.mini-slide.active {
  opacity: 1;
  transform: scale(1);
}

.mini-slide img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

/* Degradado sobre la fotografía */
.mini-slider::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(38, 50, 27, 0.22),
      transparent 45%
    );

  pointer-events: none;
}

/* FLECHAS */

.mini-slider-arrow {
  position: absolute;
  z-index: 5;

  top: 50%;

  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(51, 65, 36, 0.68);

  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;

  font-size: 31px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);

  backdrop-filter: blur(4px);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.mini-slider-arrow:hover {
  background: #617746;
}

.mini-prev {
  left: 15px;
}

.mini-next {
  right: 15px;
}

.mini-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.mini-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* PUNTOS */

.mini-slider-dots {
  position: absolute;
  z-index: 5;

  left: 50%;
  bottom: 16px;

  display: flex;
  gap: 7px;

  transform: translateX(-50%);
}

.mini-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  background: rgba(255, 255, 255, 0.55);

  border: 0;
  border-radius: 50%;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.mini-dot.active {
  width: 25px;
  border-radius: 20px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

.servicios-section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.servicios-panel {
  padding: 55px 32px;
  border-radius: 28px;
}

.vehicle-grid {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.vehicle-card:hover {
  transform: translateY(-7px) scale(1.015);
}

.vehicle-image {
  height: 280px;
}

.cards,
.info-grid,
.gallery {
  display: grid;
  gap: 26px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.info-grid div {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(48, 59, 37, 0.12);
  border: 1px solid rgba(48, 59, 37, 0.08);
  transition: 0.35s ease;
}

.card:hover,
.info-grid div:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 34px rgba(48, 59, 37, 0.22),
    0 0 16px rgba(156, 171, 114, 0.28);
}

.card h3,
.info-grid h3 {
  color: #303b25;
  font-size: 22px;
  margin-bottom: 14px;
}

.card p,
.info-grid p {
  font-size: 16px;
  line-height: 1.7;
}

/* DESTINOS */
.destinos {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.destinos span {
  background: #303b25;
  color: #edf1e3;
  padding: 13px 20px;
  border-radius: 40px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(48, 59, 37, 0.22);
}

/* MISIÓN, VISIÓN */
.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid ul {
  padding-left: 22px;
  line-height: 1.9;
}

/* GALERÍA */
.gallery {
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(48, 59, 37, 0.22);
  transition: 0.35s ease;
}

.gallery img:hover {
  transform: scale(1.045);
  box-shadow:
    0 16px 34px rgba(48, 59, 37, 0.3),
    0 0 18px rgba(156, 171, 114, 0.32);
}

/* CONTACTO */
.contacto {
  background: #303b25;
  color: #edf1e3;
}

.contacto h2 {
  color: #ffffff;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  background: #a7b879;
  color: #26301e;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(48, 59, 37, 0.22);
  transition: 0.35s ease;
}

.btn:hover {
  background: #b5c58a;
  transform: scale(1.05);
  box-shadow:
    0 10px 24px rgba(48, 59, 37, 0.28),
    0 0 14px rgba(190, 207, 144, 0.3);
}

/* FOOTER */
footer {
  background: #1f2819;
  color: #edf1e3;
  text-align: center;
  padding: 24px 7%;
  font-size: 14px;
}

/* RESPONSIVE TABLET */
@media (max-width: 900px) {
  .header {
    height: 76px;
    padding: 0 5%;
  }

  /* HERO TABLET */

  .location-card {
  padding: 38px 30px;
}

.location-layout {
  grid-template-columns: 1fr;
}

.location-map-wrapper,
.location-map {
  min-height: 430px;
}

.location-panel {
  padding: 28px;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero {
  height: calc(100vh - 76px);
  min-height: 620px;
  margin-top: 76px;

  padding: 30px 5%;
}


.complementarios {
  margin-top: 85px;
}

.complementary-block {
  grid-template-columns: 1fr;
  gap: 32px;

  padding: 34px;
}

.lodging-block .complementary-slider,
.lodging-block .complementary-content {
  order: initial;
}

.mini-slider {
  height: 380px;
}

.complementary-content {
  text-align: center;
}

.complementary-content p {
  text-align: center;
}

.complementary-content h3::after {
  margin-left: auto;
  margin-right: auto;
}

.complementary-features {
  justify-content: center;
}
.hero-box {
  width: min(94%, 720px);
  padding: 28px 32px;
}

.hero-box h1 {
  font-size: clamp(36px, 7vw, 52px);
}

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #303b25;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px;
    display: none;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
  }

  .nav.show {
    display: flex !important;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .hero {
    margin-top: 76px;
    min-height: 640px;
  }

  .hero-box {
  width: 90%;
  padding: 30px 24px;
}

  .cards,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE CELULAR */
@media (max-width: 520px) {
  .logo {
  width: 120px;
  height: 54px;
  padding: 7px 11px;
}


.location-card {
  margin-top: 55px;
  padding: 30px 15px 16px;

  border-radius: 23px;
}

.location-heading {
  margin-bottom: 28px;
  padding: 0 7px;
}

.location-heading h3 {
  font-size: 30px;
}

.location-heading p {
  font-size: 14.5px;
  line-height: 1.7;
}

.location-map-wrapper {
  min-height: 330px;

  border-width: 4px;
  border-radius: 17px;
}

.location-map {
  min-height: 330px;
}

.location-map-badge {
  left: 10px;
  bottom: 10px;

  padding: 8px 10px;
  font-size: 10px;
}

.location-panel {
  padding: 24px 18px;

  border-radius: 18px;
}

.location-panel h4 {
  font-size: 24px;
}

.location-points {
  grid-template-columns: 1fr;
}

.location-point {
  font-size: 12px;
}
.complementarios {
  margin-top: 70px;
}

.complementarios-title {
  margin-bottom: 38px;
}

.complementary-block {
  padding: 22px 18px 28px;
  border-radius: 24px;
  gap: 27px;
}

.complementary-block + .complementary-block {
  margin-top: 35px;
}

.mini-slider {
  height: 240px;
  border-radius: 18px;
}

.mini-slider-arrow {
  width: 37px;
  height: 37px;
  font-size: 27px;
}

.mini-prev {
  left: 10px;
}

.mini-next {
  right: 10px;
}

.complementary-content h3 {
  font-size: 29px;
}

.complementary-content p {
  font-size: 14.5px;
  line-height: 1.7;
}

.complementary-number {
  font-size: 52px;
  top: -8px;
}

.complementary-features {
  gap: 8px;
}

.complementary-features span {
  padding: 8px 10px;
  font-size: 10.5px;
}

.services-list {
  grid-template-columns: 1fr;
}

.service-item {
  text-align: left;
}

.servicios-section {
  padding-left: 4%;
  padding-right: 4%;
}

.servicios-panel {
  padding: 45px 18px;
  border-radius: 24px;
}

.servicios-intro {
  font-size: 15px;
  line-height: 1.7;
}

.vehicle-grid {
  gap: 22px;
  margin-top: 36px;
}

.vehicle-image {
  height: 215px;
  padding: 15px;
}

.vehicle-card-header {
  min-height: 74px;
  padding: 17px 18px;
}

.vehicle-capacity {
  font-size: 16px;
}

.vehicle-toggle {
  width: 34px;
  height: 34px;
  font-size: 23px;
}

.vehicle-card:hover,
.vehicle-card.active {
  transform: translateY(-5px) scale(1.01);
}


/* HERO CELULAR */

.hero {
  height: auto;
  min-height: calc(100vh - 76px);

  padding: 24px 5%;

  align-items: center;
  justify-content: center;
}

.hero-box {
  width: 100%;

  padding: 25px 18px;

  background: rgba(248, 250, 238, 0.64);

  border-radius: 20px;
}

.hero-tag {
  margin-bottom: 12px;

  font-size: 9.5px;
  letter-spacing: 1.5px;
}

.hero-box h1 {
  margin-bottom: 20px;

  color: #536238;

  font-size: clamp(29px, 9vw, 38px);

  white-space: normal;
}

.hero-box p {
  margin-bottom: 14px;

  color: #56643d;

  font-size: 12.5px;
  line-height: 1.65;
}

.hero-highlight::after {
  bottom: -2px;
  height: 2px;
}
.logo img {
  transform: scale(1.15);
}
  .hero {
    min-height: 690px;
  }

  .hero-box {
    width: 90%;
    padding: 26px 22px;
  }

  .hero-box p {
    font-size: 16px;
  }

  .section {
    padding: 78px 6%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 250px;
  }

  .destinos span {
    width: 100%;
  }
}

/* RESPONSIVE CELULAR */
@media (max-width: 520px) {

  .logo {
    width: 120px;
    height: 54px;
    padding: 7px 11px;
  }

  .logo img {
    transform: scale(1.15);
  }

  /* HERO EN CELULAR */
  .hero {
    min-height: 650px;
    padding: 28px 5%;
  }

  .hero-box {
    width: 100%;
    padding: 28px 22px;
  }

  .hero-box h1 {
    font-size: 36px;
  }

  .hero-box p {
    font-size: 14.5px;
  }

  .section {
    padding: 78px 6%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 250px;
  }

  .destinos span {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-box {
  width: 100%;
  padding: 28px 20px;
}

.hero-box h1 {
  font-size: 35px;
  white-space: normal;
}

.hero-box p {
  font-size: 14px;
  line-height: 1.65;
}

.hero-highlight::after {
  bottom: -2px;
  height: 3px;
}
}

/* =====================================
   NUESTRA UBICACIÓN
===================================== */

.location-card {
  position: relative;
  z-index: 2;

  width: min(100%, 1250px);
  margin: 75px auto 0;
  padding: 48px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #dce9c8,
      #c8d9aa
    );

  border: 1px solid rgba(75, 93, 50, 0.15);
  border-radius: 32px;

  box-shadow:
    0 22px 48px rgba(48, 60, 35, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.location-card::before {
  content: "";

  position: absolute;
  width: 300px;
  height: 300px;

  top: -160px;
  right: -120px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  pointer-events: none;
}

.location-heading {
  position: relative;
  z-index: 2;

  max-width: 880px;
  margin: 0 auto 40px;

  text-align: center;
}

.location-heading h3 {
  margin: 6px 0 20px;

  color: #3d4c2c;

  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
}

.location-heading h3::after {
  content: "";

  display: block;

  width: 80px;
  height: 5px;

  margin: 14px auto 0;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      #687f46,
      #a3b96d
    );
}

.location-heading p {
  margin: 0 auto 12px;

  color: #455439;

  font-size: 16px;
  line-height: 1.75;
}

.location-heading strong {
  color: #506237;
  font-weight: 900;
}

/* CONTENIDO PRINCIPAL */

.location-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 24px;

  align-items: stretch;
}

/* MAPA */

.location-map-wrapper {
  position: relative;
  overflow: hidden;

  min-height: 510px;

  border: 7px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;

  box-shadow:
    0 18px 35px rgba(46, 59, 33, 0.2);
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 510px;
}

.location-map-badge {
  position: absolute;
  z-index: 500;

  left: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 14px;

  color: #ffffff;
  background: rgba(54, 69, 38, 0.83);

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;

  font-size: 12px;
  font-weight: 900;

  backdrop-filter: blur(6px);
}

.location-map-dot {
  width: 10px;
  height: 10px;

  background: #d4e7a6;
  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(212, 231, 166, 0.18);
}

/* PANEL LATERAL */

.location-panel {
  padding: 30px 25px;

  background: #455636;
  color: #edf3e5;

  border-radius: 24px;

  text-align: left;

  box-shadow:
    0 17px 32px rgba(41, 53, 29, 0.22);
}

.location-panel-label {
  color: #bdce95;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.location-panel h4 {
  margin: 8px 0 13px;

  color: #ffffff;

  font-size: 27px;
  line-height: 1.15;
}

.location-address {
  margin: 0 0 20px;

  color: #dfe8d1;

  font-size: 14px;
  line-height: 1.6;
}

.location-coordinates {
  margin-bottom: 22px;
  padding: 14px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.location-coordinates span {
  display: block;
  margin-bottom: 5px;

  color: #bdce95;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.location-coordinates strong {
  color: #ffffff;

  font-size: 13px;
  overflow-wrap: anywhere;
}

.location-help {
  margin-bottom: 16px;

  color: #d8e1cb;

  font-size: 13px;
  line-height: 1.6;
}

/* PUNTOS DE INTERÉS */

.location-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-point {
  width: 100%;
  padding: 11px 12px;

  display: flex;
  align-items: center;
  gap: 11px;

  color: #e7eedc;
  background: rgba(255, 255, 255, 0.055);

  border: 1px solid transparent;
  border-radius: 10px;

  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.location-point span {
  flex: 0 0 auto;

  width: 29px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #bccc99;
  background: rgba(255, 255, 255, 0.08);

  border-radius: 8px;

  font-size: 9px;
  font-weight: 900;
}

.location-point:hover {
  transform: translateX(4px);

  color: #ffffff;
  background: rgba(216, 229, 183, 0.11);

  border-color: rgba(216, 229, 183, 0.15);
}

.location-point.active {
  color: #354329;
  background: #d2e0b7;

  border-color: rgba(255, 255, 255, 0.42);
}

.location-point.active span {
  color: #ffffff;
  background: #647a47;
}

/* BOTÓN */

.location-directions {
  display: block;

  margin-top: 22px;
  padding: 13px 18px;

  color: #3f4f30;
  background: #d6e4bb;

  border-radius: 10px;

  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.location-directions:hover {
  transform: translateY(-3px);

  background: #eef5df;

  box-shadow:
    0 9px 18px rgba(25, 35, 18, 0.22);
}

/* PERSONALIZACIÓN BÁSICA DE LEAFLET */

.leaflet-popup-content-wrapper {
  border-radius: 13px;
}

.leaflet-popup-content {
  color: #3d4c2d;
  line-height: 1.55;
}

.map-popup strong {
  display: block;

  margin-bottom: 5px;

  color: #465932;
  font-size: 15px;
}

.map-popup span {
  color: #657256;
  font-size: 12px;
}


/* =====================================
   CORRECCIÓN RESPONSIVE DEL MAPA
===================================== */

@media (max-width: 900px) {
  .location-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 24px;
  }

  .location-heading {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .location-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-map-wrapper {
    width: 100%;
    min-height: 420px;
    height: 420px;
  }

  .location-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
  }

  .location-panel {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .destinations-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .location-card {
    width: 100%;
    margin: 55px auto 0;
    padding: 28px 14px 18px;
    border-radius: 22px;
  }

  .location-heading {
    width: 100%;
    max-width: none;
    padding: 0 8px;
    text-align: center;
  }

  .location-heading h3 {
    font-size: 29px;
    line-height: 1.08;
  }

  .location-heading p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .location-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .location-map-wrapper {
    order: 1;
    width: 100%;
    height: 320px;
    min-height: 320px;
    border-width: 4px;
    border-radius: 17px;
  }

  .location-map {
    width: 100%;
    height: 320px !important;
    min-height: 320px;
  }

  .location-panel {
    order: 2;
    width: 100%;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .location-points {
    grid-template-columns: 1fr;
  }
}