@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
:root {
  --dark-blue: #313041;
  --maintheme: #e8604c;
  --baby-pink:#fbdbd6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* TOPBAR  */
.topbar {
  background-color: var(--dark-blue);
}
.topbar span {
  color: var(--maintheme);
}
.topbar-btn {
  background-color: var(--maintheme);
  color: white;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}
.topbar-btn:hover {
  color: black;
  box-shadow: inset 0 3.5em 0 0 white;
}
/* TAMAÑO DEL CARRUSEL */
#carouselExampleAutoplaying {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

#carouselExampleAutoplaying .carousel-inner,
#carouselExampleAutoplaying .carousel-item {
  width: 100%;
  height: 100%;
}

#carouselExampleAutoplaying .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* TABLETS */
@media (max-width: 991px) {
  #carouselExampleAutoplaying {
    height: 450px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.5rem !important;
  }
}

/* CELULARES */
@media (max-width: 576px) {
  #carouselExampleAutoplaying {
    height: 330px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem !important;
  }

  .carousel-item h2 {
    font-size: 1.2rem;
  }
}
/* NAVBAR  */
.navs:hover {
  animation: tada 1s;
  text-decoration: underline 4px solid var(--maintheme);
}

.nav-btn:hover {
  background-color: var(--maintheme);
  border-color: black;
}
/* LOGO DEL ENCABEZADO */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 190px;
  height: 75px;
  object-fit: contain;
  display: block;
}

/* Ajustar altura del menú */
.navbar {
  padding: 5px 0;
}

/* TABLETS */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 165px;
    height: 65px;
  }
}

/* CELULARES */
@media (max-width: 576px) {
  .navbar-brand img {
    width: 135px;
    height: 55px;
  }
}
/* HERO SECTION  */
.hero-text h1 {
  font-family: "Dancing Script";
}
/* .................. MEDIA QUERY */
@media (max-width: 425px) {
  .hero-text {
    top: 50% !important;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
/* ========================================
   BUSCADOR DE TOURS
======================================== */

.tour-search-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 22px;
}

.tour-search-form {
  width: 100%;
  max-width: 1450px;
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(19, 39, 52, 0.16);
}

.tour-search-field {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px 35px;
  border-right: 1px solid #e2e8eb;
}

.tour-search-icon {
  flex-shrink: 0;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7444a5;
  font-size: 2rem;
}

.tour-search-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tour-search-content label {
  margin-bottom: 5px;
  color: #142b3c;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.tour-search-content select,
.tour-search-content input {
  width: 100%;
  min-height: 42px;
  padding: 4px 35px 4px 0;
  color: #6d7b84;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
}

.tour-search-content select:focus,
.tour-search-content input:focus {
  color: #142b3c;
}

/* DESTINO CON BORDE REDONDEADO */
.tour-search-field:first-child select {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  padding: 4px 35px 4px 12px;
  border: 4px solid #e2edef;
  border-radius: 20px;
}

/* BOTÓN NARANJA */
.tour-search-button {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  color: white;
  background-color: #f7632d;
  border: none;
  border-radius: 0 24px 24px 0;
  font-size: 1.2rem;
  font-weight: 800;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.tour-search-button:hover {
  color: white;
  background-color: var(--dark-blue);
}

.tour-search-button:active {
  transform: scale(0.97);
}

.tour-search-button i {
  font-size: 1.15rem;
}

/* TABLETS */
@media (max-width: 991px) {
  .tour-search-wrapper {
    margin-top: -35px;
    padding: 0 15px;
  }

  .tour-search-form {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
  }

  .tour-search-field {
    min-height: 110px;
    padding: 22px 25px;
    border-bottom: 1px solid #e2e8eb;
  }

  .tour-search-field:nth-child(2) {
    border-right: none;
  }

  .tour-search-field:nth-child(3) {
    border-bottom: none;
  }

  .tour-search-button {
    min-height: 110px;
    border-radius: 0 0 20px 0;
  }
}

/* CELULARES */
@media (max-width: 576px) {
  .tour-search-wrapper {
    margin-top: 20px;
    padding: 0 12px;
  }

  .tour-search-form {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
  }

  .tour-search-field {
    width: 100%;
    min-height: auto;
    padding: 20px;
    gap: 15px;
    border-right: none;
    border-bottom: 1px solid #e2e8eb;
  }

  .tour-search-field:nth-child(3) {
    border-bottom: 1px solid #e2e8eb;
  }

  .tour-search-icon {
    width: 35px;
    font-size: 1.6rem;
  }

  .tour-search-content label {
    font-size: 0.9rem;
  }

  .tour-search-content select,
  .tour-search-content input {
    font-size: 0.95rem;
  }

  .tour-search-button {
    width: 100%;
    min-height: 70px;
    border-radius: 0 0 18px 18px;
    font-size: 1.05rem;
  }
}
/* ==========================================
   SECCIÓN DESTINOS POPULARES
========================================== */

.destinos-section {
  width: 100%;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Encabezado */

.destinos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.destinos-titulo {
  margin: 0;
  color: #092f3d;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.destinos-linea {
  width: 90px;
  height: 6px;
  margin-top: 17px;
  background-color: #f5a623;
  border-radius: 20px;
}

/* Botón superior */

.btn-ver-destinos {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  padding: 12px 30px;

  color: #073b4c;
  background-color: #ffffff;
  border: 1px solid #dfe7e9;
  border-radius: 18px;

  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-ver-destinos:hover {
  color: #ffffff;
  background-color: #073b4c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(7, 59, 76, 0.18);
}

/* Columna de cada tarjeta */

.des-eff {
  min-width: 0;
}

/* Tarjeta */

.destination-card {
  position: relative;
  display: block;
  width: 100%;
  height: 330px;

  overflow: hidden;
  border-radius: 20px;
  background-color: #e7e7e7;
  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Imagen */

.destination-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.55s ease;
}

/* Capa oscura inferior */

.destination-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 25%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.78) 100%
  );

  pointer-events: none;
}

/* Nombre del destino */

.destination-text {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 22px;
  z-index: 2;

  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

/* Efecto hover de elevación */

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.destination-card:hover img {
  transform: scale(1.08);
}

/* Oscurecer un poco más al pasar el cursor */

.destination-card:hover .destination-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 25%,
    rgba(0, 0, 0, 0.16) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {
  .destination-card {
    height: 310px;
  }
}

@media (max-width: 767px) {
  .destinos-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .btn-ver-destinos {
    min-height: 52px;
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 14px;
  }

  .destination-card {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .destinos-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .destination-card {
    height: 300px;
  }

  .destination-text {
    left: 20px;
    bottom: 20px;
    font-size: 23px;
  }
}
/* ========================================
   PAQUETES DESTACADOS
======================================== */

.featured-packages {
  width: 100%;
  padding: 65px 0 80px;
  background-color: #f3f7f8;
}

.featured-packages .container {
  max-width: 1350px;
}

/* TÍTULO */
.featured-packages-heading {
  margin-bottom: 30px;
}

.featured-packages-heading h2 {
  margin: 0;
  color: #10313f;
  font-size: 2rem;
  font-weight: 800;
}

.featured-packages-heading span {
  display: block;
  width: 65px;
  height: 4px;
  margin-top: 12px;
  background-color: #f5a623;
  border-radius: 10px;
}

/* CUADRÍCULA */
.featured-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

/* TARJETA */
.package-card {
  overflow: hidden;
  background-color: white;
  border: 1px solid #dde7ea;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(20, 45, 57, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(20, 45, 57, 0.15);
}

/* IMAGEN */
.package-image {
  position: relative;
  width: 100%;
  height: 265px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.07);
}

/* ETIQUETA */
.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 13px;
  color: white;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.package-badge-orange {
  background-color: #ff6337;
}

.package-badge-blue {
  background-color: #187395;
}

/* FAVORITO */
.package-favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6337;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.package-favorite:hover {
  color: white;
  background-color: #ff6337;
  transform: scale(1.08);
}

/* CONTENIDO */
.package-content {
  padding: 20px 20px 18px;
}

.package-location {
  display: block;
  margin-bottom: 4px;
  color: #ff6337;
  font-size: 0.82rem;
  font-weight: 800;
}

.package-content h3 {
  margin: 0 0 12px;
  color: #102f3d;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

/* DURACIÓN */
.package-duration {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #788890;
  font-size: 0.88rem;
}

.package-duration i {
  color: #75538f;
}

/* VALORACIÓN */
.package-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7b8a92;
  font-size: 0.88rem;
}

.package-rating i {
  color: #f5a623;
}

.package-rating strong {
  color: #f5a623;
}

.package-divider {
  width: 100%;
  height: 1px;
  margin: 17px 0;
  background-color: #e3e9eb;
}

/* PRECIO Y BOTÓN */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

.package-price small {
  display: block;
  margin-bottom: 3px;
  color: #84939a;
  font-size: 0.76rem;
}

.package-price div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.package-price strong {
  color: #f4512c;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.package-price span {
  color: #687b84;
  font-size: 0.72rem;
  font-weight: 700;
}

.package-view-button {
  padding: 11px 16px;
  color: #f4512c;
  background-color: #ffebe4;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.package-view-button:hover {
  color: white;
  background-color: #f4512c;
  transform: translateY(-2px);
}

/* PANTALLAS MEDIANAS */
@media (max-width: 1199px) {
  .featured-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* TABLETS */
@media (max-width: 768px) {
  .featured-packages {
    padding: 50px 0 60px;
  }

  .featured-packages-heading h2 {
    font-size: 1.7rem;
  }

  .package-image {
    height: 240px;
  }
}

/* CELULARES */
@media (max-width: 576px) {
  .featured-packages-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .package-image {
    height: 230px;
  }

  .package-content {
    padding: 18px;
  }

  .package-content h3 {
    font-size: 1.1rem;
  }

  .package-price strong {
    font-size: 1.35rem;
  }
}
/* BOTÓN MOSTRAR TODOS LOS PAQUETES */
.all-packages-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.all-packages-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  color: white;
  background-color: #f4512c;
  border: 2px solid #f4512c;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.all-packages-button:hover {
  color: white;
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(16, 47, 61, 0.2);
}

.all-packages-button i {
  transition: transform 0.3s ease;
}

.all-packages-button:hover i {
  transform: translateX(5px);
}

/* CELULARES */
@media (max-width: 576px) {
  .all-packages-container {
    margin-top: 30px;
  }

  .all-packages-button {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ==========================================
   TESTIMONIOS
========================================== */

.testimonios-seccion .titulo-seccion {
  margin-bottom: 20px;
}

.testimonio-card {
  position: relative;
  padding: 36px 30px 27px;
  background-color: #f3f7f7;
  border-radius: 20px;
}

.comillas {
  position: absolute;
  top: 15px;
  left: 20px;

  color: rgba(8, 47, 61, 0.1);
  font-size: 35px;
}

.testimonio-texto {
  position: relative;
  z-index: 1;

  margin: 5px 0 24px;
  color: #163b48;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
}

.testimonio-usuario {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonio-usuario img {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;

  object-fit: cover;
  border-radius: 50%;
}

.cliente-datos {
  min-width: 0;
}

.cliente-datos h4 {
  margin: 0 0 4px;
  color: #082f3d;
  font-size: 16px;
  font-weight: 800;
}

.cliente-datos span {
  color: #64767e;
  font-size: 14px;
}

.estrellas {
  display: flex;
  gap: 2px;
  margin-left: auto;

  color: #f5a623;
  font-size: 13px;
}

/* Botón de Tripadvisor */

.btn-tripadvisor {
  width: 100%;
  min-height: 50px;
  margin-top: 25px;
  padding: 10px 15px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  color: #ffffff;
  background-color: #00aa6c;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-tripadvisor:hover {
  color: #ffffff;
  background-color: #078755;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 170, 108, 0.22);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {
  .promociones-contenido {
    margin-top: 65px;
  }

  .testimonios-seccion {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .beneficios-box {
    padding: 28px;
  }

  .promociones-contenido {
    margin-top: 55px;
  }

  .oferta-info {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .promociones-section {
    padding: 25px 0 55px;
  }

  .beneficios-box {
    padding: 23px 18px;
    border-radius: 17px;
  }

  .beneficio-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .promociones-contenido {
    margin-top: 45px;
  }

  .contador {
    gap: 8px;
  }

  .contador-item {
    width: calc(25% - 6px);
    min-height: 82px;
  }

  .contador-item span {
    font-size: 23px;
  }

  .paquete-card {
    flex-direction: column;
  }

  .paquete-imagen {
    width: 100%;
    height: 230px;
    min-height: 230px;
    flex-basis: auto;
  }

  .paquete-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-reservar {
    width: 100%;
  }

  .testimonio-card {
    padding: 34px 22px 24px;
  }

  .testimonio-usuario {
    flex-wrap: wrap;
  }

  .estrellas {
    width: 100%;
    margin-left: 68px;
  }
}
/* =========================================================
   FOOTER PROFESIONAL — CUSCO AGENCY
========================================================= */

.agency-footer {
  width: 100%;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.agency-footer-container {
  width: 100%;
  max-width: 1500px;

  margin-right: auto;
  margin-left: auto;

  padding-right: 25px;
  padding-left: 25px;
}

/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */

.agency-footer-main {
  position: relative;

  padding: 75px 0 65px;

  background:
    linear-gradient(
      115deg,
      #173d46 0%,
      #204e55 55%,
      #183d44 100%
    );
}

/* Decoración suave */

.agency-footer-main::before {
  content: "";

  position: absolute;
  top: -190px;
  right: -160px;

  width: 470px;
  height: 470px;

  border: 80px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.agency-footer-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(220px, 1fr)
    minmax(230px, 0.9fr)
    minmax(250px, 1.1fr)
    minmax(290px, 1.2fr);

  align-items: start;
  gap: 45px;
}

.agency-footer-column {
  min-width: 0;
}

/* =========================================================
   TÍTULOS
========================================================= */

.agency-footer-column > h3 {
  margin: 0;

  color: #ffffff;

  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;

  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.agency-footer-line {
  width: 48px;
  height: 3px;

  margin: 12px 0 25px;

  background-color: #f5a623;
  border-radius: 20px;
}

/* =========================================================
   CONTACTO
========================================================= */

.agency-contact-group {
  margin-bottom: 22px;
}

.agency-contact-group h4 {
  display: flex;
  align-items: center;
  gap: 9px;

  margin: 0 0 8px;

  color: #ffffff;

  font-size: 0.92rem;
  font-weight: 800;
}

.agency-contact-group h4 i {
  color: #f5a623;
  font-size: 0.95rem;
}

.agency-contact-group a,
.agency-contact-group p {
  display: block;

  width: fit-content;

  margin: 0 0 5px;
  padding-left: 24px;

  color: #cbdcdf;

  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;

  text-decoration: none;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.agency-contact-group a:hover {
  padding-left: 29px;
  color: #f5a623;
}

.agency-footer-email {
  overflow-wrap: anywhere;
}

/* REDES SOCIALES */

.agency-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 25px;
}

.agency-footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.09);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  font-size: 1rem;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.agency-footer-social a:hover {
  color: #ffffff;
  background-color: #f05b2b;

  transform: translateY(-4px);
}

/* =========================================================
   MÉTODOS DE PAGO
========================================================= */

.agency-payment-description {
  margin: 0 0 18px;

  color: #cbdcdf;

  font-size: 0.88rem;
  line-height: 1.6;
}

.agency-payment-image {
  width: 100%;
  max-width: 270px;

  padding: 12px;

  background-color: #ffffff;

  border-radius: 15px;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.agency-payment-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.agency-secure-payment {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-top: 16px;

  color: #cbdcdf;

  font-size: 0.82rem;
  font-weight: 600;
}

.agency-secure-payment i {
  color: #4bd38a;
  font-size: 1rem;
}

/* =========================================================
   INFORMACIÓN DE LA EMPRESA
========================================================= */

.agency-company-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.agency-company-list li {
  margin-bottom: 17px;
  padding-bottom: 14px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-company-list li:last-child {
  border-bottom: none;
}

.agency-company-list span {
  display: block;

  margin-bottom: 5px;

  color: #99b7bc;

  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.agency-company-list strong {
  display: block;

  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.agency-company-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  color: #f5a623;

  font-size: 0.84rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.agency-company-button:hover {
  gap: 13px;
  color: #ffffff;
}

/* =========================================================
   MAPA
========================================================= */

.agency-map-wrapper {
  width: 100%;

  overflow: hidden;

  background-color: #ffffff;

  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.agency-map-wrapper iframe {
  display: block;

  width: 100%;
  height: 240px;
}

.agency-map-button {
  width: 100%;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 13px;
  padding: 11px 15px;

  color: #173d46;
  background-color: #ffffff;

  border-radius: 11px;

  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.agency-map-button:hover {
  color: #ffffff;
  background-color: #f05b2b;

  transform: translateY(-3px);
}

/* =========================================================
   TURISMO RESPONSABLE
========================================================= */

.agency-footer-responsible {
  padding: 22px 0;

  background-color: #12343b;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-responsible-content {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
}

.agency-responsible-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: #f05b2b;

  border-radius: 14px;

  font-size: 1.2rem;
}

.agency-responsible-content strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 900;
}

.agency-responsible-content span {
  display: block;

  color: #acc5c9;

  font-size: 0.82rem;
  line-height: 1.5;
}

.agency-responsible-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 16px;

  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;

  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.agency-responsible-content > a:hover {
  color: #ffffff;
  background-color: #f05b2b;
  border-color: #f05b2b;
}

/* =========================================================
   PARTE INFERIOR
========================================================= */

.agency-footer-bottom {
  padding: 20px 0;

  background-color: #0c292f;
}

.agency-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.agency-footer-bottom p {
  margin: 0;

  color: #9eb8bc;

  font-size: 0.8rem;
}

.agency-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.agency-footer-bottom-links a {
  color: #c5d7da;

  font-size: 0.78rem;
  font-weight: 600;

  text-decoration: none;

  transition: color 0.25s ease;
}

.agency-footer-bottom-links a:hover {
  color: #f5a623;
}

/* =========================================================
   PANTALLAS MEDIANAS
========================================================= */

@media (max-width: 1199px) {
  .agency-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 35px;
  }

  .agency-payment-image {
    max-width: 300px;
  }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 767px) {
  .agency-footer-main {
    padding: 55px 0 45px;
  }

  .agency-footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .agency-payment-image {
    max-width: 320px;
  }

  .agency-responsible-content {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .agency-responsible-content > a {
    grid-column: 1 / -1;

    width: 100%;

    justify-content: center;
  }

  .agency-footer-bottom-content {
    flex-direction: column;

    text-align: center;
  }

  .agency-footer-bottom-links {
    justify-content: center;
  }
}

/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 576px) {
  .agency-footer-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agency-footer-main {
    padding: 45px 0 40px;
  }

  .agency-footer-column > h3 {
    font-size: 1rem;
  }

  .agency-payment-image {
    max-width: 100%;
  }

  .agency-map-wrapper iframe {
    height: 270px;
  }

  .agency-responsible-content {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .agency-responsible-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .agency-footer-bottom-links {
    gap: 12px 18px;
  }
}

/* =========================================================
   FRANJA PROFESIONAL DE WHATSAPP
========================================================= */

.agency-whatsapp-strip {
  position: relative;
  width: 100%;
  padding: 38px 0;
  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      #0d5f62 0%,
      #117a72 52%,
      #0c625f 100%
    );
}

/* Decoración de fondo */
.agency-whatsapp-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;

  width: 330px;
  height: 330px;

  border: 55px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.agency-whatsapp-strip::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -90px;

  width: 290px;
  height: 290px;

  border: 45px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.agency-whatsapp-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

.agency-whatsapp-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(270px, 340px);
  align-items: center;
  gap: 28px;
}

/* =========================================================
   ÍCONO PRINCIPAL
========================================================= */

.agency-whatsapp-main-icon {
  width: 82px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: #25d366;

  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;

  font-size: 2.6rem;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  animation: agencyWhatsappPulse 2.5s infinite;
}

@keyframes agencyWhatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* =========================================================
   INFORMACIÓN
========================================================= */

.agency-whatsapp-info {
  min-width: 0;
}

.agency-whatsapp-label {
  display: block;
  margin-bottom: 7px;

  color: #baf4d0;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.agency-whatsapp-info h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.agency-whatsapp-info p {
  max-width: 820px;
  margin: 11px 0 0;

  color: rgba(255, 255, 255, 0.88);

  font-size: 0.94rem;
  line-height: 1.65;
}

/* BENEFICIOS */

.agency-whatsapp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;

  margin-top: 16px;
}

.agency-whatsapp-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 700;
}

.agency-whatsapp-benefits i {
  color: #70efa1;
}

/* =========================================================
   BOTONES
========================================================= */

.agency-whatsapp-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.agency-whatsapp-button {
  width: 100%;
  min-height: 60px;

  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;

  padding: 10px 17px;

  border-radius: 13px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.agency-whatsapp-button > i {
  font-size: 1.45rem;
  text-align: center;
}

.agency-whatsapp-button span {
  display: flex;
  flex-direction: column;

  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.agency-whatsapp-button small {
  margin-bottom: 2px;

  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.78;
}

.agency-whatsapp-primary {
  color: #0b5d3a;
  background-color: #ffffff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.agency-whatsapp-primary:hover {
  color: #ffffff;
  background-color: #25d366;

  transform: translateY(-4px);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.18);
}

.agency-whatsapp-secondary {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.agency-whatsapp-secondary:hover {
  color: #0c615e;
  background-color: #ffffff;

  transform: translateY(-4px);
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 991px) {
  .agency-whatsapp-content {
    grid-template-columns: 75px minmax(0, 1fr);
  }

  .agency-whatsapp-main-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    font-size: 2.1rem;
  }

  .agency-whatsapp-actions {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 576px) {
  .agency-whatsapp-strip {
    padding: 32px 0;
  }

  .agency-whatsapp-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agency-whatsapp-content {
    grid-template-columns: 1fr;
    gap: 20px;

    text-align: center;
  }

  .agency-whatsapp-main-icon {
    margin: 0 auto;
  }

  .agency-whatsapp-info h2 {
    font-size: 1.65rem;
  }

  .agency-whatsapp-info p {
    font-size: 0.9rem;
  }

  .agency-whatsapp-benefits {
    justify-content: center;
  }

  .agency-whatsapp-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .agency-whatsapp-button {
    text-align: left;
  }
}
/* =========================================================
   UBICACIÓN DEL FOOTER
========================================================= */

.agency-footer-location {
  width: 100%;
  min-width: 0;
}

.agency-map-wrapper {
  width: 100%;
  height: 290px;

  overflow: hidden;

  background-color: #e9eeee;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.agency-map-wrapper iframe {
  display: block;

  width: 100% !important;
  height: 100% !important;

  border: 0 !important;
}

.agency-map-button {
  width: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 15px;
  padding: 13px 18px;

  color: #123f48;
  background-color: #ffffff;

  border-radius: 13px;

  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.agency-map-button:hover {
  color: #ffffff;
  background-color: #f05b2b;

  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(240, 91, 43, 0.2);
}

.agency-map-button i {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .agency-map-wrapper {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .agency-map-wrapper {
    height: 280px;
    border-radius: 15px;
  }

  .agency-map-button {
    min-height: 52px;
    font-size: 0.83rem;
  }
}


/* ========================================
   PÁGINA DE PAQUETES
======================================== */

.packages-page {
  position: relative;
  min-height: 100vh;
  padding-bottom: 80px;
  background-color: #ffffff;
}

/* FONDO SUPERIOR */
.packages-hero {
  width: 100%;
  height: 170px;
  background:
    linear-gradient(rgba(5, 54, 60, 0.55), rgba(5, 54, 60, 0.55)),
    url("images/camino inca.png") center 45% / cover no-repeat;
}

.packages-main-container {
  position: relative;
  max-width: 1500px;
}

/* ========================================
   FILTROS
======================================== */

.packages-filter {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns:
    1.15fr
    1.15fr
    1.15fr
    1.15fr
    1.2fr
    220px;
  min-height: 115px;
  margin-top: -55px;
  overflow: hidden;
  color: white;
  background-color: #0d5960;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(8, 60, 66, 0.2);
}

.filter-item {
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.filter-item label {
  display: block;
  margin-bottom: 12px;
  color: #d6eff0;
  font-size: 0.88rem;
  font-weight: 700;
}

.filter-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-control > i {
  flex-shrink: 0;
  color: #ffb128;
  font-size: 1rem;
}

.filter-control select,
.filter-control input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0;
  overflow: hidden;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 0.98rem;
  font-weight: 700;
  text-overflow: ellipsis;
}

.filter-control select {
  cursor: pointer;
}

.filter-control select option {
  color: #173945;
  background-color: white;
}

.filter-control input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
}

.packages-search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 20px;
  color: white;
  background-color: #f96332;
  border: none;
  border-radius: 0 20px 20px 0;
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.packages-search-button:hover {
  background-color: #de4920;
}

.packages-search-button:active {
  transform: scale(0.97);
}

/* ========================================
   LISTA DE PAQUETES
======================================== */

.packages-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.package-list-card {
  min-width: 0;
  height: 175px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  overflow: hidden;
  background-color: white;
  border: 1px solid #dae4e7;
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(18, 52, 63, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.package-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 32px rgba(18, 52, 63, 0.14);
}

.package-list-image {
  display: block;
  width: 145px;
  height: 175px;
  overflow: hidden;
}

.package-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.package-list-card:hover .package-list-image img {
  transform: scale(1.08);
}

.package-list-content {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
}

.package-list-info {
  min-width: 0;
}

.package-list-info h2 {
  margin: 0 0 8px;
  color: #0b3442;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.25;
}

.package-list-info h2 a {
  color: inherit;
  text-decoration: none;
}

.package-list-info h2 a:hover {
  color: #f4512c;
}

.package-list-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 7px;
  color: #657b84;
  font-size: 0.84rem;
  line-height: 1.2;
}

.package-list-info p i {
  width: 14px;
  flex-shrink: 0;
  color: #76547d;
  text-align: center;
}

.package-list-rating i,
.package-list-rating strong {
  color: #ff9f1a !important;
}

.package-list-rating span {
  color: #657b84;
}

.package-list-price {
  flex-shrink: 0;
  align-self: center;
  text-align: right;
}

.package-list-price strong {
  display: block;
  color: #f4512c;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.package-list-price span {
  display: block;
  margin-top: 8px;
  color: #536d78;
  font-size: 0.76rem;
  font-weight: 700;
}

/* ========================================
   PAGINACIÓN
======================================== */

.packages-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.pagination-button {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  color: #173846;
  background-color: white;
  border: 1px solid #d8e2e5;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.pagination-button:hover,
.pagination-button.active {
  color: white;
  background-color: #0d5960;
  border-color: #0d5960;
}

.pagination-dots {
  padding: 0 8px;
  color: #173846;
  font-weight: 800;
}

/* ========================================
   DISEÑO RESPONSIVE
======================================== */

@media (max-width: 1399px) {
  .packages-filter {
    grid-template-columns: repeat(3, 1fr);
  }

  .packages-search-button {
    border-radius: 0;
  }

  .packages-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .packages-hero {
    height: 140px;
  }

  .packages-filter {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -45px;
  }

  .filter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .packages-search-button {
    min-height: 90px;
  }

  .packages-list {
    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  .packages-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .packages-page {
    padding-bottom: 50px;
  }

  .packages-hero {
    height: 110px;
  }

  .packages-main-container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .packages-filter {
    display: flex;
    flex-direction: column;
    margin-top: -25px;
    border-radius: 16px;
  }

  .filter-item {
    width: 100%;
    padding: 17px 20px;
    border-right: none;
  }

  .filter-item label {
    margin-bottom: 5px;
  }

  .packages-search-button {
    min-height: 65px;
    border-radius: 0 0 16px 16px;
  }

  .package-list-card {
    height: auto;
    grid-template-columns: 115px minmax(0, 1fr);
  }

  .package-list-image {
    width: 115px;
    height: 100%;
    min-height: 190px;
  }

  .package-list-content {
    flex-direction: column;
    padding: 14px;
  }

  .package-list-info h2 {
    font-size: 0.98rem;
  }

  .package-list-info p {
    font-size: 0.78rem;
  }

  .package-list-price {
    align-self: flex-start;
    text-align: left;
  }

  .package-list-price strong {
    font-size: 1.25rem;
  }

  .package-list-price span {
    margin-top: 4px;
  }

  .pagination-previous,
  .pagination-next {
    width: 100%;
  }
}
/* ========================================
   ENCABEZADO DE PAQUETES
======================================== */

.packages-heading-section {
  width: 100%;
  padding: 55px 0 25px;
  background-color: #ffffff;
}

.packages-heading-content {
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.packages-heading-text h2 {
  margin: 0;
  color: #0c3542;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.packages-heading-text p {
  margin: 10px 0 0;
  color: #687d85;
  font-size: 1rem;
}

.packages-heading-line {
  display: block;
  width: 95px;
  height: 5px;
  margin-top: 16px;
  background-color: #f5a623;
  border-radius: 10px;
}

/* BOTÓN */
.packages-heading-button {
  flex-shrink: 0;
  min-width: 255px;
  min-height: 65px;
  padding: 15px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #0c3542;
  background-color: white;
  border: 1px solid #dce5e8;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.packages-heading-button:hover {
  color: white;
  background-color: #f4512c;
  border-color: #f4512c;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(244, 81, 44, 0.2);
}

.packages-heading-button i {
  transition: transform 0.3s ease;
}

.packages-heading-button:hover i {
  transform: translateX(5px);
}

/* TABLETS Y CELULARES */
@media (max-width: 768px) {
  .packages-heading-section {
    padding: 40px 0 20px;
  }

  .packages-heading-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-heading-text h2 {
    font-size: 1.8rem;
  }

  .packages-heading-button {
    width: 100%;
    min-width: 0;
  }
}
/* ABOUT HERO SECTION  */
.about-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}
.abt-img:hover {
  animation: pulse 1s;
}
.bg-var {
  background-color: var(--maintheme);
}
.highlight {
  color: var(--maintheme);
}
.ab-h{
  color: var(--dark-blue);
}
.ab-p {
  color: var(--maintheme);
  font-family: "Dancing Script";
}
/* ABOUT TESTIMONALS CARD SLIDERS  */
.slide-container {
  width: 100%;
  background-color: rgb(243, 241, 241);
}
.slide-container h2{
  color: var(--dark-blue);
}
.slider-head{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card {
  border-radius: 25px;
  background-color: white;
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  min-height: 220px;
}
.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 25px 25px 90px 90px;
}
.overlay-color {
  background-color: var(--maintheme);
}
.overlay::before,
.overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
}
.overlay::after {
  border-radius: 0 0 0 0;
}
.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: white;
  padding: 3px;
}
.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
 border: 5px solid var(--dark-blue);
}
.card-img:hover{
  animation: pulse 1s;
}
.name {
  font-size: 30px;
  font-weight: bold;
  font-family: dancing script;
  color: var(--dark-blue);
}
.description {
  font-size: 14px;
  color: black;
  text-align: center;
  height: 80px;
  overflow: hidden;
}

.button {
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-blue);
  padding: 8px 16px;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--maintheme);
}
.button:hover{
  color: white;
  background-color: var(--dark-blue);
}
.swiper-navBtn {
color:var(--dark-blue)!important ;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: var(--maintheme)!important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--dark-blue) !important ;
}

@media screen and (max-width: 768px) {
  .slide-content {
      margin: 0 10px;
  }

  .swiper-navBtn {
      display: none;
  }
}

/*  PROFFESIONAL PEOPLE SECTION  */
.team-section {
  text-align: center;
  padding: 60px 0px;
  background-color: #f8f9fa;
}

.team-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--dark-blue);
  text-decoration: underline 5px var(--maintheme);
}
.team-section h2{
  color: var(--dark-blue);
}
.team-member {
  transition: transform 0.3s ease-in-out;
}
.team-member:hover {
  transform: scale(1.05);
}
.team-member img {
  width: 100%;
  border-radius: 10px;
  animation-duration: 1s;
}
.team-member:hover img {
  animation-name: jackInTheBox;
}
.team-member h5 {
  margin-top: 15px;
  font-weight: bold;
}

.team-member span {
  color: #e74c3c;
  font-size: 14px;
  font-family: cursive;
}

/* ...........CONTACT */
.con-banner {
  background: url("images/about-hero.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.con-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.con-banner h1 {
  z-index: 1;
  font-weight: bold;
  font-family: dancing script;
}
/* ========================================
   PREGUNTAS FRECUENTES Y RESERVA
======================================== */

.faq-reserva-section {
  padding: 75px 0;
  background-color: #ffffff;
}

.faq-reserva-section .container {
  max-width: 1500px;
}

.faq-reserva-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(600px, 1.5fr);
  align-items: start;
  gap: 45px;
}

/* ========================================
   PREGUNTAS FRECUENTES
======================================== */

.faq-title {
  margin: 0 0 25px;
  color: #0c3442;
  font-size: 2rem;
  font-weight: 900;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid #dce5e8;
  border-radius: 14px;
  background-color: white;
}

.faq-accordion .accordion-button {
  min-height: 75px;
  padding: 20px 25px;
  color: #0c3442;
  background-color: white;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 800;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #f45d32;
  background-color: #fff7f4;
  box-shadow: none;
}

/* Quitar flecha original de Bootstrap */
.faq-accordion .accordion-button::after {
  width: auto;
  height: auto;
  margin-left: auto;
  content: "+";
  color: #f45d32;
  background-image: none;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  transform: none;
}

/* Cambiar + por − cuando está abierto */
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

.faq-accordion .accordion-body {
  padding: 0 25px 22px;
  color: #627882;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   CORRECCIÓN DEFINITIVA TARJETA DE RESERVA
========================================= */

.faq-reserva-section,
.faq-reserva-section .container,
.faq-reserva-grid,
.reserva-cta {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* CONTENEDOR DE PREGUNTAS Y TARJETA */
.faq-reserva-grid {
  display: grid;
  grid-template-columns: 38% minmax(0, 62%);
  gap: 35px;
  align-items: start;
}

/* TARJETA VERDE */
.reserva-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;

  padding: 45px;
  min-height: 360px;

  color: white;
  background: linear-gradient(120deg, #0d555c, #197f83);
  border-radius: 25px;

  overflow: hidden;
  box-sizing: border-box;
}

/* COLUMNA IZQUIERDA */
.reserva-cta-intro {
  min-width: 0;
}

.reserva-cta-intro h2 {
  margin: 0 0 18px;
  color: white;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.reserva-cta-intro p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* BENEFICIOS */
.reserva-beneficios {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 25px;
  align-content: center;
}

.reserva-beneficio {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

/* CAJA BLANCA DEL ÍCONO */
.beneficio-icon {
  width: 58px;
  height: 58px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: white;
  border-radius: 17px;
  font-size: 1.4rem;
  line-height: 1;
}

/* TEXTO DEL BENEFICIO */
.reserva-beneficio > div:last-child {
  min-width: 0;
}

.reserva-beneficio h3 {
  margin: 0 0 6px;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;

  white-space: normal;
  overflow-wrap: anywhere;
}

.reserva-beneficio p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;

  white-space: normal;
  overflow-wrap: anywhere;
}

/* BOTÓN */
.reserva-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 15px 26px;
  color: white;
  background-color: #ff6335;
  border-radius: 12px;

  font-weight: 800;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 1199px) {
  .faq-reserva-grid {
    grid-template-columns: 1fr;
  }

  .reserva-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .reserva-beneficios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* CELULAR */
@media (max-width: 576px) {
  .faq-reserva-section {
    padding: 45px 0;
  }

  .reserva-cta {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .reserva-cta-intro h2 {
    font-size: 1.85rem;
  }

  .reserva-cta-intro p {
    font-size: 0.95rem;
  }

  .reserva-beneficios {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reserva-beneficio {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .beneficio-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .reserva-cta-button {
    width: 100%;
  }
}/* ========================================
   PAQUETES DESTACADOS PREMIUM
======================================== */

.premium-packages-container {
  max-width: 1650px;
  margin: 0 auto;
  padding-top: 0;
}

.premium-packages-heading {
  margin-top: 0;
}

.premium-packages-container {
  max-width: 1650px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

/* ENCABEZADO */
.premium-packages-heading {
  margin-bottom: 35px;
}

.premium-packages-heading h2 {
  margin: 0;
  color: #0b3543;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.premium-packages-line {
  display: block;
  width: 75px;
  height: 4px;
  margin-top: 14px;
  background-color: #f5a623;
  border-radius: 20px;
}

.premium-packages-heading p {
  margin: 15px 0 0;
  color: #637983;
  font-size: 1.05rem;
}

/* CUADRÍCULA */
.premium-packages-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

/* TARJETA */
.premium-package-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(17, 53, 65, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.premium-package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(17, 53, 65, 0.14);
}

/* IMAGEN */
.premium-package-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.premium-package-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.premium-package-card:hover .premium-package-image img {
  transform: scale(1.08);
}

/* FAVORITO */
.premium-favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6337;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.premium-favorite:hover {
  color: white;
  background-color: #ff6337;
  transform: scale(1.08);
}

/* CONTENIDO */
.premium-package-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.premium-package-content h3 {
  margin: 0 0 4px;
  color: #0c5059;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
}

.premium-package-duration {
  margin: 0 0 17px;
  color: #647983;
  font-size: 0.93rem;
}

/* INCLUYE */
.premium-package-includes {
  margin-bottom: 25px;
}

.premium-package-includes strong {
  display: block;
  margin-bottom: 10px;
  color: #102e3a;
  font-size: 0.9rem;
}

.premium-package-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-package-includes li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 25px;
  color: #284b58;
  font-size: 0.9rem;
  line-height: 1.35;
}

.premium-package-includes li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #07818a;
  font-size: 1.05rem;
  font-weight: 900;
}

/* PARTE INFERIOR */
.premium-package-bottom {
  margin-top: auto;
}

.premium-package-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  color: #697d86;
  font-size: 0.87rem;
}

.premium-package-rating i,
.premium-package-rating strong {
  color: #f5a018;
}

/* PRECIO */
.premium-package-price {
  margin-bottom: 20px;
}

.premium-package-price small {
  display: block;
  margin-bottom: 5px;
  color: #687c85;
  font-size: 0.78rem;
  text-align: right;
}

.premium-package-price div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.premium-package-price strong {
  color: #07545d;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.premium-package-price span {
  color: #687c85;
  font-size: 0.78rem;
  font-weight: 600;
}

/* BOTÓN */
.premium-package-button {
  width: 100%;
  min-height: 60px;
  padding: 14px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #fa6030;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.premium-package-button:hover {
  color: white;
  background-color: #0e6067;
  transform: translateY(-2px);
}

/* MONITORES MEDIANOS */
@media (max-width: 1450px) {
  .premium-packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-package-image {
    height: 220px;
  }
}

/* TABLETS */
@media (max-width: 991px) {
  .premium-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-packages-heading h2 {
    font-size: 2rem;
  }
}

/* CELULARES */
@media (max-width: 576px) {
  .premium-packages-section {
    padding: 50px 0 60px;
  }

  .premium-packages-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .premium-packages-grid {
    grid-template-columns: 1fr;
  }

  .premium-package-image {
    height: 230px;
  }

  .premium-package-content {
    padding: 18px;
  }

  .premium-packages-heading h2 {
    font-size: 1.7rem;
  }

  .premium-package-price strong {
    font-size: 1.6rem;
  }
}/* =========================================================
   MEGAMENÚ DEFINITIVO
========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1050 !important;
  overflow: visible !important;
}

.navbar > .container,
.navbar-collapse,
.navbar-nav {
  overflow: visible !important;
}

.navbar > .container {
  position: static !important;
}

.mega-dropdown {
  position: static !important;
}

/* Menú oculto inicialmente */
.mega-dropdown > .mega-menu {
  position: absolute !important;

  /* Pegado directamente debajo del navbar */
  top: calc(100% - 2px) !important;
  left: 50% !important;
  right: auto !important;

  display: block !important;

  width: min(1500px, calc(100vw - 20px));
  max-height: calc(100vh - 100px);

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;

  background-color: #ffffff;
  border: 1px solid #d8e1e4;
  border-top: none;
  border-radius: 0 0 18px 18px;

  box-shadow: 0 20px 45px rgba(9, 39, 50, 0.2);

  /* Muy importante: sin translateY */
  transform: translateX(-50%) !important;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease;

  z-index: 9999 !important;
}

/* Puente invisible para evitar que se cierre */
.mega-dropdown > .mega-menu::before {
  content: "";

  position: absolute;
  top: -18px;
  left: 0;

  width: 100%;
  height: 20px;

  background-color: transparent;
}

/* Abrir y mantener abierto */
@media (min-width: 992px) {
  .mega-dropdown:hover > .mega-menu,
  .mega-dropdown:focus-within > .mega-menu,
  .mega-dropdown > .mega-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mega-dropdown:hover > .dropdown-toggle,
  .mega-dropdown:focus-within > .dropdown-toggle {
    color: var(--maintheme) !important;
  }

  .mega-dropdown:hover > .dropdown-toggle::after,
  .mega-dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Contenido desplazable */
.mega-menu-content {
  width: 100%;
  max-height: calc(100vh - 110px);

  padding: 12px 30px 25px !important;

  overflow-x: hidden;
  overflow-y: auto;

  background-color: #ffffff;
  border-radius: 0 0 18px 18px;
}

/* Cuatro columnas */
.mega-menu-content > .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;

  margin: 0 !important;
  padding: 0 !important;
}

.mega-menu-content > .row > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;
}

/* Imágenes */
.mega-menu-image {
  display: block;

  width: 100%;
  height: 145px;

  margin: 0 0 14px !important;

  overflow: hidden;
  border-radius: 10px;

  background-color: #eef2f3;
  text-decoration: none;
}

.mega-menu-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.mega-menu-image:hover img {
  transform: scale(1.06);
}

/* Títulos */
.mega-menu-title {
  position: relative;

  margin: 0 0 10px;
  padding: 0 0 11px 14px;

  color: #123744;
  border-bottom: 1px solid #dce4e7;

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.mega-menu-title::before {
  content: "";

  position: absolute;
  top: 2px;
  left: 0;

  width: 4px;
  height: 19px;

  background-color: var(--maintheme);
  border-radius: 10px;
}

.mega-menu-title a {
  color: inherit;
  text-decoration: none;
}

.mega-menu-title a:hover {
  color: var(--maintheme);
}

/* Listas */
.mega-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-list li {
  margin: 0;
  border-bottom: 1px solid #edf1f2;
}

.mega-menu-list li:last-child {
  border-bottom: none;
}

.mega-menu-list a {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 39px;

  padding: 8px 8px 8px 18px;

  color: #566a73;
  border-radius: 7px;

  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;

  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.mega-menu-list a::before {
  content: "";

  position: absolute;
  left: 4px;

  width: 5px;
  height: 5px;

  background-color: #b8c4c8;
  border-radius: 50%;
}

.mega-menu-list a:hover {
  padding-left: 24px;

  color: var(--maintheme);
  background-color: #fff5f2;
}

.mega-menu-list a:hover::before {
  background-color: var(--maintheme);
}

/* Botón inferior */
.mega-menu-footer {
  display: flex;
  justify-content: flex-end;

  width: 100%;

  margin-top: 25px;
  padding-top: 20px;

  border-top: 1px solid #e1e7e9;
}

.mega-menu-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 48px;
  padding: 12px 22px;

  color: #ffffff;
  background-color: var(--maintheme);
  border-radius: 10px;

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.mega-menu-footer a:hover {
  color: #ffffff;
  background-color: var(--dark-blue);
}

/* Tablet y celular */
@media (max-width: 991px) {
  .mega-dropdown {
    position: relative !important;
  }

  .mega-dropdown > .mega-menu {
    position: static !important;

    width: 100%;
    max-height: 70vh;

    margin: 0 0 15px !important;

    display: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    border: 1px solid #d8e1e4;
    border-radius: 12px;

    box-shadow: none;
    transform: none !important;
  }

  .mega-dropdown:focus-within > .mega-menu {
    display: block !important;
  }

  .mega-menu-content {
    padding: 15px !important;
  }

  .mega-menu-content > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 20px;
  }

  .mega-menu-image {
    height: 170px;
  }

  .mega-menu-footer a {
    width: 100%;
  }
}

/* Celulares */
@media (max-width: 576px) {
  .mega-menu-content > .row {
    grid-template-columns: 1fr;
  }

  .mega-menu-image {
    height: 180px;
  }
}
/* =========================================================
   MEGAMENÚ CAMINO INCA / TREKKING
========================================================= */

.trekking-dropdown {
  position: relative !important;
}

/* Contenedor */
.trekking-menu {
  position: absolute !important;
  top: calc(100% - 1px) !important;
  left: 50% !important;
  right: auto !important;

  display: block !important;

  width: min(680px, calc(100vw - 30px));
  margin: 0 !important;
  padding: 28px;

  background-color: #ffffff;
  border: 1px solid #dce4e7;
  border-top: 3px solid var(--maintheme);
  border-radius: 0 0 15px 15px;

  box-shadow: 0 18px 40px rgba(13, 47, 60, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) !important;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;

  z-index: 1200;
}

/* Puente invisible para que no se cierre */
.trekking-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;

  width: 100%;
  height: 12px;

  background-color: transparent;
}

/* Abrir al pasar el cursor */
@media (min-width: 992px) {
  .trekking-dropdown:hover > .trekking-menu,
  .trekking-dropdown:focus-within > .trekking-menu,
  .trekking-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .trekking-dropdown:hover > .nav-link,
  .trekking-dropdown:focus-within > .nav-link {
    color: var(--maintheme) !important;
  }

  .trekking-dropdown:hover > .dropdown-toggle::after,
  .trekking-dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Distribución de las dos columnas */
.trekking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

/* Imagen */
.trekking-image {
  display: block;
  width: 100%;
  height: 175px;

  margin-bottom: 5px;

  overflow: hidden;
  border-radius: 8px;

  background-color: #edf2f3;
}

.trekking-image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.trekking-image:hover img {
  transform: scale(1.07);
}

/* Títulos */
.trekking-title {
  margin: 0;
  padding: 4px 0 11px;

  border-bottom: 1px solid #ced7da;

  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.trekking-title a {
  color: #172f3a;
  text-decoration: none;

  transition: color 0.25s ease;
}

.trekking-title a:hover {
  color: var(--maintheme);
}

/* Enlaces */
.trekking-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.trekking-list li {
  border-bottom: 1px dotted #c9d1d4;
}

.trekking-list li:last-child {
  border-bottom: none;
}

.trekking-list a {
  display: block;
  width: 100%;

  padding: 15px 0;

  color: #66777f;

  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;

  text-decoration: none;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease,
    background-color 0.25s ease;
}

.trekking-list a:hover {
  padding-left: 10px;

  color: var(--maintheme);
  background-color: #fff7f4;
}

/* Flecha */
.trekking-dropdown > .dropdown-toggle::after {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

/* =========================================================
   TABLETS Y CELULARES
========================================================= */

@media (max-width: 991px) {
  .trekking-menu {
    position: static !important;

    width: 100%;
    margin: 0 0 15px !important;
    padding: 20px;

    display: none !important;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    border: 1px solid #dce4e7;
    border-radius: 12px;

    box-shadow: none;
    transform: none !important;
  }

  .trekking-dropdown:focus-within > .trekking-menu {
    display: block !important;
  }

  .trekking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .trekking-image {
    height: 160px;
  }
}

/* Celulares */
@media (max-width: 576px) {
  .trekking-grid {
    grid-template-columns: 1fr;
  }

  .trekking-image {
    height: 190px;
  }

  .trekking-menu {
    padding: 15px;
  }
}
/* =========================================================
   DISEÑO INSTITUCIONAL CUSCO AGENCY
========================================================= */

.ca-about-section,
.ca-purpose-section,
.ca-benefits-section,
.ca-authorizations-section {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.ca-about-container,
.ca-purpose-container,
.ca-benefits-container,
.ca-authorizations-container {
  max-width: 1450px;
}

/* =========================================================
   TÍTULOS GENERALES
========================================================= */

.ca-small-title {
  display: block;
  margin-bottom: 11px;

  color: #e47c00;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.ca-section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.ca-section-heading h2 {
  margin: 0;

  color: #0a3543;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
}

.ca-section-heading > p {
  margin: 18px 0 0;

  color: #526b75;

  font-size: 1.03rem;
  line-height: 1.75;
}

.ca-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ca-title-line {
  width: 75px;
  height: 5px;

  margin-top: 17px;

  background-color: #f5a623;
  border-radius: 20px;
}

.ca-title-line-center {
  margin-right: auto;
  margin-left: auto;
}

/* =========================================================
   SOBRE CUSCO AGENCY
========================================================= */

.ca-about-section {
  padding: 90px 0 80px;
  background-color: #ffffff;
}

.ca-about-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 55px;
}

/* IMAGEN PRINCIPAL */

.ca-about-image-column {
  min-width: 0;
}

.ca-about-image {
  position: relative;

  width: 100%;
  height: 560px;

  overflow: hidden;

  background-color: #edf2f3;
  border-radius: 23px;

  box-shadow: 0 22px 50px rgba(13, 55, 67, 0.14);
}

.ca-about-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.7s ease;
}

.ca-about-image:hover img {
  transform: scale(1.05);
}

/* CUADRO DE EXPERIENCIA */

.ca-experience-box {
  position: absolute;
  left: 22px;
  bottom: 22px;

  min-width: 180px;
  padding: 18px 22px;

  display: flex;
  flex-direction: column;

  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 15px;

  box-shadow: 0 12px 30px rgba(13, 50, 61, 0.18);
}

.ca-experience-box strong {
  color: #f05b2b;

  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.ca-experience-box span {
  margin-top: 7px;

  color: #5e737c;

  font-size: 0.9rem;
  font-weight: 500;
}

/* TEXTO PRINCIPAL */

.ca-about-content {
  min-width: 0;
}

.ca-about-content h1 {
  max-width: 680px;
  margin: 0;

  color: #093441;

  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.7px;
}

.ca-about-content .ca-title-line {
  margin-bottom: 26px;
}

.ca-about-content p {
  margin: 0 0 17px;

  color: #294955;

  font-size: 1rem;
  line-height: 1.72;
}

/* BOTÓN PRINCIPAL */

.ca-main-button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  margin-top: 12px;
  padding: 14px 27px;

  color: #ffffff;
  background-color: #0e6067;

  border-radius: 11px;

  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ca-main-button:hover {
  color: #ffffff;
  background-color: #f05b2b;

  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(240, 91, 43, 0.24);
}

.ca-main-button i {
  transition: transform 0.3s ease;
}

.ca-main-button:hover i {
  transform: translateX(5px);
}

/* =========================================================
   INDICADORES
========================================================= */

.ca-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;

  margin-top: 70px;
}

.ca-stat-card {
  min-width: 0;
  min-height: 165px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 25px 20px;

  text-align: center;

  background-color: #f5f8f8;
  border: 1px solid #dce5e8;
  border-radius: 18px;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ca-stat-card:hover {
  background-color: #ffffff;

  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(12, 52, 65, 0.11);
}

.ca-stat-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;

  color: #f05b2b;
  background-color: #fff0eb;

  border-radius: 50%;

  font-size: 1.15rem;
}

.ca-stat-card strong {
  color: #0b5961;

  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
}

.ca-stat-card span {
  max-width: 220px;
  margin-top: 8px;

  color: #667b84;

  font-size: 0.88rem;
  line-height: 1.45;
}

/* =========================================================
   MISIÓN Y VISIÓN
========================================================= */

.ca-purpose-section {
  padding: 80px 0;
  background-color: #f4f8f8;
}

.ca-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.ca-purpose-card {
  position: relative;

  min-height: 300px;
  padding: 42px 38px;

  overflow: hidden;

  background-color: #ffffff;
  border: 1px solid #dbe5e7;
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(12, 52, 64, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ca-purpose-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 38px rgba(12, 52, 64, 0.13);
}

.ca-purpose-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 23px;

  color: #ffffff;
  background: linear-gradient(135deg, #0e6067, #14848a);

  border-radius: 18px;

  font-size: 1.6rem;

  box-shadow: 0 10px 22px rgba(14, 96, 103, 0.2);
}

.ca-purpose-number {
  position: absolute;
  top: 22px;
  right: 28px;

  color: rgba(14, 96, 103, 0.08);

  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.ca-purpose-card h3 {
  position: relative;

  margin: 0 0 13px;

  color: #0a3543;

  font-size: 1.7rem;
  font-weight: 900;
}

.ca-purpose-card p {
  position: relative;

  margin: 0;

  color: #536c76;

  font-size: 1rem;
  line-height: 1.75;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.ca-benefits-section {
  padding: 85px 0;
  background-color: #ffffff;
}

.ca-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ca-benefit-card {
  min-width: 0;
  min-height: 205px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 27px 24px;

  background-color: #ffffff;
  border: 1px solid #dde6e8;
  border-radius: 18px;

  box-shadow: 0 7px 22px rgba(13, 51, 63, 0.05);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ca-benefit-card:hover {
  border-color: #f5b69f;

  transform: translateY(-7px);
  box-shadow: 0 17px 34px rgba(13, 51, 63, 0.12);
}

.ca-benefit-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  color: #f05b2b;
  background-color: #fff1ec;

  border-radius: 16px;

  font-size: 1.25rem;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.ca-benefit-card:hover .ca-benefit-icon {
  color: #ffffff;
  background-color: #f05b2b;
}

.ca-benefit-card h3 {
  margin: 0 0 9px;

  color: #0b3543;

  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.ca-benefit-card p {
  margin: 0;

  color: #647983;

  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   AUTORIZACIONES
========================================================= */

.ca-authorizations-section {
  padding: 85px 0 90px;
  background-color: #f4f8f8;
}

.ca-documents-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.55fr);
  align-items: stretch;
  gap: 28px;
}

.ca-document-card {
  min-width: 0;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 20px;

  box-shadow: 0 10px 28px rgba(10, 48, 59, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ca-document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(10, 48, 59, 0.14);
}

/* IMAGEN DEL DOCUMENTO */

.ca-document-image {
  width: 100%;
  height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-color: #eef3f4;
}

.ca-document-image img {
  display: block;

  width: 100%;
  height: 100%;

  padding: 18px;

  object-fit: contain;
  object-position: center;

  background-color: #ffffff;

  transition: transform 0.4s ease;
}

.ca-document-card:hover .ca-document-image img {
  transform: scale(1.02);
}

/* CONTENIDO DEL DOCUMENTO */

.ca-document-content {
  min-height: 150px;

  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;

  padding: 24px;
}

.ca-document-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: #0e6067;

  border-radius: 15px;

  font-size: 1.2rem;
}

.ca-document-content span {
  display: block;
  margin-bottom: 5px;

  color: #e47c00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.ca-document-content h3 {
  margin: 0 0 9px;

  color: #0a3543;

  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.35;
}

.ca-document-content p {
  margin: 0;

  color: #647983;

  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================================
   MENSAJE FINAL
========================================================= */

.ca-final-message {
  max-width: 1050px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin: 55px auto 0;
  padding: 26px 32px;

  text-align: center;

  background-color: #ffffff;
  border: 1px solid #f3d5c9;
  border-left: 5px solid #f05b2b;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(14, 52, 63, 0.06);
}

.ca-final-message-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f05b2b;
  background-color: #fff0eb;

  border-radius: 50%;

  font-size: 1.2rem;
}

.ca-final-message p {
  margin: 0;

  color: #34525d;

  font-size: 1.05rem;
  line-height: 1.65;
}

.ca-final-message strong {
  color: #0b5961;
}

/* =========================================================
   PANTALLAS MEDIANAS
========================================================= */

@media (max-width: 1199px) {

  .ca-about-main {
    gap: 40px;
  }

  .ca-about-image {
    height: 530px;
  }

  .ca-stats-grid,
  .ca-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ca-documents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ca-document-image {
    height: 500px;
  }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 991px) {

  .ca-about-section,
  .ca-purpose-section,
  .ca-benefits-section,
  .ca-authorizations-section {
    padding: 65px 0;
  }

  .ca-about-main {
    grid-template-columns: 1fr;
  }

  .ca-about-image {
    height: 500px;
  }

  .ca-purpose-grid,
  .ca-documents-grid {
    grid-template-columns: 1fr;
  }

  .ca-document-image {
    height: 520px;
  }

  .ca-document-content {
    min-height: auto;
  }
}

/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 576px) {

  .ca-about-section,
  .ca-purpose-section,
  .ca-benefits-section,
  .ca-authorizations-section {
    padding: 45px 0 55px;
  }

  .ca-about-container,
  .ca-purpose-container,
  .ca-benefits-container,
  .ca-authorizations-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .ca-about-main {
    gap: 35px;
  }

  .ca-about-image {
    height: 380px;
    border-radius: 18px;
  }

  .ca-experience-box {
    left: 15px;
    bottom: 15px;

    min-width: 155px;
    padding: 14px 17px;
  }

  .ca-experience-box strong {
    font-size: 1.7rem;
  }

  .ca-about-content h1 {
    font-size: 2rem;
    letter-spacing: -0.8px;
  }

  .ca-about-content p {
    font-size: 0.94rem;
  }

  .ca-main-button {
    width: 100%;
  }

  .ca-stats-grid,
  .ca-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ca-stats-grid {
    margin-top: 45px;
  }

  .ca-stat-card {
    min-height: 145px;
  }

  .ca-purpose-card {
    min-height: auto;
    padding: 30px 23px;
  }

  .ca-purpose-number {
    font-size: 4rem;
  }

  .ca-benefit-card {
    min-height: auto;
  }

  .ca-document-image {
    height: 390px;
  }

  .ca-document-content {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 20px 17px;
  }

  .ca-document-icon {
    width: 46px;
    height: 46px;
  }

  .ca-final-message {
    align-items: flex-start;

    margin-top: 38px;
    padding: 20px;

    text-align: left;
  }

  .ca-final-message p {
    font-size: 0.94rem;
  }
}/* =========================================================
   POLÍTICA CONTRA LA EXPLOTACIÓN
   CUSCO AGENCY
========================================================= */

.politica-esnna-page {
  width: 100%;
  overflow-x: hidden;
  background-color: #f4f8f8;
  font-family: Arial, Helvetica, sans-serif;
}

.politica-esnna-container {
  width: 100%;
  max-width: 1450px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* =========================================================
   ENCABEZADO PRINCIPAL
========================================================= */

.politica-esnna-hero {
  position: relative;
  padding: 85px 0 95px;
  overflow: hidden;

  background:
    linear-gradient(
      110deg,
      rgba(6, 52, 61, 0.97),
      rgba(10, 105, 111, 0.9)
    ),
    url("images/machupichu.jpg") center / cover no-repeat;
}

.politica-esnna-hero::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;

  width: 500px;
  height: 500px;

  border: 85px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.politica-esnna-hero::after {
  content: "";
  position: absolute;
  bottom: -190px;
  left: -130px;

  width: 430px;
  height: 430px;

  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.politica-esnna-hero-content {
  position: relative;
  z-index: 2;

  max-width: 1180px;

  display: grid;
  grid-template-columns: 85px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.politica-esnna-hero-icon {
  width: 85px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;

  font-size: 2rem;
}

.politica-esnna-label {
  display: block;
  margin-bottom: 12px;

  color: #ffbd3e;

  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.politica-esnna-hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.3px;
}

/* =========================================================
   INFORMACIÓN DE LA EMPRESA
========================================================= */

.politica-esnna-company-section {
  position: relative;
  z-index: 5;

  margin-top: -45px;
}

.politica-esnna-company-card {
  min-height: 165px;

  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;

  padding: 30px 35px;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 22px;

  box-shadow: 0 18px 45px rgba(11, 53, 64, 0.16);
}

.politica-esnna-company-logo {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: linear-gradient(135deg, #ef4238, #f37743);

  border-radius: 20px;

  font-size: 1.8rem;

  box-shadow: 0 10px 22px rgba(239, 66, 56, 0.25);
}

.politica-esnna-company-text p {
  margin: 0 0 5px;

  color: #5c717a;

  font-size: 0.94rem;
  line-height: 1.35;
}

.politica-esnna-company-text h2 {
  margin: 7px 0;

  color: #0b3543;

  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
}

.politica-esnna-company-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 18px;

  color: #0e676c;
  background-color: #eaf7f4;

  border-radius: 13px;

  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.politica-esnna-company-seal i {
  color: #18a669;
}

/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */

.politica-esnna-content-section {
  padding: 80px 0 90px;
  background-color: #f4f8f8;
}

/*
   Ambas columnas tendrán la misma altura.
   Esto elimina el espacio vacío debajo del afiche.
*/
.politica-esnna-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(400px, 0.65fr);

  align-items: stretch;
  gap: 35px;
}

/* =========================================================
   DOCUMENTO DE LA POLÍTICA
========================================================= */

.politica-esnna-document {
  min-width: 0;
  height: 100%;

  padding: 42px;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 22px;

  box-shadow: 0 10px 32px rgba(11, 53, 64, 0.07);
}

.politica-esnna-document-header {
  margin-bottom: 35px;
}

.politica-esnna-document-header > span {
  display: block;
  margin-bottom: 8px;

  color: #e47b00;

  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.politica-esnna-document-header h2 {
  margin: 0;

  color: #0a3543;

  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
}

.politica-esnna-line {
  width: 75px;
  height: 5px;

  margin-top: 16px;

  background-color: #ef4238;
  border-radius: 20px;
}

/* =========================================================
   PÁRRAFOS NUMERADOS
========================================================= */

.politica-esnna-paragraph {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  align-items: start;
  gap: 20px;

  margin-bottom: 22px;
  padding: 25px;

  background-color: #f8fafa;
  border: 1px solid #e0e8ea;
  border-radius: 17px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.politica-esnna-paragraph:last-child {
  margin-bottom: 0;
}

.politica-esnna-paragraph:hover {
  border-color: #bdd3d6;

  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 53, 64, 0.09);
}

.politica-esnna-paragraph-number {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0e6469;
  background-color: #e8f4f4;

  border-radius: 15px;

  font-size: 0.9rem;
  font-weight: 900;
}

.politica-esnna-paragraph-text {
  min-width: 0;
}

.politica-esnna-paragraph-text p {
  margin: 0;

  color: #344f59;

  font-size: 1rem;
  line-height: 1.78;
  text-align: justify;
}

.politica-esnna-paragraph-text strong {
  color: #0b3543;
  font-weight: 900;
}

/* PÁRRAFO VERDE DESTACADO */

.politica-esnna-paragraph-featured {
  background: linear-gradient(135deg, #ffffff, #f1f8f7);
  border-left: 5px solid #0e6469;
}

.politica-esnna-paragraph-featured
.politica-esnna-paragraph-number {
  color: #ffffff;
  background-color: #0e6469;
}

/* PÁRRAFO ROJO DESTACADO */

.politica-esnna-paragraph-important {
  background: linear-gradient(135deg, #ffffff, #fff5f2);
  border-left: 5px solid #ef4238;
}

.politica-esnna-paragraph-important
.politica-esnna-paragraph-number {
  color: #ffffff;
  background-color: #ef4238;
}

/* =========================================================
   COLUMNA DEL AFICHE
========================================================= */

.politica-esnna-poster-column {
  width: 100%;
  min-width: 0;
  height: 100%;

  align-self: stretch;
}

/*
   La tarjeta ocupa toda la altura de la columna izquierda.
*/
.politica-esnna-poster-card {
  width: 100%;
  height: 100%;
  min-height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 22px;

  box-shadow: 0 15px 38px rgba(11, 53, 64, 0.12);
}

/* Encabezado del afiche */

.politica-esnna-poster-header {
  flex: 0 0 auto;

  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  align-items: center;
  gap: 15px;

  padding: 24px;

  background-color: #ffffff;
  border-bottom: 1px solid #e2eaec;
}

.politica-esnna-poster-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: #ef4238;

  border-radius: 15px;

  font-size: 1.2rem;
}

.politica-esnna-poster-header span {
  display: block;
  margin-bottom: 4px;

  color: #e47b00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.politica-esnna-poster-header h2 {
  margin: 0;

  color: #0a3543;

  font-size: 1.45rem;
  font-weight: 900;
}

/* Área completa de la imagen */

.politica-esnna-poster-image {
  position: relative;

  flex: 1 1 auto;

  width: 100%;
  min-height: 0;

  display: flex;
  align-items: stretch;
  justify-content: center;

  padding: 16px;

  overflow: hidden;

  background-color: #edf2f3;
  text-decoration: none;
}

/*
   La imagen se adapta a toda la altura disponible
   sin deformarse ni recortarse.
*/
.politica-esnna-poster-image img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;

  object-fit: contain;
  object-position: center;

  background-color: #ffffff;

  transition: transform 0.4s ease;
}

.politica-esnna-poster-image:hover img {
  transform: scale(1.012);
}

/* Botón para ampliar el afiche */

.politica-esnna-poster-overlay {
  position: absolute;
  right: 28px;
  bottom: 28px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 15px;

  color: #ffffff;
  background-color: rgba(5, 58, 65, 0.94);

  border-radius: 11px;

  font-size: 0.8rem;
  font-weight: 800;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.politica-esnna-poster-image:hover
.politica-esnna-poster-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   MENSAJE FINAL
========================================================= */

.politica-esnna-final-section {
  padding: 0 0 75px;
  background-color: #f4f8f8;
}

.politica-esnna-final-card {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  align-items: center;
  gap: 24px;

  padding: 32px 38px;

  color: #ffffff;
  background: linear-gradient(115deg, #073f47, #0e696e);

  border-radius: 22px;

  box-shadow: 0 15px 35px rgba(7, 63, 71, 0.2);
}

.politica-esnna-final-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.13);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;

  font-size: 1.7rem;
}

.politica-esnna-final-card span {
  display: block;
  margin-bottom: 7px;

  color: #ffb639;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.politica-esnna-final-card h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
}

/* =========================================================
   PANTALLAS MEDIANAS
========================================================= */

@media (max-width: 1199px) {
  .politica-esnna-grid {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(360px, 0.75fr);

    gap: 28px;
  }

  .politica-esnna-document {
    padding: 35px;
  }

  .politica-esnna-paragraph {
    padding: 22px;
  }

  .politica-esnna-paragraph-text p {
    font-size: 0.96rem;
  }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 991px) {
  .politica-esnna-hero {
    padding: 70px 0 80px;
  }

  .politica-esnna-company-card {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .politica-esnna-company-seal {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }

  .politica-esnna-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .politica-esnna-document {
    height: auto;
  }

  .politica-esnna-poster-column {
    height: auto;
  }

  .politica-esnna-poster-card {
    height: auto;
    min-height: 0;
  }

  .politica-esnna-poster-image {
    flex: none;
    min-height: 850px;
  }

  .politica-esnna-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 576px) {
  .politica-esnna-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .politica-esnna-hero {
    padding: 50px 0 65px;
  }

  .politica-esnna-hero-content {
    grid-template-columns: 1fr;
  }

  .politica-esnna-hero-icon {
    width: 68px;
    height: 68px;

    border-radius: 18px;

    font-size: 1.5rem;
  }

  .politica-esnna-hero h1 {
    font-size: 1.9rem;
    letter-spacing: -0.7px;
  }

  .politica-esnna-company-section {
    margin-top: -30px;
  }

  .politica-esnna-company-card {
    grid-template-columns: 1fr;

    padding: 23px 20px;
  }

  .politica-esnna-company-logo {
    width: 62px;
    height: 62px;
  }

  .politica-esnna-content-section {
    padding: 50px 0 60px;
  }

  .politica-esnna-document {
    padding: 25px 18px;

    border-radius: 18px;
  }

  .politica-esnna-document-header h2 {
    font-size: 1.7rem;
  }

  .politica-esnna-paragraph {
    grid-template-columns: 1fr;

    padding: 20px;
  }

  .politica-esnna-paragraph-number {
    width: 48px;
    height: 48px;

    border-radius: 13px;
  }

  .politica-esnna-paragraph-text p {
    font-size: 0.93rem;
    line-height: 1.7;
    text-align: left;
  }

  .politica-esnna-poster-header {
    padding: 20px;
  }

  .politica-esnna-poster-image {
    min-height: 570px;
    padding: 10px;
  }

  .politica-esnna-poster-overlay {
    position: absolute;
    right: 20px;
    bottom: 20px;

    opacity: 1;
    transform: none;
  }

  .politica-esnna-poster-overlay span {
    display: none;
  }

  .politica-esnna-final-section {
    padding-bottom: 50px;
  }

  .politica-esnna-final-card {
    grid-template-columns: 1fr;

    padding: 26px 22px;
  }

  .politica-esnna-final-icon {
    width: 62px;
    height: 62px;
  }
}
/* =========================================================
   PÁGINA DE CONTACTO — CUSCO AGENCY
========================================================= */

.contact-page {
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

/* =========================================================
   PORTADA
========================================================= */

.contact-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;

  background:
    linear-gradient(
      110deg,
      rgba(5, 54, 63, 0.97),
      rgba(8, 105, 111, 0.88)
    ),
    url("images/cusco.png") center / cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;

  width: 520px;
  height: 520px;

  border: 85px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;

  width: 450px;
  height: 450px;

  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.contact-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 9px 15px;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.13);

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-hero-label i {
  color: #ffb435;
}

.contact-hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.contact-hero p {
  max-width: 750px;
  margin: 25px 0 0;

  color: rgba(255, 255, 255, 0.91);

  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 32px;
}

.contact-hero-button {
  min-height: 57px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 25px;

  border-radius: 12px;

  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-whatsapp-button {
  color: #ffffff;
  background-color: #25d366;
}

.contact-whatsapp-button:hover {
  color: #ffffff;
  background-color: #1fb759;

  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.contact-form-button {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form-button:hover {
  color: #0b5961;
  background-color: #ffffff;

  transform: translateY(-4px);
}

/* =========================================================
   TARJETAS DE INFORMACIÓN
========================================================= */

.contact-info-section {
  position: relative;
  z-index: 5;

  margin-top: -35px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-info-card {
  min-width: 0;
  min-height: 245px;

  padding: 30px;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 20px;

  box-shadow: 0 18px 42px rgba(11, 53, 64, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(11, 53, 64, 0.17);
}

.contact-info-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  color: #f05b2b;
  background-color: #fff0ea;

  border-radius: 17px;

  font-size: 1.35rem;
}

.contact-info-card > span {
  display: block;
  margin-bottom: 5px;

  color: #e17a00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.contact-info-card h2 {
  margin: 0 0 14px;

  color: #0a3543;

  font-size: 1.3rem;
  font-weight: 900;
}

.contact-info-card a {
  display: block;
  width: fit-content;

  margin-bottom: 8px;

  color: #0b666c;

  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;

  overflow-wrap: anywhere;

  transition: color 0.25s ease;
}

.contact-info-card a:hover {
  color: #f05b2b;
}

.contact-info-card p {
  margin: 0;

  color: #647983;

  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */

.contact-main-section {
  padding: 90px 0;
  background-color: #f4f8f8;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.65fr);
  align-items: start;
  gap: 32px;
}

/* TÍTULOS */

.contact-section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.contact-section-heading > span {
  display: block;
  margin-bottom: 8px;

  color: #e27b00;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.contact-section-heading h2 {
  margin: 0;

  color: #0a3543;

  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
}

.contact-section-heading p {
  margin: 18px 0 0;

  color: #5c717b;

  font-size: 1rem;
  line-height: 1.7;
}

.contact-title-line {
  width: 75px;
  height: 5px;

  margin-top: 16px;

  background-color: #f5a623;
  border-radius: 20px;
}

/* =========================================================
   FORMULARIO
========================================================= */

.contact-form-card {
  min-width: 0;

  padding: 42px;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 22px;

  box-shadow: 0 12px 32px rgba(11, 53, 64, 0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form-group {
  min-width: 0;
}

.contact-form-group label {
  display: block;
  margin-bottom: 9px;

  color: #173d49;

  font-size: 0.88rem;
  font-weight: 800;
}

.contact-input-wrapper,
.contact-textarea-wrapper {
  position: relative;
}

.contact-input-wrapper > i,
.contact-textarea-wrapper > i {
  position: absolute;
  left: 17px;

  color: #768a92;
  font-size: 0.95rem;

  pointer-events: none;
}

.contact-input-wrapper > i {
  top: 50%;
  transform: translateY(-50%);
}

.contact-textarea-wrapper > i {
  top: 18px;
}

.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-textarea-wrapper textarea {
  width: 100%;

  color: #294955;
  background-color: #f8fafa;

  border: 1px solid #dce5e8;
  outline: none;

  font-family: inherit;
  font-size: 0.94rem;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-input-wrapper input,
.contact-input-wrapper select {
  height: 57px;
  padding: 0 18px 0 48px;

  border-radius: 12px;
}

.contact-textarea-wrapper textarea {
  min-height: 155px;
  padding: 17px 18px 17px 48px;

  resize: vertical;
  border-radius: 14px;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-textarea-wrapper textarea:focus {
  background-color: #ffffff;
  border-color: #0d7379;

  box-shadow: 0 0 0 4px rgba(13, 115, 121, 0.09);
}

.contact-input-wrapper input::placeholder,
.contact-textarea-wrapper textarea::placeholder {
  color: #95a4aa;
}

.contact-select-wrapper select {
  cursor: pointer;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #687c85;

  font-size: 0.82rem;
  line-height: 1.55;

  cursor: pointer;
}

.contact-consent input {
  flex-shrink: 0;

  width: 17px;
  height: 17px;

  margin-top: 2px;

  accent-color: #0d7379;
}

.contact-submit-button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 27px;

  color: #ffffff;
  background-color: #f05b2b;

  border: none;
  border-radius: 12px;

  font-size: 0.96rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-submit-button:hover {
  background-color: #0e646a;

  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(14, 100, 106, 0.2);
}

/* =========================================================
   COLUMNA LATERAL
========================================================= */

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-whatsapp-card {
  padding: 32px;

  color: #ffffff;
  background:
    linear-gradient(135deg, #0d696f, #10948d);

  border-radius: 22px;

  box-shadow: 0 15px 35px rgba(13, 105, 111, 0.22);
}

.contact-whatsapp-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  color: #ffffff;
  background-color: #25d366;

  border-radius: 18px;

  font-size: 1.8rem;
}

.contact-whatsapp-card > span {
  display: block;
  margin-bottom: 7px;

  color: #aef4ce;

  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-whatsapp-card h2 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
}

.contact-whatsapp-card p {
  margin: 0 0 24px;

  color: rgba(255, 255, 255, 0.91);

  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-whatsapp-card > a {
  width: 100%;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 11px;
  padding: 12px 15px;

  color: #0e615f;
  background-color: #ffffff;

  border-radius: 11px;

  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-whatsapp-card > a:hover {
  color: #ffffff;
  background-color: #25d366;

  transform: translateY(-3px);
}

/* BENEFICIOS */

.contact-support-card {
  padding: 30px;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 20px;

  box-shadow: 0 10px 28px rgba(11, 53, 64, 0.07);
}

.contact-support-card > span {
  display: block;
  margin-bottom: 7px;

  color: #e27b00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.contact-support-card h2 {
  margin: 0 0 22px;

  color: #0a3543;

  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.3;
}

.contact-support-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.contact-support-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 15px;

  color: #526b75;

  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-support-card li:last-child {
  margin-bottom: 0;
}

.contact-support-card li i {
  flex-shrink: 0;
  margin-top: 3px;

  color: #12a46c;
}

/* =========================================================
   MAPA
========================================================= */

.contact-map-section {
  padding: 85px 0;
  background-color: #ffffff;
}

.contact-map-heading {
  margin-bottom: 35px;
}

.contact-map-card {
  position: relative;

  overflow: hidden;

  background-color: #ffffff;
  border: 1px solid #dce5e8;
  border-radius: 22px;

  box-shadow: 0 15px 35px rgba(11, 53, 64, 0.1);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
}

.contact-map-address {
  position: absolute;
  left: 25px;
  bottom: 25px;

  max-width: 420px;

  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;

  padding: 17px 20px;

  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 15px;

  box-shadow: 0 12px 30px rgba(11, 53, 64, 0.2);
}

.contact-map-address-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: #f05b2b;

  border-radius: 14px;
}

.contact-map-address span {
  display: block;
  margin-bottom: 4px;

  color: #e27b00;

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-map-address strong {
  display: block;

  color: #173d49;

  font-size: 0.92rem;
  line-height: 1.4;
}

/* =========================================================
   MENSAJE FINAL
========================================================= */

.contact-final-section {
  padding: 0 0 80px;
  background-color: #ffffff;
}

.contact-final-card {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;

  padding: 34px 38px;

  color: #ffffff;
  background: linear-gradient(115deg, #073f47, #0e696e);

  border-radius: 22px;

  box-shadow: 0 15px 35px rgba(7, 63, 71, 0.2);
}

.contact-final-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.13);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;

  font-size: 1.7rem;
}

.contact-final-card span {
  display: block;
  margin-bottom: 7px;

  color: #ffb639;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.contact-final-card h2 {
  max-width: 850px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}

.contact-final-card > a {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 22px;

  color: #0b5961;
  background-color: #ffffff;

  border-radius: 11px;

  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-final-card > a:hover {
  color: #ffffff;
  background-color: #f05b2b;

  transform: translateY(-3px);
}

/* =========================================================
   PANTALLAS MEDIANAS
========================================================= */

@media (max-width: 1199px) {
  .contact-main-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  }

  .contact-form-card {
    padding: 35px;
  }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 991px) {
  .contact-hero {
    padding: 80px 0 100px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-final-card {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .contact-final-card > a {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 576px) {
  .contact-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .contact-hero {
    padding: 60px 0 85px;
  }

  .contact-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.2px;
  }

  .contact-hero p {
    font-size: 0.96rem;
  }

  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-button {
    width: 100%;
  }

  .contact-info-section {
    margin-top: -40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card:last-child {
    grid-column: auto;
  }

  .contact-info-card {
    min-height: auto;
    padding: 25px 21px;
  }

  .contact-main-section {
    padding: 55px 0;
  }

  .contact-form-card {
    padding: 27px 19px;
    border-radius: 18px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: flex;
  }

  .contact-whatsapp-card,
  .contact-support-card {
    padding: 25px 21px;
  }

  .contact-map-section {
    padding: 55px 0;
  }

  .contact-map-card iframe {
    height: 430px;
  }

  .contact-map-address {
    position: static;

    max-width: none;

    margin: 0;
    padding: 18px;

    border-radius: 0;
    box-shadow: none;
  }

  .contact-final-section {
    padding-bottom: 55px;
  }

  .contact-final-card {
    grid-template-columns: 1fr;

    padding: 27px 22px;
  }

  .contact-final-icon {
    width: 62px;
    height: 62px;
  }
}
/* =========================================================
   AJUSTE DE ESCALA DE LA PÁGINA CONTACTO
========================================================= */

.contact-container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.contact-hero {
  padding-top: 80px;
  padding-bottom: 100px;
}

.contact-hero-content {
  max-width: 800px;
}

.contact-hero h1 {
  max-width: 800px;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.contact-hero p {
  max-width: 700px;
  font-size: 1rem;
}

.contact-info-section {
  margin-top: -35px;
}

.contact-info-card {
  padding: 27px;
}

.contact-main-section,
.contact-map-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

@media (max-width: 991px) {
  .contact-container {
    max-width: 960px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-hero {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

@media (max-width: 576px) {
  .contact-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .contact-hero {
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-info-section {
    margin-top: -30px;
  }
}
/* ==========================================
   AUTORIZACIONES - DOCUMENTOS OFICIALES
========================================== */


.autorizacion-card {

    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    transition: all .35s ease;

}


.autorizacion-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.15);

}



/* ==========================================
   IMAGEN DEL DOCUMENTO
========================================== */


.autorizacion-imagen {

    width:100%;

    height:420px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:15px;

    background:#ffffff;

    overflow:hidden;

}



.autorizacion-imagen img {

    width:100%;

    height:100%;

    object-fit:contain;

    object-position:center;

    border-radius:10px;

    transition:.4s ease;

}



.autorizacion-card:hover 
.autorizacion-imagen img {

    transform:scale(1.04);

}



/* ==========================================
   INFORMACIÓN DEL DOCUMENTO
========================================== */


.autorizacion-contenido {

    display:flex;

    align-items:center;

    gap:18px;

    padding:25px 35px 10px;

}



.autorizacion-icono {

    width:60px;

    height:60px;

    min-width:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#08636b;

    color:white;

    border-radius:16px;

    font-size:26px;

}



.autorizacion-contenido span {

    display:block;

    color:#d88900;

    font-size:14px;

    font-weight:900;

    letter-spacing:1.5px;

    margin-bottom:5px;

}



.autorizacion-contenido h3 {

    margin:0;

    color:#073442;

    font-size:26px;

    line-height:1.2;

    font-weight:900;

}



/* ==========================================
   DESCRIPCIÓN
========================================== */


.autorizacion-card p {

    padding:5px 35px 30px;

    margin:0;

    color:#607681;

    font-size:16px;

    line-height:1.7;

}



/* ==========================================
   TABLET
========================================== */


@media(max-width:991px){


    .autorizacion-imagen {

        height:380px;

    }


    .autorizacion-contenido {

        padding:22px;

    }


}



/* ==========================================
   CELULAR
========================================== */


@media(max-width:576px){


    .autorizacion-imagen {

        height:320px;

        padding:10px;

    }


    .autorizacion-imagen img {

        object-fit:contain;

    }



    .autorizacion-contenido {

        padding:20px;

        gap:14px;

    }



    .autorizacion-icono {

        width:50px;

        height:50px;

        min-width:50px;

        font-size:21px;

    }



    .autorizacion-contenido h3 {

        font-size:20px;

    }



    .autorizacion-card p {

        padding:5px 20px 25px;

        font-size:15px;

    }


}/* CENTRAR TARJETA GERCETUR CUANDO ESTA SOLA */

.autorizacion-card:last-child {

    grid-column: 1 / -1;

    width: 380px;

    justify-self: center;

}
/* =====================================
   MEGA MENU PAQUETES 2 COLUMNAS
===================================== */

.mega-menu{
    width:1000px;
    left:50%;
    transform:translateX(-50%);
}


.mega-menu .mega-menu-content{
    padding:25px 35px;
}


.mega-menu .col-lg-6{
    width:50%;
}


.mega-menu-image img{
    height:170px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
}


.mega-menu-list li{
    margin-bottom:12px;
}


.mega-menu-list a{
    font-size:15px;
}



/* TABLET */

@media(max-width:991px){

.mega-menu{
    width:100%;
    transform:none;
    left:0;
}

.mega-menu .col-lg-6{
    width:100%;
}

}/* =====================================
   MEGA MENU PAQUETES ESTILO TREKKING
===================================== */

.mega-menu{
    width:850px !important;
    left:50% !important;
    transform:translateX(-50%);
    border-radius:20px;
    overflow:hidden;
}


/* CONTENIDO */

.mega-menu-content{

    padding:20px 30px 15px !important;

}


/* DOS COLUMNAS */

.mega-menu .row{

    display:flex;
    justify-content:center;
    gap:20px;

}


.mega-menu .col-lg-6{

    width:50%;
    padding:0 10px;

}


/* IMAGEN */

.mega-menu-image img{

    width:100%;
    height:160px;

    object-fit:cover;

    border-radius:15px;

}



/* TITULO */

.mega-menu-title{

    margin-top:12px !important;
    margin-bottom:8px !important;

    font-size:20px;

}


/* LINEA */

.mega-menu-title::before{

    height:22px;

}


/* LISTAS */

.mega-menu-list{

    padding:0;
    margin:0;

}


.mega-menu-list li{

    padding:10px 0;

    border-bottom:1px solid #e7e7e7;

}



/* FOOTER */

.mega-menu-footer{

    margin-top:10px;

    padding-top:15px;

    border-top:1px solid #e5e5e5;

    display:flex;

    justify-content:flex-end;

}


.mega-menu-footer a{

    padding:13px 25px;

    border-radius:12px;

}


/* RESPONSIVE */

@media(max-width:991px){

.mega-menu{

width:100% !important;

}

.mega-menu .col-lg-6{

width:100%;

}

}/* MEJOR DISTRIBUCIÓN LISTA CUSCO */

.mega-menu-list.cusco-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:35px;
}


.mega-menu-list.cusco-list li{
    padding:8px 0;
}


/* REDUCIR ALTURA GENERAL */

.mega-menu-image img{
    height:130px!important;
}


.mega-menu-content{
    padding-bottom:18px!important;
}


.mega-menu-footer{
    margin-top:10px!important;
}

.testimonios-seccion{
    width:100%;
    max-width:900px;
    margin:0 auto;
}


.titulo-seccion{
    text-align:center;
    font-size:32px;
    font-weight:800;
    color:#063b50;
    margin-bottom:25px;
}


/* ===============================
   AJUSTE TEXTO TESTIMONIO
================================ */

.testimonio-card{
    position:relative;
    padding:45px 50px;
}


.comillas{
    position:absolute;
    top:25px;
    left:35px;

    font-size:55px;
    line-height:1;

    color:#ff5722;
    opacity:.9;
}



.testimonio-texto{

    margin:20px 0 0 0;

    padding-left:20px;

    font-size:16px;

    line-height:1.7;

    font-style:italic;

    color:#555;

    max-width:850px;

}

/* ==========================================
   HERO PAQUETES
========================================== */


.packages-hero{

height:650px;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.65)
),
url("images/machupichu.jpg");

background-size:cover;

background-position:center;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

}



.packages-hero-content{

max-width:900px;

padding:30px;

z-index:2;

}



.packages-hero-content span{

color:#ff9800;

font-size:15px;

font-weight:900;

letter-spacing:3px;

}



.packages-hero-content h1{

font-size:70px;

font-weight:900;

text-transform:uppercase;

margin:20px 0;

}



.packages-hero-content p{

font-size:22px;

line-height:1.6;

margin-bottom:35px;

}




.packages-btn{

display:inline-flex;

align-items:center;

gap:10px;

background:#25d366;

color:white;

padding:16px 35px;

border-radius:50px;

font-weight:800;

text-decoration:none;

transition:.3s;

}



.packages-btn:hover{

transform:translateY(-5px);

}





/* ==========================================
   TITULO
========================================== */


.packages-section{

max-width:1400px;

margin:80px auto;

padding:0 40px;

}



.packages-title{

text-align:center;

margin-bottom:40px;

}



.packages-title span{

color:#ff7a00;

font-weight:900;

letter-spacing:2px;

}



.packages-title h2{

font-size:45px;

font-weight:900;

color:#14213d;

margin:15px 0;

}



.packages-title p{

color:#64748b;

font-size:18px;

}




/* ==========================================
   FILTROS
========================================== */


.packages-filter{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:50px;

}



.packages-filter button{

border:none;

background:#f1f5f9;

padding:12px 30px;

border-radius:30px;

font-weight:800;

color:#14213d;

cursor:pointer;

}



.packages-filter button.active{

background:#ff7a00;

color:white;

}





/* ==========================================
   GRID TARJETAS
========================================== */


.packages-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}




.package-card{

background:white;

border-radius:30px;

overflow:hidden;

box-shadow:
0 20px 50px rgba(0,0,0,.10);

transition:.4s;

}



.package-card:hover{

transform:translateY(-10px);

}





/* IMAGEN */

.package-image{

height:270px;

position:relative;

overflow:hidden;

}



.package-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}



.package-card:hover img{

transform:scale(1.08);

}



.package-image span{

position:absolute;

top:20px;

left:20px;

background:#ff7a00;

color:white;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:800;

}





/* CONTENIDO */


.package-content{

padding:30px;

}



.package-content h3{

font-size:28px;

font-weight:900;

color:#14213d;

margin-bottom:10px;

}



.duration{

color:#ff7a00;

font-weight:800;

}



.package-content p{

color:#64748b;

line-height:1.6;

}



.package-content ul{

list-style:none;

padding:0;

margin:25px 0;

}



.package-content li{

margin-bottom:12px;

color:#475569;

}



.package-content li i{

color:#ff7a00;

margin-right:8px;

}





/* FOOTER TARJETA */


.package-footer{

display:flex;

align-items:center;

justify-content:space-between;

border-top:1px solid #eee;

padding-top:20px;

}



.package-footer strong{

font-size:20px;

color:#14213d;

}



.package-footer a{

background:#ef233c;

color:white;

padding:12px 20px;

border-radius:30px;

font-weight:800;

text-decoration:none;

}





/* ==========================================
   EXPERIENCIA PERSONALIZADA
========================================== */


.custom-experience{

max-width:1400px;

margin:80px auto;

padding:50px;

border-radius:35px;

background:

linear-gradient(
135deg,
#14213d,
#243b55
);

color:white;

display:flex;

justify-content:space-between;

align-items:center;

gap:30px;

}



.custom-experience span{

color:#ff9800;

font-weight:900;

letter-spacing:2px;

}



.custom-experience h2{

font-size:38px;

font-weight:900;

}



.custom-experience p{

font-size:18px;

}



.custom-experience a{

background:#25d366;

padding:16px 35px;

border-radius:40px;

color:white;

text-decoration:none;

font-weight:900;

white-space:nowrap;

}





/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:992px){


.packages-hero{

height:500px;

}


.packages-hero-content h1{

font-size:45px;

}



.packages-grid{

grid-template-columns:1fr 1fr;

}



.custom-experience{

flex-direction:column;

text-align:center;

}


}



@media(max-width:600px){


.packages-section{

padding:0 20px;

}


.packages-grid{

grid-template-columns:1fr;

}



.packages-filter{

flex-wrap:wrap;

}



.packages-hero-content h1{

font-size:35px;

}



.custom-experience h2{

font-size:28px;

}


}/* =====================================
   FILTROS - PAQUETES DESTACADOS
===================================== */

.packages-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin:40px auto 60px;
}


.packages-filter button{

    background:#ffffff;
    border:1px solid #e5e7eb;

    color:#14213d;

    padding:14px 38px;

    border-radius:50px;

    font-size:16px;

    font-weight:800;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08);

}


.packages-filter button:hover{

    color:#ff7a00;

    border-color:#ff7a00;

    transform:translateY(-4px);

}



/* BOTON ACTIVO */

.packages-filter button.active{

    background:#ff7a00;

    color:white;

    border-color:#ff7a00;

    box-shadow:
    0 12px 25px rgba(255,122,0,.35);

}



/* =====================================
   TITULO PAQUETES
===================================== */


.packages-title{

    text-align:center;

    margin-bottom:20px;

}


.packages-title span{

    color:#ff7a00;

    font-size:14px;

    font-weight:900;

    letter-spacing:2px;

}



.packages-title h2{

    color:#14213d;

    font-size:48px;

    font-weight:900;

    margin:15px 0;

}



.packages-title p{

    color:#64748b;

    font-size:18px;

    max-width:750px;

    margin:auto;

    line-height:1.6;

}



/* =====================================
   SECCION GENERAL
===================================== */

.packages-section{

    background:#ffffff;

    padding:80px 0;

}



/* quitar fondo verde anterior */

.packages-section::before{

    display:none;

}


/* RESPONSIVE */

@media(max-width:768px){

    .packages-title h2{

        font-size:34px;

    }


    .packages-filter button{

        padding:12px 25px;

        font-size:14px;

    }

}