
:root {
    /* ÃƒÂ°Ã…Â¸Ã…Â½Ã‚Â¨ Colores principales */
    --color-primary: #EC1C24;     /* Azul lago profundo */
    --color-secondary: #474747;   /* Turquesa lago */
    --color-accent: #FFCB01;      /* Dorado andino */

    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    /* ÃƒÂ°Ã…Â¸Ã…Â½Ã‚Â¨ Neutros */
    --color-background: #F9FAF8; /* Blanco natural */
    --color-surface: #FFFFFF;
    --color-text-primary: #331f1f;
    --color-text-secondary: #4B5563;
    
    /* ÃƒÂ°Ã…Â¸Ã…Â½Ã‚Â¨ Estados */
    --color-border: #E5E7EB;
    --color-hover: #000000;

    /* 2. Tipografia (Combo elegante: Serif para , Sans-serif para cuerpo) */
    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    /* 3. Espaciado y Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    --container-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
	  --border-radius:999px;
}
/*  RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 4rem 0; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  color: var(--color-text-secondary);
  max-width: 65ch;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004999;
}

/* boton base */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-hover);
}

/* -----------------------------------------
 *  HEADER
 * ----------------------------------------- */
/* =========================
   TOP BAR
========================= */
.tt-topbar {
  background: var(--gradient-primary);
  font-size: 0.85rem;
}

.tt-topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

/* Social icons */
.tt-topbar__social a {
  margin-right: 1rem;
  color: var(--color-surface);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transition: opacity 0.3s ease;
}

.tt-topbar__social a:hover {
  
  background-color: var(--color-accent);
}
.tt-topbar__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tt-topbar__info {font-weight: 800;}
/* Info */
.tt-topbar__info span {
  margin-left: 1.5rem;
  color: var(--color-text-primary);
  white-space: nowrap;
}
/* =========================
   TOPBAR Ã¢â‚¬â€œ RESPONSIVE
========================= */

@media (max-width: 768px) {
  .tt-topbar__content {
    justify-content: center;
  }

  /* Ocultar info */
  .tt-topbar__info {
    display: none;
  }

  /* Centrar redes */
  .tt-topbar__social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
  }
}
/* =========================
   MAIN HEADER
========================= */
.tt-header {
  background-color: var(--color-hover);
  position: sticky;
  top: 0;
  z-index: 111;
}

.tt-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* =========================
   LOGO
========================= */
.tt-logo {
  display: flex;
  align-items: center;
}

.tt-logo__img {
  max-height: 60px;
  width: auto;
}

/* =========================
   NAV
========================= */
.tt-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.tt-nav__list a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-surface);
  text-decoration: none;
  position: relative;
  transition: filter 0.3s ease
}


.tt-nav__list a:hover {
  filter: brightness(0.75); /* <-- oscurecimiento */
}

/* =========================
   SUBMENU
========================= */

/* Contenedor padre */
.tt-nav__list li {
  position: relative;
}

/* Submenu oculto por defecto */
.tt-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: var(--color-hover);
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Mostrar submenu al hover */
.tt-nav__list li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items del submenu */
.tt-nav__list .sub-menu li {
  width: 100%;
}

/* Links del submenu */
.tt-nav__list .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-background);
  white-space: normal;
}

/* Hover submenu */
.tt-nav__list .sub-menu a:hover {
  background-color: var(--color-accent);
  color: #000;
  filter: none;
}

/* =========================
   ACTIONS (BOTÃƒÆ’Ã¢â‚¬Å“N + MENU)
========================= */
.tt-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* CTA BUTTON */
.tt-btn--primary {
  position: relative;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border-radius: var(--border-radius);
  color: var(--color-background);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none; /* sin borde real */
  z-index: 1;
}

.tt-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* grosor del borde */
  border-radius: inherit;
  background: var(--gradient-primary);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.tt-btn--primary:hover {
  background: var(--gradient-primary);
  color: var(--color-surface);
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

/* BotÃ³n hamburguesa */
.tt-menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tt-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-surface);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    transform-origin: center;
}


.tt-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tt-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.tt-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-surface, #fff);
    z-index: 9998;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}


.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


.drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary, #007bff);
    color: white;
}

.drawer-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.close-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}


.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}


.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    margin-bottom: 5px;
}

.mobile-navigation a {
    display: block;
    padding: 12px 0;
    color: var(--color-text, #333);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s;
}

.mobile-navigation a:hover {
    color: var(--color-primary, #007bff);
}


.mobile-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text, #555);
}

.mobile-contact-info i {
    width: 20px;
    color: var(--color-surface);
}

.mobile-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary, #007bff);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.mobile-socials a:hover {
    transform: translateY(-3px);
}


.mobile-language-wrapper {
    margin-bottom: 20px;
}

.mobile-language-wrapper .label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text, #333);
}

/* Breakpoints */
@media (max-width: 992px) {
    .tt-menu-toggle {
        display: flex !important;
    }
    
    .tt-nav {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .mobile-drawer,
    .mobile-overlay {
        display: none !important;
    }
    
    .tt-nav {
        display: flex !important;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

.tt-topbar + .tt-header.header-hidden {
    transform: translateY(calc(-100% - var(--topbar-height, 40px)));
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1225px) {

  .tt-nav {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--color-negro);
    padding: 2rem;
    display: none;
  }

  .tt-nav.active {
    display: block;
  }

  .tt-nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tt-nav__list a {
    font-size: 1rem;
  }

  .tt-menu-toggle {
    display: flex;
    color: var(--color-background);
  }
}
/* -----------------------------------------
 *  FIN HEADER
 * ----------------------------------------- */

/* -----------------------------------------
 * 1. Seccion hero
 * ----------------------------------------- */
/* =========================
   HERO SECTION
========================= */
.tt-hero {
  position: relative;
  min-height: 80vh;
  padding-top: 110px; /* espacio para header */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

@keyframes tt-hero-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.tt-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  animation: tt-hero-zoom 18s ease-in-out infinite;
  will-change: transform;
}

/* =========================
   OVERLAY
========================= */
.tt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

/* =========================
   CONTENT
========================= */
.tt-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-xl);
}

/* =========================
   TITLE
========================= */
.tt-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--spacing-lg);
  color: var(--gradient-primary);
  text-transform: uppercase;
}

/* =========================
   RIGHT SIDE COLUMN
========================= */
.tt-hero__right {
  max-width: 460px;
  margin-left: auto;
}

/* =========================
   TEXT
========================= */
.tt-hero__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: var(--spacing-md);
}

/* =========================
   BUTTON
========================= */
.tt-hero__btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-primary);
  color: var(--color-surface);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.tt-hero__btn:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

/* =========================
   ICONS
========================= */
.tt-hero__icons {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-xl);
}

.tt-hero__icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 10px;      /* Ã¢â€ Â tu border radius */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    z-index: 1;
}

/* Ã°Å¸â€Â¥ Borde degradado real con esquinas redondeadas */
.tt-hero__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;                     /* grosor del borde */
    border-radius: inherit;
    background: var(--gradient-primary);

    /* mÃƒÂ¡scara para crear Borde Perfecto */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    z-index: -1;
    transition: transform 0.25s ease, 
                box-shadow 0.25s ease;

}

.tt-hero__icon:hover {
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
/* =========================
   FEATURES SECTION
========================= */
.tt-features {
  background-color: var(--color-hover);
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index:1;
}
.tt-features::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 10%,
    var(--color-hover) 100%
  );
  pointer-events: none;
}
/* Grid */
.tt-features__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

/* Card */
.tt-feature {
  border: 2px solid var(--color-primary);
  border-radius: var(
  --radius-md);
  padding: var(
  --spacing-lg);
  color: #ffffff;
  background-color: transparent;
  transition: all 0.35s ease;
}

/* Highlight card (center) */
.tt-feature--highlight {
  background-color: var(--color-primary);
  color: var(--color-primary);
}

/* Icon */
.tt-feature__icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.tt-feature--highlight .tt-feature__icon {
  color: var(--color-hover);
  font-size: 2rem;
}

/* Title */
.tt-feature__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-surface);
  font-weight: bold;
}

/* Text */
.tt-feature__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.tt-feature--highlight .tt-feature__text {
  color: #1f2933;
}

/* Hover */
.tt-feature:hover {
  transform: translateY(-6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .tt-features__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tt-feature__icon {
    margin-left: auto;
    margin-right: auto;
  }
}


.tt-feature--highlight .tt-feature__title {
    color: #000;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .tt-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tt-hero__right {
    margin-left: 0;
    margin: 0 auto;
  }

  .tt-hero__icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tt-hero {
    padding-top: 90px;
  }

  .tt-hero__title {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }
}

/* -----------------------------------------
 * 1. FIN Seccion hero
 * ----------------------------------------- */

/* ========================================= */
/* 2. ESTILOS DE LA SECCION About     */
/* ========================================= */
/* =========================
   ABOUT SECTION
========================= */
.tt-about {
  background-color: var(--color-background);
  padding: var(--spacing-xl) 0;
}

/* Grid */
.tt-about__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

/* =========================
   TEXT CONTENT
========================= */
.tt-about__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.tt-about__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
  font-weight: 800;
}

.tt-about__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* =========================
   STATS AREA
========================= */
.tt-about__stats {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

/* Box */
.tt-about__box {
  background-color: #000000;
  color: #ffffff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  min-width: 160px;
}

.tt-about__number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
}

.tt-about__label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =========================
   PROGRESS BARS
========================= */
.tt-about__progress {
  flex: 1;
}

.tt-progress {
  margin-bottom: var(--spacing-sm);
}

.tt-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.tt-progress__bar {
  height: 6px;
  background-color: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

.tt-progress__bar span {
  display: block;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 999px;
}

/* =========================
   IMAGE
========================= */
.tt-about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .tt-about__grid {
    grid-template-columns: 1fr;
  }

  .tt-about__image img {
    height: 380px;
  }

  .tt-about__stats {
    flex-direction: column;
  }
}


@media (max-width: 1024px) {
  .tt-about__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .tt-about__image {
    order: 2;
  }

  .tt-about__content {
    order: 1;
  }
}
@media (max-width: 600px) {
  .tt-about {
    padding: var(--spacing-xl) 0;
  }

  .tt-about__tag {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .tt-about__title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .tt-about__text {
    font-size: 0.95rem;
  }

  /* Stats */
  .tt-about__stats {
    flex-direction: row;
    gap: var(--spacing-md);
  }

  .tt-about__box {
    /* width: 100%; */
    text-align: center;
  }

  /* Progress bars */
  .tt-about__progress {
    gap: var(--spacing-sm);
  }

  /* Image */
  .tt-about__image img {
    width: 100%;
    display: none;
    height: auto;
    border-radius: var(--radius-md);
  }
}
/* ========================================= */
/* 2. FIN ESTILOS DE LA SECCION About       */
/* ========================================= */

/* ========================================= */
/* 3. ESTILOS DE LA SECCION Tours Section */
/* ========================================= */

.tt-latest-trips {
    text-align: center;
    /* Usar un padding menor en la parte superior para acercar el tÃƒÆ’Ã‚Â­tulo al contenido, como en la imagen */
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface); /* Fondo blanco natural */
}

/* Secondary Title (LATEST TRIPS) */
.tt-section__tag {
    color: var(--color-accent); /* Dorado andino */
    font-family: var(--font-body); /* La fuente en la imagen se ve sans-serif */
    font-size: 0.9rem;
    font-weight: 600; /* Ligeramente menos grueso que 700 */
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

/* Main Title (Explore Majestic Peaks...) */
.tt-section__title{
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    color: var(--color-hover);
}

/* --------------------
 * Grid Layout
 * -------------------- */
.tt-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md); /* Menor gap para simular la cercanÃƒÆ’Ã‚Â­a en la imagen */
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: var(--spacing-xl); /* Espacio despuÃƒÆ’Ã‚Â©s de la secciÃƒÆ’Ã‚Â³n */
}

/* --------------------
 * Trip Card Styling
 * -------------------- */
.tt-trip-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tt-trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.tt-trip-card__image-container {
    position: relative;
    /* Ajustamos la altura para replicar la proporciÃƒÆ’Ã‚Â³n de la imagen */
    height: 480px; 
}

.tt-trip-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; /* Para que el degradado se superponga */
    z-index: 1;
}

/* --------------------
 * Contenido de la tarjeta (Parte inferior - Superpuesta)
 * -------------------- */
.tt-trip-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    z-index: 2;
    padding: var(--spacing-md);
    padding-top: 4rem;

    background: linear-gradient(
        to top,
        var(--color-hover) 0%,
        var(--color-hover) 35%,
        rgba(8, 58, 94, 0.45) 65%,
        rgba(8, 58, 94, 0) 100%
    );

    color: var(--color-surface);
    text-align: left;

    /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ fuerza visibilidad */
    opacity: 1;
    transform: none;
}

.tt-trip-card__title {
    font-size: 2rem; /* TamaÃƒÆ’Ã‚Â±o del tÃƒÆ’Ã‚Â­tulo grande */
    margin-bottom: var(--spacing-md);
    color: var(--color-surface);
    font-family: var(--font-body); /* La fuente en la imagen se ve sans-serif */
    font-weight: 700;
    line-height: 1;
}

/* --------------------
 * UbicaciÃƒÆ’Ã‚Â³n (Overlay superior)
 * -------------------- */
.tt-trip-card__location {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    /* En la imagen la etiqueta estÃƒÆ’Ã‚Â¡ sobre la imagen, usando un fondo oscuro semitransparente */
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 0.4rem 1rem;
    padding-left: 0.8rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    font-size: 0.85rem; /* MÃƒÆ’Ã‚Â¡s pequeÃƒÆ’Ã‚Â±o para que coincida */
    font-weight: 500;
    z-index: 3;
}

.tt-trip-card__location .dot-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* --------------------
 * BotÃƒÆ’Ã‚Â³n de AcciÃƒÆ’Ã‚Â³n (Flecha)
 * -------------------- */
.tt-trip-card__action {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px; /* Un poco mÃƒÆ’Ã‚Â¡s pequeÃƒÆ’Ã‚Â±o */
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-hover);
    font-size: 1rem;
    transition: background-color 0.3s ease;
    z-index: 3;
}
.tt-trip-card__action:hover {
  color:var(--color-surface);
  
}
/* --------------------
 * Metadatos (Days, Group Size, Difficulty)
 * -------------------- */
.tt-tour-card,
.tt-category-card {
  position: relative;
}
.tt-trip-card__meta {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
    text-align: center;
    padding-top: var(--spacing-md);
    
    /* El divisor sutil no se ve en la imagen, lo quitamos o lo hacemos invisible */
    border-top: none; 
}

.meta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Ajustamos el margin para que los nÃƒÆ’Ã‚Âºmeros estÃƒÆ’Ã‚Â©n mÃƒÆ’Ã‚Â¡s cerca */
    margin-right: var(--spacing-sm); 
}

.meta-number, .meta-difficulty {
    font-size: 1.4rem; /* Un poco mÃƒÆ’Ã‚Â¡s pequeÃƒÆ’Ã‚Â±o que antes */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    color: var(--color-surface); /* Los nÃƒÆ’Ã‚Âºmeros son blancos en la imagen */
    font-family: var(--font-body); /* Usar fuente sans-serif para nÃƒÆ’Ã‚Âºmeros */
}

.meta-label {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Dificultad (Easy) - Color principal de la marca o blanco para que coincida con la imagen */
.meta-easy {
    color: var(--color-surface);
}
.meta-medium {
    color: var(--color-surface);
}
.meta-hard {
    color: var(--color-surface);
}
/* --------------------
 * RESPONSIVE
 * -------------------- */
@media (max-width: 1024px) {
    .tt-trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tt-trips-grid {
        grid-template-columns: 1fr;
    }
    .tt-trip-card__image-container {
        height: 350px; 
    }
}

p.location-text {
    color: #fff;
}
/* ========================================= */
/* 3. FIN ESTILOS DE LA SECCION Tours Section */
/* ========================================= */

/* ============================================
   4. ESTILOS DE LA SECCION why us
============================ */

.section-why-us {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background); /* Blanco natural */
}

.tt-why-us__grid {
    display: grid;
    /* Define 3 columnas: Imagen, Contenido Central, Cajas Laterales */
    grid-template-columns: 0.8fr 1.2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* --------------------
 * Contenido Central (tt-why-us__content)
 * -------------------- */
.tt-why-us__content {
    position: relative;
    padding-top: var(--spacing-sm); /* Espacio para alinear con el WHY CHOOSE US */
}

.tt-why-us__tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.tt-why-us__title {
        font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    font-weight: 800;
}

.tt-why-us__text-intro {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Lista de Puntos */
.tt-why-us__checklist {
    list-style: none;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    
    /* DisposiciÃƒÆ’Ã‚Â³n de la lista junto a la imagen pequeÃƒÆ’Ã‚Â±a */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; /* Permite que la lista se envuelva si hay espacio */
    max-height: 180px; /* Limite la altura para forzar 2 columnas en desktop */
}

.tt-why-us__checklist li {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: 0.5rem;
    line-height: 1.5;
}

.tt-why-us__checklist i {
    color: var(--color-primary); /* Icono de check en dorado */
    margin-right: 0.5rem;
}

/* --------------------
 * ImÃƒÆ’Ã‚Â¡genes
 * -------------------- */
.tt-why-us__image-main {
    /* La imagen principal se pega al borde de la secciÃƒÆ’Ã‚Â³n */
    height: 100%;
    min-height: 500px;
    margin-left: calc(-1 * var(--spacing-md)); /* Extender al borde si es necesario */
}

.tt-why-us__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.tt-why-us__image-small {
    width: 250px;
    height: 150px;
    overflow: hidden;
    border-radius: var(--radius-md);
    /* Posiciona la imagen pequeÃƒÆ’Ã‚Â±a en el flujo del texto */
    float: left; 
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.tt-why-us__image-small .tt-why-us__img {
    height: 100%;
}

/* BotÃƒÆ’Ã‚Â³n "View All" */
/* BotÃƒÂ³n "View All" */
.tt-btn--view-all {
    position: relative;
    display: inline-block;

    padding: 0.75rem 2rem;

    background: transparent;
    color: var(--color-hover);
    text-decoration: none;
    font-weight: 600;

    border-radius: var(--border-radius);
    border: none;      /* IMPORTANTE */
    
    /* AnimaciÃƒÂ³n suave */
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;

    z-index: 1;
}

/* Ã°Å¸â€Â¥ Borde degradado perfecto con border-radius */
.tt-btn--view-all::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* grosor del borde */

    border-radius: inherit;
    background: var(--gradient-primary);

    /* MÃƒÂ¡scara para que SOLO quede el borde */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    z-index: -1;
}


.tt-btn--view-all:hover {
    background: var(--gradient-primary);
    color: var(--color-hover);
}

/* --------------------
 * Cajas de Caracteristicas (tt-feature-box)
 * -------------------- */
.tt-why-us__boxes-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-top: var(--spacing-sm);
}

.tt-feature-box {
    background-color: var(--color-hover); /* Azul lago profundo */
    color: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease;
}

.tt-feature-box:hover {
    background-color: var(--color-hover); /* Un tono mÃƒÆ’Ã‚Â¡s oscuro de azul */
}

.tt-feature-box__title {
    font-family: var(--font-body); /* TÃƒÆ’Ã‚Â­tulos dentro de las cajas son sans-serif */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-surface); /* Blanco */
}

.tt-feature-box__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --------------------
 * RESPONSIVE
 * -------------------- */
@media (max-width: 1200px) {
    .tt-why-us__grid {
        /* Reduce a 2 columnas principales */
        grid-template-columns: 1fr 1fr; 
        gap: var(--spacing-lg);
    }
    .tt-why-us__boxes-container {
        /* Mover las cajas a la parte inferior en mÃƒÆ’Ã‚Â³viles */
        grid-column: 1 / -1; 
    }
}

@media (max-width: 768px) {
    .tt-why-us__grid {
        /* Apilar todas las columnas en una sola */
        grid-template-columns: 1fr;
    }

    .tt-why-us__image-main {
        min-height: 350px;
        margin-left: 0;
    }
    
    .tt-why-us__checklist {
        max-height: none;
    }
}
/* ================================================= */
/* 4. FIN ESTILOS SECCION why us */
/* ================================================= */


/* ================================================= */
/* 5. ESTILOS SECCION Services Section */
/* ================================================= */
/* =========================
   CATEGORIES SECTION
========================= */

.tt-categories {
  background-color: var(--color-surface);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* =========================
   CAROUSEL (SCROLL NATURAL)
========================= */

.tt-categories__carousel {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: var(--spacing-lg) var(--spacing-md);
}

.tt-categories__carousel::-webkit-scrollbar {
  display: none;
}

/* =========================
   CATEGORY CARD (Style D)
   Ã¢â‚¬â€ Foto portada + overlay
========================= */
.tt-tours_nav_category {
    position: absolute;
    top: 50%;
    left: 0;
    right: 40%;
    display: flex;
    justify-content: space-between;
    padding-inline: var(--spacing-md);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
}
.tt-category-card {
  flex: 0 0 auto;
  width: 320px;
  height: 400px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  /* scroll-snap-align: center; */
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.tt-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* BACKGROUND IMAGE */
.tt-category-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .5s cubic-bezier(.19,1,.22,1);
}

.tt-category-card:hover .tt-category-card__bg {
  transform: scale(1);
  cursor:default;
}

/* OVERLAY */
.tt-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 0%),
    var(--color-hover)
  );
  z-index: 1;
}

/* =========================
   CATEGORY TEXT
========================= */

.tt-category-card__content {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 5;
  text-align: left;
  color: #fff;
  cursor: default;
}

.tt-category-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
  color: var(--color-background);
}

.tt-category-sub {
  font-size: 0.95rem;
  /* opacity: 0.9; */
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

/* CTA BUTTON */
.tt-category-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}

.tt-category-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

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

@media (max-width: 700px) {
  .tt-category-card {
    width: 260px;
    height: 300px;
  }

  .tt-category-title {
    font-size: 1.25rem;
  }
}
/* ---------------------------------------------------------------------- */

.section-services { /* Clase de la secciÃƒÆ’Ã‚Â³n principal actualizada */
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 70vh; 
    display: flex;
    align-items: center;
}

/* --------------------
 * Fondo e Imagen (mantenemos las mismas clases para el background)
 * -------------------- */
.tt-about-stats__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tt-about-stats__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Oscurecimiento/Overlay de fondo */
.tt-about-stats__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* --------------------
 * Contenedor Principal (Grid)
 * -------------------- */
.tt-about-stats__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}


.tt-about-stats__tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.tt-about-stats__title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
        color: var(--color-background);
        font-weight: 800;
}

.tt-about-stats__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 65ch;
}

/* BotÃƒÆ’Ã‚Â³n "Contact Us Now" */
.tt-btn--book-now { /* Mantengo la clase original para no cambiar el HTML del botÃƒÆ’Ã‚Â³n */
    display: inline-block;
    padding: 0.75rem 2.25rem;
    border: 2px solid var(--color-accent);
    background-color: transparent;
    color: var(--color-surface);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.tt-btn--book-now:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* --------------------
 * RESPONSIVE
 * -------------------- */
@media (max-width: 1024px) {
    .tt-about-stats__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .tt-about-stats__boxes {
        margin-right: 0;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-stat-box {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .tt-about-stats__boxes {
        grid-template-columns: 1fr;
    }
}
/* ================================================= */
/* 5. FIN ESTILOS SECCION Services Section */
/* ================================================= */

/* ========================================= */
/* 6. ESTILOS DE LA SECCION DE REVIEWS/TESTIMONIOS */
/* ========================================= */

.tt-reviews {
  background-color: var(--color-background);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

/* CONTENEDOR RELATIVO */
.tt-reviews .container {
  position: relative;
}

/* ================================
   TITLES
================================ */
.tt-section__tag {
  font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.tt-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    font-weight: 800;
}

/* ================================
   CAROUSEL
================================ */
.tt-reviews__carousel {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem; /* SOLO lo necesario */
  margin: 0 5rem;
}

.tt-reviews__carousel::-webkit-scrollbar {
  display: none;
}

/* ================================
   NAV BUTTONS (CENTRADOS Y LIMPIOS)
================================ */
.tt-reviews__nav {
  position: absolute;
  top: calc(50% + 40px); /* alineado con las cards */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.tt-nav-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.tt-nav-btn:hover {
  transform: scale(1.1);
}

.tt-nav-btn[data-direction="prev"] {
  margin-left: 0;
}

.tt-nav-btn[data-direction="next"] {
  margin-right: 0;
}

/* ================================
   REVIEW CARD ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ 4 PERFECTAS
================================ */
.tt-review {
  flex: 0 0 calc((100% - (var(--spacing-md) * 3)) / 4);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  /* box-shadow: 0 14px 30px rgba(8, 58, 94, 0.15); */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 5px 10px rgb(6 10 15 / 24%);
  
}

/* Rating */
.tt-review__rating {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00af87;
  margin-bottom: var(--spacing-sm);
}

.tt-review__rating span {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  margin-left: 0.35rem;
}

/* Text */
.tt-review__text {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  line-height: 1.65;
  margin-bottom: var(--spacing-md);
}

/* Author */
.tt-review__author strong {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.tt-review__author span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .tt-review {
    flex: 0 0 calc((100% - var(--spacing-md)) / 2);
  }
}

@media (max-width: 640px) {
  .tt-reviews__nav {
    display: none;
  }

  .tt-reviews__carousel {
    padding: 0 1rem 1.5rem;
  }

  .tt-review {
    flex: 0 0 100%;
  }
}

/* ========================================= */
/* 6. FIN ESTILOS DE LA SECCIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN DE REVIEWS/TESTIMONIOS */
/* ========================================= */

/* ========================================= */
/* 7. ESTILOS DE LA SECCION DE tours */
/* ========================================= */
/* =========================
   TOURS SECTION
========================= */

.tt-tours {
  background-color: var(--color-surface);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* =========================
   NAV BUTTONS (SIDES)
========================= */

.tt-tours__nav {
  position: absolute;
  top: 60%;
  left: 18%;
  right: 18%;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--spacing-md);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.tt-nav-btn {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background-color: var(--color-hover);
  color: var(--color-accent);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(6,10,15,0.28);
  transition: all 0.35s ease;
}

.tt-nav-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.15);
}

/* =========================
   CAROUSEL
========================= */

.tt-tours__carousel {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  max-width: calc(320px * 3 + var(--spacing-md) * 2);
  margin-inline: auto;
  padding: var(--spacing-lg) 0;
}

.tt-tours__carousel::-webkit-scrollbar {
  display: none;
}

/* =========================
   TOUR CARD
========================= */

.tt-tour-card {
  flex: 0 0 auto;
  width: 320px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  color: #fff;
  overflow: hidden;
  scroll-snap-align: center;
  /* box-shadow: 0 18px 44px rgba(6,10,15,0.18); */
  transition:
    transform 0.45s cubic-bezier(.19,1,.22,1),
    box-shadow 0.45s cubic-bezier(.19,1,.22,1);
}

.tt-tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 2px 5px 10px rgb(6 10 15 / 24%);
}

/* =========================
   MEDIA
========================= */

.tt-tour-card__media {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.tt-tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.19,1,.22,1);
}

.tt-tour-card:hover .tt-tour-card__media img {
  transform: scale(1.12);
}

/* =========================
   LOCATION BADGE
========================= */

.tt-tour-location {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* =========================
   CARD BODY
========================= */

.tt-tour-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 190px;
  background: var(--color-hover);
}

.tt-tour-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--color-accent);
}

.tt-tour-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 14px;
  color: var(--color-border);
}

/* =========================
   META
========================= */

.tt-tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.tt-tour-meta__item strong {
  font-size: 1rem;
  display: block;
  font-weight: 700;
}

.easy { color: #6ee7b7; }
.medium { color: #fde68a; }
.hard { color: #fd8a8a; }

/* =========================
   VIEW TOUR BUTTON
========================= */

.tt-tour-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tt-tour-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
  .tt-tours__carousel {
    max-width: 100%;
    padding-inline: var(--spacing-md);
  }
}

@media (max-width: 640px) {
  .tt-tour-card {
    width: 260px;
  }

  .tt-tour-card__media {
    height: 160px;
  }

  .tt-nav-btn {
    width: 42px;
    height: 42px;
  }
}

/* ========================================= */
/* 7. FIN ESTILOS DE LA SECCION DE tours */
/* ========================================= */

/* ========================================= */
/* 8. ESTILOS DE LA SECCION DE Galeria        */
/* ========================================= */

.tt-gallery-full {
  width: 100%;
   /* optional fondo */
  height: 950px;
  background: #fff;
}

.tt-gallery-full__wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  width: 100%;
  height: 100%;
}

/* LEFT LARGE IMAGE */
.tt-gallery-full__item--large {
  height: 100%;
}

/* RIGHT GRID */
.tt-gallery-full__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* Bottom wide image */
.tt-gallery-full__item--wide {
  grid-column: 1 / -1;
}

/* Generic item */
.tt-gallery-full__item {
  position: relative;
  overflow: hidden;
}

/* Images */
.tt-gallery-full__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Force height consistency */
.tt-gallery-full__wrapper,
.tt-gallery-full__grid,
.tt-gallery-full__item {
  min-height: 100%;
}

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

@media (max-width: 1024px) {
  .tt-gallery-full__wrapper {
    grid-template-columns: 1fr;
  }

  .tt-gallery-full__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tt-gallery-full__item--large {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .tt-gallery-full__grid {
    grid-template-columns: 1fr;
  }

  .tt-gallery-full__item--large {
    height: 300px;
  }
}

/* ========================================= */
/* 8. FIN ESTILOS DE LA SECCIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN DE Galeria        */
/* ========================================= */

/* ========================================= */
/* 9. ESTILOS DE LA SECCION faqs */
/* ========================================= */

section.tt-faqs {
    background: #fff;
}

.tt-faq[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* QUESTION */
.tt-faq__question {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.tt-faq__icon {
  font-size: 1.3rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.tt-faq[open] .tt-faq__icon {
  transform: rotate(45deg);
}

/* ANSWER */
.tt-faq__answer {
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;

  height: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

/* OPEN */
.tt-faq[open] .tt-faq__answer {
  opacity: 1;
  padding-bottom: 1.25rem;
  max-height: 300px;
}

.tt-faqs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

/* IMAGE */
.tt-faqs__image {
  border-radius: 14px;
  overflow: hidden;
}

.tt-faqs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.tt-faqs__content {
  max-width: 560px;
}

.tt-faqs__intro {
  margin: 1rem 0 2rem;
  margin-top: 0px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ LIST */
.tt-faqs__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ ITEM */
.tt-faq {
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
}

.tt-faq__question {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.tt-faq__question::-webkit-details-marker {
  display: none;
}

.tt-faq__icon {
  font-size: 1.2rem;
  color: var(--color-primary);
}



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

@media (max-width: 992px) {
  .tt-faqs__container {
    grid-template-columns: 1fr;
  }

  .tt-faqs__image {
    max-height: 360px;
  }

  .tt-faqs__content {
    max-width: 100%;
  }
}

/* ========================================= */
/* 9. FIN ESTILOS DE LA SECCIoN faqs */
/* ========================================= */

/* ========================================= */
/* 10. ESTILOS DE LA SECCION BLOG / NOTICIAS     */
/* ========================================= */

/* Nota: Los iconos (i.icon-user, i.icon-tag) son placeholders. 
   DeberÃƒÆ’Ã‚Â­as usar una librerÃƒÆ’Ã‚Â­a de iconos como Font Awesome. 
   AquÃƒÆ’Ã‚Â­ se usa un estilo bÃƒÆ’Ã‚Â¡sico para simular su presencia. */
.meta-item i {
    display: inline-block;
    width: 1rem; /* Ancho simulado para el icono */
    height: 1rem; /* Altura simulada para el icono */
    margin-right: 0.25rem;
    vertical-align: middle;
}
/* SimulaciÃƒÆ’Ã‚Â³n visual de los iconos */
.meta-item i.icon-user::before { content: 'ÃƒÂ°Ã…Â¸Ã¢â‚¬ËœÃ‚Â¤'; }
.meta-item i.icon-tag::before { content: 'ÃƒÂ°Ã…Â¸Ã‚ÂÃ‚Â·ÃƒÂ¯Ã‚Â¸Ã‚Â'; }


/* ======================================= */
/* 1. SECCIÃƒÆ’Ã¢â‚¬Å“N PRINCIPAL .section-blog      */
/* ======================================= */
.section-blog {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    background-color: var(--color-background);
    font-family: var(--font-body);
    align-items: center;
    text-align: center;
}

/* SubtÃƒÆ’Ã‚Â­tulo "OUR BLOG" */
.section-blog__subtitle {
    text-align: center;
    color: var(--color-accent); /* Dorado andino */
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

/* TÃƒÆ’Ã‚Â­tulo principal */
.section-blog__title {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* Ajuste para el tamaÃƒÆ’Ã‚Â±o del tÃƒÆ’Ã‚Â­tulo */
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
}

/* ======================================= */
/* 2. GRID Y TARJETAS .blog-cards-grid     */
/* ======================================= */
.blog-cards-grid {
    display: grid;
    /* Grid de 3 columnas para escritorio */
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* ======================================= */
/* 3. ESTILOS DE LA TARJETA .blog-card     */
/* ======================================= */
.blog-card {
    background-color: var(--color-surface); /* Fondo blanco */
    border-radius: var(--radius-md);
    overflow: hidden; /* Importante para que la imagen respete el borde */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contenedor de la imagen y la fecha */
.blog-card__media {
    position: relative;
    height: 200px; /* Altura fija para las imÃƒÆ’Ã‚Â¡genes */
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el ÃƒÆ’Ã‚Â¡rea sin distorsionarse */
}

/* Etiqueta de la fecha */
.blog-card__date {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent); /* Dorado andino */
    color: var(--color-surface); /* Texto blanco */
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1;
    z-index: 10;
}

.blog-card__date .day {
    font-size: 1.25rem;
}

.blog-card__date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Contenido de texto de la tarjeta */
.blog-card__content {
    padding: var(--spacing-md);
    padding-top: var(--spacing-sm); /* Un poco menos de padding arriba para acercar al borde */
}

/* Meta info (Autor y CategorÃƒÆ’Ã‚Â­a) */
.blog-card__meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary); /* Gris secundario */
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item:first-child {
    color: var(--color-text-primary); /* Texto mÃƒÆ’Ã‚Â¡s oscuro para el nombre de usuario */
}

.meta-item:last-child {
    color: var(--color-accent); /* Dorado andino para la categorÃƒÆ’Ã‚Â­a */
    font-weight: 500;
}

/* TÃƒÆ’Ã‚Â­tulo de la entrada de blog */
.blog-card__title {
    font-family: var(--font-body); /* Usamos font-body para el tÃƒÆ’Ã‚Â­tulo de la tarjeta, como en la imagen */
    font-size: 1.25rem;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700; /* Lo hacemos mÃƒÆ’Ã‚Â¡s negrita para que se parezca al de la imagen */
}
.blog-card__title:hover {
  color:var(--color-secondary)
  
}
/* Extracto/Resumen */
.blog-card__excerpt {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    /* Para cortar el texto si es demasiado largo */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Media Queries para Responsividad (Opcional, pero recomendado) */
@media (max-width: 992px) {
    .blog-cards-grid {
        /* En tablets, 2 columnas */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section-blog__title {
        font-size: 2rem;
    }
    .blog-cards-grid {
        /* En mÃƒÆ’Ã‚Â³viles, 1 columna */
        grid-template-columns: 1fr;
    }
}
/* ========================================= */
/* 10. FIN ESTILOS DE LA SECCIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN BLOG / NOTICIAS     */
/* ========================================= */

/* ========================================= */
/* 11. ESTILOS DE LA SECCI0N DE LOGOS Y AFILIACIONES */
/* ========================================= */
/* =========================
   CERTIFICATIONS / LOGOS
   FULL WIDTH VERSION
========================= */

.certifications-logos-section {
  background-color: var(--color-secondary);
  padding: calc(var(--spacing-xl) + -1rem) 0;
  position: relative;
  overflow: hidden;
}

/* Full width container */
.logos-container {
  width: 100%;
  max-width: none; /* elimina limite */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-inline: clamp(1rem, 4vw, 4rem);
  flex-wrap: wrap;
}

/* Logos */
.affiliation-logo {
  max-height: 72px; /* MÃƒÆ’Ã‚ÂS GRANDES */
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition:
    opacity 0.3s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}


/* =========================
   FADE EDGES (ELEGANTE)
========================= */

.certifications-logos-section::before,
.certifications-logos-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px; /* mÃƒÆ’Ã‚Â¡s suave */
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

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

@media (max-width: 1024px) {
  .logos-container {
    justify-content: center;
  }

  .affiliation-logo {
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .logos-container {
    gap: 1.5rem;
    padding-inline: 1.5rem;
  }

  .affiliation-logo {
    max-height: 52px;
  }
}

@media (max-width: 480px) {
  .affiliation-logo {
    max-height: 44px;
  }
}

/* ========================================= */
/* 11. FIN ESTILOS DE LA SECCION DE LOGOS Y AFILIACIONES */
/* ========================================= */

/* ===================================================== */
/* ESTILOS TOUR CATEGORY CARDS               */
/* ===================================================== */


/* ===================================================== */
/* FIN ESTILOS TOURS CATEGORY                         */
/* ===================================================== */

/* -------------------------------------------
   ESTILOS banner paginas
   ------------------------------------------- */
/* ============================================
   ABOUT Ã¢â‚¬â€œ HERO / BANNER DINÃƒÂMICO
============================================ */

.post-hero-dynamic {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Ã°Å¸â€Â¥ Borde inferior con gradiente */
.post-hero-dynamic::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px; /* grosor del borde */
    background: var(--gradient-primary); /* tu gradiente */
}

/* Overlay oscuro elegante */
.post-hero-dynamic .hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.55)
    );
    backdrop-filter: brightness(0.85);
}

/* Contenido centrado */
.hero-content-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    margin: auto;
}

/* TÃƒÂ­tulo */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
    margin-bottom: 0.8rem;

    /* animaciÃƒÂ³n suave */
    opacity: 0;
    transform: translateY(12px);
    animation: heroFade 1.2s ease forwards 0.1s;
}

/* SubtÃƒÂ­tulo */
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: #e8e8e8;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(16px);
    animation: heroFade 1.2s ease forwards 0.35s;
}

/* AnimaciÃƒÂ³n */
@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .post-hero-dynamic {
        height: 50vh;
        min-height: 360px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {

    .post-hero-dynamic {
        height: 45vh;
        min-height: 300px;
    }

    .hero-subtitle {
        width: 95%;
    }
}

/* -------------------------------------------
   FIN ESTILOS banner paginas
   ------------------------------------------- */
/* -------------------------------------------
   ESTILOS CONTACT US PAGE
   ------------------------------------------- */
/* ============================================================
   CONTACT PAGE Ã¢â‚¬â€œ LUXURY TRAVEL EXPERIENCE
============================================================ */

.contact-info-blocks {
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.info-block {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.info-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 90px rgba(0,0,0,.12);
}

.info-block span.dashicons {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: .4rem;
}

.info-block p {
    font-size: .95rem;
    color: var(--color-text-secondary);
    margin-bottom: .6rem;
}

.info-block a,
.info-block span:last-child {
    font-size: .9rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* ============================================================
   MAIN CONTENT GRID
============================================================ */

.page-content-area {
    padding-bottom: var(--spacing-xl);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* ============================================================
   CONTACT FORM
============================================================ */

.contact-form-widget {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 30px 70px rgba(0,0,0,.07);
}

.contact-form-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
}

/* CF7 */
.tour-contact-form input,
.tour-contact-form textarea,
.tour-contact-form select {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
}

.tour-contact-form input:focus,
.tour-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(236,28,36,.15);
}

.tour-contact-form input[type="submit"] {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.tour-contact-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(236,28,36,.35);
}

/* ============================================================
   TEXT CONTENT
============================================================ */

.contact-text-content h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-text-content h3 {
    font-family: var(--font-heading);
    margin-top: var(--spacing-md);
}

.contact-text-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* FEATURES LIST */
.contact-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.contact-features-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .5rem;
    font-size: .95rem;
}

.contact-features-list .dashicons {
    color: var(--color-accent);
}

/* ============================================================
   MAP
============================================================ */

.contact-map-embed iframe {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    min-height: 300px;
}

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

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .post-hero-dynamic {
        min-height: 55vh;
        border-radius: 0 0 32px 32px;
    }
}

/* -------------------------------------------
   FIN ESTILOS CONTACT US PAGE
   ------------------------------------------- */


/* -------------------------------------------------------------------------
    Estilos CSS para about us page
   ------------------------------------------------------------------------- */
/* ============================================================
   ABOUT PAGE Ã¢â‚¬â€œ GLOBAL SECTION SPACING
============================================================ */
.about-mission-vision-section,
.about-values-section,
.about-team-section,
.about-testimonials-section,
.about-faq-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Titles */
.section-title-light,
.section-title-dark {
    font-family: var(--font-heading);
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: var(--spacing-sm);
}

.section-title-light { color: var(--color-surface); }
.section-title-dark { color: var(--color-primary); }

.section-subtitle-light,
.section-subtitle-dark {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 100%;
}

.section-subtitle-light { color: #e9edf2; }


/* ============================================================
   MISSION & VISION SECTION (con imagen al fondo)
============================================================ */
.about-mission-vision-section {
    color: var(--color-surface);
}

.about-mission-vision-section .tt-about-stats__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-mission-vision-section .tt-about-stats__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.about-mission-vision-section .tt-about-stats__overlay {
    position: absolute;
    inset: 0;
    background: rgb(94 8 8 / 45%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.mv-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform .3s ease, background .3s ease;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.mv-card-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.mv-card h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.mv-card p {
    line-height: 1.7;
    color: #e6e9ec;
}


/* ============================================================
   VALUES SECTION
============================================================ */
.about-values-section {
    background: var(--color-background);
}

.values-grid-v6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card-v6 {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.value-card-v6:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(8, 58, 94, 0.15);
}

.value-card-icon {
    font-size: 2rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.value-card-v6-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-hover);
    margin-bottom: .4rem;
}

.value-card-v6-content p {
    line-height: 1.6;
    color: var(--color-text-secondary);
}


/* ============================================================
   TEAM SECTION
============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.team-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card-photo {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
}

.team-card-content h4 {
    font-family: var(--font-heading);
    margin-bottom: .3rem;
    color: var(--color-hover);
}

.team-card-content span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}


/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.about-testimonials-section {
    background: var(--color-secondary);
    color: var(--color-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-stars span {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.testimonial-quote {
    margin: var(--spacing-sm) 0 var(--spacing-md);
    line-height: 1.7;
    color: var(--color-border);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.author-info strong {
    display: block;
    color: var(--color-surface);
}

.author-info span {
    color: #dce1e8;
    font-size: 0.85rem;
}


/* ============================================================
   FAQ SECTION
============================================================ */
.about-faq-section {
    background: var(--color-background);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-md);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-hover);
}

.faq-question .faq-icon {
    color: var(--color-primary);
    transition: transform .3s ease;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    color: var(--color-text-secondary);
    padding-right: 2rem;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 300px;
    margin-top: var(--spacing-sm);
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .mission-vision-grid,
    .values-grid-v6,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mission-vision-grid,
    .values-grid-v6,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------
    Fin Estilos CSS para about us page
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
    Estilos CSS para content page
   ------------------------------------------------------------------------- */

/* ===================================================== */
/* ESTILOS SINGLE TOUR            */
/* ===================================================== */
/* ================================
   TOUR HERO SECTION
================================ */

.tour-hero {
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.tour-hero::after{
   content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px; /* grosor del borde */
    background: var(--gradient-primary);
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.25)
    );
}

.tour-hero-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    /* padding: var(--spacing-xl) var(--spacing-md); */
    color: #fff;
    width: 100%;
}

/* BADGES */

.tour-hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-secondary);
    color: var(--color-background);
    padding: 0.4rem 0.9rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-badge-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

/* TITLE */

.tour-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.0rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

/* PRICE */

.tour-hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.tour-price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

.tour-price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.tour-price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA */

.tour-hero-cta {
    margin-top: var(--spacing-sm);
}

.tour-hero-cta a,
.tour-hero-cta button {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-hero-cta a:hover,
.tour-hero-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .tour-hero {
        min-height: 70vh;
    }

    .tour-hero-price {
        flex-wrap: wrap;
    }
}


/*****************SECTION TOURS*********************/
/* Gallery Tour Header Styles */
.tour-gallery-header {
    width: 100%;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-column-left {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-column-right {
    height: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-md);
    background: #000;
}

.gallery-item-small {
    aspect-ratio: 4/3;
}

.gallery-item-large {
    height: 100%;
    min-height: 400px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 25%, #e0e0e0 25%, #e0e0e0 50%, #f5f5f5 50%, #f5f5f5 75%, #e0e0e0 75%);
    background-size: 20px 20px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.1),
        rgba(0,0,0,.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.lightbox-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item:hover .gallery-overlay {
    top: 0;
    left: 0;
    transform: translate(0, 0) scale(1);
    width: 100%;
    height: 100%;
    background-color: rgba(16, 12, 8, 0.6);
    opacity: 1;
    visibility: visible;
}

.view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.3s ease 0.15s;
}

.gallery-item:hover .view {
    opacity: 1;
    transform: scale(1);
}

.view-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-icon svg {
    stroke: #fff;
    fill: none;
    width: 24px;
    height: 24px;
}

.view-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.more-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.more-count {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.more-text {
    font-size: 14px;
    font-weight: 400;
}

.gallery-item-large .view-icon svg {
    width: 32px;
    height: 32px;
}

.gallery-item-large .view-text {
    font-size: 16px;
}

/* Responsive */
/* Tablets */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-column-right {
        order: -1;
        min-height: 360px;
    }

    .gallery-column-left {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }

    .gallery-item-small {
        aspect-ratio: 1 / 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-column-left {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .gallery-column-right {
        min-height: 260px;
    }

    .view-icon {
        width: 38px;
        height: 38px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-column-right {
        min-height: 220px;
    }

    .more-count {
        font-size: 1.3rem;
    }

    .view {
        font-size: .75rem;
    }
}

/*tour details*/
.tour-header-container {
  position: relative;
  z-index: 20;
  margin-top: -120px; /* SUBE sobre el banner */
}

/* ================================
   TOUR DETAILS SECTION
================================ */
.tour-details-section {
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   DETAILS GRID (1 ROW)
================================ */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  align-items: center;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
}

/* ================================
   DETAIL ITEM
================================ */
.detail-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
  /* background: rgba(42, 166, 161, 0.08); */
}


/* ================================
   ICON
================================ */
.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(255 0 0 / 28%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
}

/* ================================
   CONTENT
================================ */
.detail-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-background);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-content p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-header-container {
    margin-top: -60px;
  }
}

@media (max-width: 640px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .tour-header-container {
    margin-top: -40px;
  }

  .detail-item {
    justify-content: flex-start;
  }
}




/* ==========================================
   TOUR TABS NAVIGATION
   ========================================== */
/* ==========================================
   TOUR TABS Ã¢â‚¬â€œ PREMIUM CLEAN STYLE
   ========================================== */

.tour-tabs-wrapper {
    max-width: var(--container-width);
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-sm);
}

/* =================================
   NAV STICKY
   ================================= */

.tour-tabs-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    /* background: var(--color-surface); */
    /* border-bottom: 1px solid var(--color-border); */
    margin-bottom: var(--spacing-lg);
}

/* =================================
   LIST
   ================================= */

.tour-tabs-list {
    display: flex;
    gap: var(--spacing-sm);
    list-style: none;
    margin: 0;
    background: var(--color-hover);
    padding: var(--spacing-sm) 0;
    overflow-x: auto;
    border-radius: 12px;
    scrollbar-width: none;
}

.tour-tabs-list::-webkit-scrollbar {
    display: none;
}

/* =================================
   ITEM
   ================================= */

.tour-tab-item {
    flex-shrink: 0;
}

/* =================================
   LINK
   ================================= */

.tour-tab-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--border-radius);
    background: transparent;
    transition: all .25s ease;
    white-space: nowrap;
}

/* Icon */
.tour-tab-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    opacity: .7;
}

/* Hover */
.tour-tab-link:hover {
    background: rgba(0,0,0,.04);
    color: var(--color-text-primary);
}

/* =================================
   ACTIVE STATE
   ================================= */

.tour-tab-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Animated underline */
.tour-tab-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -6px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 999px;
}

/* =================================
   ICON ACTIVE
   ================================= */

.tour-tab-link.active svg {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .tour-tabs-wrapper {
        margin: var(--spacing-lg) auto;
    }

    .tour-tab-link {
        padding: 8px 14px;
        font-size: .8rem;
    }

    .tour-tab-link svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .tour-tab-link {
        gap: 6px;
    }

    .tour-tab-link span {
        font-size: .75rem;
    }
}

/* ==========================================
   TOUR TABS Ã¢â‚¬â€œ CONTENT LAYOUT (REFINED)
   ========================================== */

.tour-tabs-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

/* MAIN CONTENT */
.tour-tabs-main-content {
    min-width: 0;
}

/* =================================
   TAB CONTENT
   ================================= */

.tour-tab-content {
    display: none;
    animation: tabFadeUp .45s cubic-bezier(.16,1,.3,1);
}

.tour-tab-content.active {
    display: block;
}

/* Smooth animation */
@keyframes tabFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   TAB TITLE
   ================================= */

.tab-content-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    position: relative;
    color: var(--color-text-primary);
}

/* Accent underline */
.tab-content-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 999px;
}

/* =================================
   CONTENT TYPOGRAPHY
   ================================= */

.tour-tab-content p {
    font-family: var(--font-body);
    font-size: .95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.tour-tab-content ul,
.tour-tab-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-md);
    color: var(--color-text-secondary);
    list-style: none;
}

.tour-tab-content li {
    margin-bottom: var(--spacing-xs);
  
}

/* =================================
   SIDEBAR (BASE)
   ================================= */

.tour-tabs-content-wrapper > *:last-child {
    position: sticky;
    top: 110px;
}

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

@media (max-width: 1024px) {
    .tour-tabs-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .tour-tabs-content-wrapper > *:last-child {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .tab-content-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .tab-content-title {
        font-size: 1.45rem;
    }
}
/* ==========================================
   tour overview SECTION
   ========================================== */
.tour-introduction-section {
    background: #fff;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   ITINERARY SECTION
   ========================================== */

.itinerary-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.introduction-content p {
    max-width: 100%;
}
/* Day Card */
.itinerary-day {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid var(--color-border);
}

/* Header */
.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

/* Day Badge */
.day-number {
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Title */
.itinerary-day-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-primary);
}

/* Description */
.itinerary-description {
    margin: var(--spacing-sm) 0;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

/* Images */
.itinerary-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.itinerary-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Details */
.itinerary-details {
    display: grid;
    gap: var(--spacing-xs);
}

.itinerary-detail-item {
    display: flex;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: var(--color-background);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}

.itinerary-detail-item strong {
    display: block;
    color: var(--color-text-primary);
    font-size: .85rem;
}

.itinerary-detail-item p {
    margin: 0;
    font-size: .8rem;
    color: var(--color-text-secondary);
}

/* ==========================================
   INCLUSIONS & EXCLUSIONS
   ========================================== */

.inclusions-section { display: grid; gap: 32px; } .inclusions-block, .exclusions-block { background: #fff; padding: 24px; border: 1px solid #e5e7eb; border-radius: 8px; } .inclusions-block .section-subtitle {color: #059669;padding-bottom: 10px;} .exclusions-block .section-subtitle {color: #dc2626;padding-bottom: 20PX;} .inclusion-category, .exclusion-category { margin-bottom: 24px; } .inclusion-category:last-child, .exclusion-category:last-child { margin-bottom: 0; } .inclusion-category h4, .exclusion-category h4 { margin: 0 0 12px 0; font-size: 18px; font-weight: 600; color: #1f2937; } .inclusion-list, .exclusion-list { list-style: none; padding: 0; margin: 0; } 

.inclusion-item:last-child, .exclusion-item:last-child { border-bottom: none; } 
.inclusion-item svg { color: #059669; flex-shrink: 0; margin-top: 2px; } 
.exclusion-item svg { color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.inclusion-item strong, .exclusion-item strong { display: block; margin-bottom: 4px; color: #1f2937; }
.inclusion-item p, .exclusion-item p { margin: 0; color: #6b7280; font-size: 14px; }
/* ==========================================
   LUGGAGE SECTION
   ========================================== */

.luggage-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.luggage-category {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.category-description {
    font-size: .85rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Items */
.luggage-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: var(--spacing-sm);
}

.luggage-item {
    background: var(--color-background);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform .3s ease;
}

.luggage-item:hover {
    transform: translateY(-4px);
}

.luggage-item-image img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
}

.luggage-item-title {
    font-size: .85rem;
    color: var(--color-text-primary);
}

.luggage-item-description {
    font-size: .75rem;
    color: var(--color-text-secondary);
}
.itinerary-description p {
    max-width: 100%;
}

.luggage-item-image {
    display: flex;
    justify-content: center;
}
/* ==========================================
   SIDEBAR
   ========================================== */
.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Booking Widget */
.booking-widget {
     position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}
.booking-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* grosor del borde */
    border-radius: inherit;
    background: var(--gradient-primary);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.tour-price {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #eff6ff;
    border-radius: 6px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.price-per {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

.btn-book-now,
.btn-contact {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now {
    background: var(--gradient-primary);
    color: #fff;
}

.btn-book-now:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgb(244 67 54 / 27%);
}

.btn-contact {
    position: relative;
    background: var(--color-surface);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    padding: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 1;
}

.btn-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: var(--gradient-primary);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Hover elegante */
.btn-contact:hover {
    color: var(--color-hover);
    background: var(--color-background);
    transform: translateY(-2px);
}


.booking-note {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.booking-note p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Quick Info Widget */
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list svg {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.quick-info-list strong {
    display: block;
    margin-bottom: 4px;
    color: #1f2937;
    font-size: 14px;
}

.quick-info-list span {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

/* Share Widget */
.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

/* Help Widget */
.help-widget p {
    margin: 0 0 16px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #1f2937;
    background: #f9fafb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: #eff6ff;
    color: var(--color-accent);
}

.help-link svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .tour-tabs-content-wrapper {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tour-tabs-wrapper {
        padding: 0 16px;
    }

    .tour-tab-link {
        padding: 14px 16px;
    }

    .tour-tab-link span {
        display: none;
    }

    .tour-tab-link svg {
        margin: 0;
    }

    .tab-content-title {
        font-size: 24px;
    }

    .itinerary-day {
        padding: 16px;
    }

    .itinerary-day-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .luggage-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .tour-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tour-tabs-wrapper {
        margin: 20px auto;
    }

    .tour-tabs-nav {
        margin-bottom: 20px;
    }

    .itinerary-images {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 28px;
    }
}


.faq-section {
    background: #fff;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Item */
.faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item.open {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* FAQ Question (Button) */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-item.open .faq-question {
    padding-bottom: 16px;
    border-bottom: 1px solid #FFC107;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.faq-item.open .faq-question-text {
    color: #2563eb;
}

/* FAQ Icon */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-item.open .faq-icon {
    background: #2563eb;
    transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
    color: #fff;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    transition: max-height 0.6s ease-in;
}

.faq-answer-content {
    padding: 20px 20px 20px 20px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer-content p {
    margin: 0 0 12px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content p {
    color: var(--color-surface);
    padding-top:10px;
}
.faq-answer-content ul,
.faq-answer-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content strong {
    color: #1f2937;
    font-weight: 600;
}

.faq-answer-content a {
    color: #2563eb;
    text-decoration: underline;
}

.faq-answer-content a:hover {
    color: #1d4ed8;
}

/* Empty State */
.faq-section:empty::before {
    content: "No FAQs available for this tour.";
    display: block;
    padding: 40px 20px;
    text-align: center;
    color: #9ca3af;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.3s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }

/* Accessibility */
.faq-question:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.faq-question:focus:not(:focus-visible) {
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 16px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer-content {
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        gap: 8px;
    }
    
    .faq-question {
        padding: 12px 14px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .faq-item {
        page-break-inside: avoid;
        border: 1px solid #000;
        margin-bottom: 10px;
    }
    
    .faq-icon {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .faq-item.open .faq-question {
        border-bottom: 1px solid #000;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .faq-section {
        /* background: #1f2937; */
        /* border-color: #374151; */
    }
    
    .faq-item {
        background: var(--color-border);
        border-color: var(--color-accent);
    }
    
    .faq-item.open {
        background: var(--color-border);
        border-color: var(--color-accent);
    }
    
    .faq-question-text {
        color: var(--color-hover);
    }
    
    .faq-item.open .faq-question-text {
        color: var(--color-hover);
    }
    
    .faq-icon {
        background: var(--gradient-primary);
    }
    
    .faq-icon svg {
        color: var(--color-background);
    }
    
    .faq-item.open .faq-icon {
        background: var(--color-accent);
    }
    
    .faq-answer-content {
        color: var(--color-hover);
    }
    
    .faq-answer-content strong {
        color: #f9fafb;
    }
    
    .faq-answer-content a {
        color: #60a5fa;
    }
}

/* ========================================= */
/*  FIN ESTILOS  SINGLE TOUR */
/* ========================================= */


/* ============================================================
   CANCELLATION POLICY HERO Ã¢â‚¬â€œ PREMIUM
============================================================ */

.pp-hero-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Ã°Å¸â€Â¥ redondeo real */
    border-radius: 0 0 48px 48px;
    overflow: hidden;
}

/* Imagen */
.pp-hero-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ã°Å¸â€Â¥ Overlay elegante */
.pp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* Ã°Å¸â€Â¥ LÃƒÂ­nea inferior con gradiente */
.pp-hero-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    z-index: 2;
}

/* Contenido */
.pp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    margin: auto;
}

/* TÃƒÂ­tulo */
.pp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 6px 26px rgba(0,0,0,0.45);
    margin-bottom: 0.8rem;

    opacity: 0;
    transform: translateY(14px);
    animation: ppHeroFade 1.2s ease forwards 0.15s;
}

/* SubtÃƒÂ­tulo */
.pp-hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    color: #ededed;
    letter-spacing: 0.4px;
    line-height: 1.55;
    max-width: 650px;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(18px);
    animation: ppHeroFade 1.2s ease forwards 0.4s;
}

/* AnimaciÃƒÂ³n */
@keyframes ppHeroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .pp-hero-container {
        height: 50vh;
        min-height: 360px;
        border-radius: 0 0 32px 32px;
    }

    .pp-hero-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    .pp-hero-container {
        height: 45vh;
        min-height: 300px;
        border-radius: 0 0 26px 26px;
    }

    .pp-hero-subtitle {
        width: 95%;
    }
}


/* ============================================================
   CANCELLATION POLICY PAGE 
============================================================ */

.cancellation-policy-page {
    background: var(--color-background);
    font-family: var(--font-body);
}
/* ============================================================
   CONTENT CONTAINER
============================================================ */

.pp-content-container {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

/* ============================================================
   TYPOGRAPHY (THE_CONTENT)
============================================================ */

.pp-content-container h2,
.pp-content-container h3,
.pp-content-container h4 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.pp-content-container h2 {
    font-size: 1.9rem;
}

.pp-content-container h3 {
    font-size: 1.4rem;
}

.pp-content-container p {
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: var(--spacing-sm);
    font-size: .95rem;
}

/* LISTS */
.pp-content-container ul,
.pp-content-container ol {
    margin: var(--spacing-sm) 0 var(--spacing-md);
    padding-left: 1.2rem;
}

.pp-content-container li {
    margin-bottom: .5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* LINKS */
.pp-content-container a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pp-content-container a:hover {
    color: var(--color-hover);
}

/* BLOCKQUOTE (LEGAL NOTES / IMPORTANT) */
.pp-content-container blockquote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(236,28,36,.05);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: .95rem;
}

/* STRONG */
.pp-content-container strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

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

@media (max-width: 768px) {

    .pp-hero-container {
        min-height: 45vh;
        border-radius: 0 0 32px 32px;
    }

    .pp-content-container {
        margin: var(--spacing-lg) var(--spacing-sm);
        padding: var(--spacing-lg);
    }

    .pp-hero-title {
        font-size: 2.4rem;
    }
}
/* ============================================================
   FIN CANCELLATION POLICY PAGE 
============================================================ */
/* ========================================= */
/*  ESTILOS   TEAM */
/* ========================================= */
/* ===============================
   HERO TEAM
================================ */
.mpt-hero-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}

.mpt-hero-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.mpt-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.mpt-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);

    opacity: 0;
    transform: translateY(14px);
    animation: heroFade 1s ease forwards;
}

.mpt-hero-subtitle {
    max-width: 700px;
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    color: #eaeaea;
    line-height: 1.5;

    opacity: 0;
    transform: translateY(18px);
    animation: heroFade 1s ease forwards 0.25s;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   SECTIONS
================================ */
.mpt-hero-container {
    position: relative;
    overflow: hidden;
}

/* Ã°Å¸â€Â¥ LÃƒÂ­nea degradada inferior */
.mpt-hero-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px; /* grosor del borde */
    background: var(--gradient-primary);
    z-index: 3;
}

.mpt-team-section {
    padding: 4.5rem 0;
}

.mpt-bg-light {
    background: #f7f9fb;
}

.mpt-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 1.5rem;
}

.mpt-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1f2933;
}

/* ===============================
   GRID
================================ */
.mpt-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* ===============================
   TEAM CARD
================================ */
.mpt-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.mpt-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Imagen */
.mpt-team-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eef1f4;
}

.mpt-team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido */
.mpt-card-content {
    padding: 1.5rem 1.25rem 1.75rem;
    text-align: center;
}

.mpt-member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.mpt-member-position {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ===============================
   PLACEHOLDER PERFIL
================================ */
.mpt-image-single {
    object-fit: contain;
    padding: 2rem;
    background: #f3f4f6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .mpt-hero-container {
        height: 50vh;
        min-height: 360px;
        border-radius: 0 0 24px 24px;
    }

    .mpt-team-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {

    .mpt-hero-container {
        height: 45vh;
        min-height: 300px;
    }

    .mpt-section-title {
        margin-bottom: 2.2rem;
    }
}

/* ========================================= */
/*  FIN ESTILOS   TEAM */
/* ========================================= */



/* ========================================= */
/*  ESTILOS  SECCION BLOG */
/* ========================================= */
/* ===============================
   CONTENEDOR GENERAL BLOG
================================ */
.mpt-category-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* ===============================
   GRID DE POSTS
================================ */
.mpt-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    align-items: stretch;
}
.mpt-posts-grid article {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(8, 58, 94, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* ===============================
   BLOG CARD
================================ */
.mpt-blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mpt-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* ===============================
   IMAGEN (NO PIXELADA)
================================ */
.mpt-blog-card__image-wrapper {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.mpt-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
    transition: transform 0.5s ease;
}

.mpt-blog-card:hover .mpt-blog-card__image {
    transform: scale(1.05);
}

/* ===============================
   CONTENIDO
================================ */
.mpt-blog-card__content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex-grow: 1;
}

/* ===============================
   FECHA
================================ */
.mpt-blog-card__date {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===============================
   TÃƒÂTULO
================================ */
.mpt-blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.3;
}

.mpt-blog-card__title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mpt-blog-card__title a:hover {
    color: var(--color-primary);
}

/* ===============================
   READ MORE
================================ */
.mpt-blog-card__read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mpt-blog-card__read-more i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mpt-blog-card__read-more:hover {
    color: var(--color-hover);
}

.mpt-blog-card__read-more:hover i {
    transform: translateX(4px);
}

/* ===============================
   PAGINACIÃƒâ€œN
================================ */
.mpt-pagination {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mpt-pagination a,
.mpt-pagination span {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
}

.mpt-pagination .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .mpt-blog-card__image-wrapper {
        height: 200px;
    }
}

/* ========================================= */
/*  FIN ESTILOS  SECCION BLOG */
/* ========================================= */

/* ============================================
   TOURS LIST 
============================================ */
/* ==============================
   CONTENEDOR GENERAL DEL ARCHIVE
================================= */
.mpt-category-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* ==============================
   GRID DE TOURS
================================= */
.mpt-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* ==============================
   MENSAJE SIN POSTS
================================= */
.mpt-no-posts {
    text-align: center;
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    padding: var(--spacing-lg);
}

.mpt-pagination {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.mpt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 4px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text-primary);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.25s ease;
}

.mpt-pagination .page-numbers:hover,
.mpt-pagination .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ==============================
   CARD GENERAL
================================= */
.mpt-tour-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mpt-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.mpt-card-image-container {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.mpt-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mpt-tour-card:hover .mpt-card-image {
    transform: scale(1.05);
}

.mpt-card-style {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-secondary);
    border: 1px solid var(--color-accent);
    text-transform: uppercase;
}

.mpt-card-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--color-accent);
    color: #000;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.mpt-duration-badge {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mpt-card-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mpt-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--color-text-primary);
    margin: 0;
}

.mpt-card-location {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mpt-card-details {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.mpt-card-details li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mpt-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.mpt-price-from {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.mpt-price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.mpt-price-before {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
}
.mpt-btn-card {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.mpt-btn-card:hover {
    background: var(--color-hover);
   color:var(--color-surface);
    transform: translateY(-2px);
}

/* ============================================
   FIN TOURS LIST 
============================================ */

/* ============================
   404 PAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“  STYLE
============================ */

/* ============================
   FIN 404 PAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“  STYLE
============================ */

/* ========================================= */
/* FOOTER */
/* ========================================= */
/* Estilos Generales y del Contenedor Principal */
.site-footer {
    background-color: var(--color-hover);
    color: var(--color-background);
    font-family: var(--font-body);
    padding-top: 50px; /* Espacio superior para el contenido principal */
}

/* DiseÃƒÆ’Ã‚Â±o de Malla (Grid) para las Columnas */
.footer-grid {
    display: grid;
    /* Define 4 columnas de igual ancho, con un espaciado de 30px */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px; /* Espacio debajo del contenido principal */
    padding: 0 0;
    /* text-align: center; */
}

/* Estilo para las Cabeceras de Columna */
.footer-heading {
    font-size: 1.25rem;
    color: var(--color-surface);
    margin-bottom: 25px;
    text-transform: capitalize; /* Coincide con el estilo de la imagen */
}

.footer-logo {
    display: flex;
    align-items: flex-end; /* Para alinear el texto en la base */
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: 40px; /* Ajusta la altura de tu logo */
    margin-right: 10px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1; /* Para que el texto se alinee bien */
}

.footer-logo .logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-surface);
    margin-left: 5px;
    align-self: flex-end; /* Lo empuja hacia abajo un poco */
    margin-bottom: 3px;
}

.footer-description {
    color: var(--color-surface);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary); /* Fondo naranja para el ÃƒÆ’Ã‚Â­cono */
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--color-secondary); /* Un tono un poco mÃƒÆ’Ã‚Â¡s oscuro al pasar el ratÃƒÆ’Ã‚Â³n */
}

/* --- Quick Links y Latest Trips (Columnas 2 y 3) --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--color-surface);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent); /* Naranja al pasar el ratÃƒÆ’Ã‚Â³n */
}

.arrow-icon {
    color: var(--color-primary); /* Color naranja para la flecha */
    margin-right: 10px;
    font-size: 1rem;
}

/* --- InformaciÃƒÆ’Ã‚Â³n de Contacto (Columna 4) --- */
.contact-info {
    font-style: normal; /* Quita la cursiva predeterminada de <address> */
}

.info-item {
    display: flex;
    align-items: flex-start; /* Alinea los ÃƒÆ’Ã‚Â­tems de contacto */
    margin-bottom: 25px;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px; /* Asegura que todos los ÃƒÆ’Ã‚Â­conos tengan el mismo ancho */
    height: 40px;
    /* background-color: var(--color-primary); */ /* Fondo naranja */
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-content .info-label {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: var(--color-text-light); /* "Phone", "Email", "Location" en blanco */
}

.info-content .info-link,
.info-content .info-text {
    font-size: 0.95rem;
    color: var(--color-border);
    text-decoration: none;
    margin: 0;
}

.info-content .info-link:hover {
    color: var(--color-accent);
}

/* --- Barra Inferior del Footer --- */
.footer-bottom {
    border-top: 1px solid #333; /* LÃƒÆ’Ã‚Â­nea separadora */
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-policy a {
    color: var(--color-border);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}
span.icon-wrapper i {
    font-size: 20px;
}
.social-links i {
    font-size: 20px;
}

.footer-col.footer-col--brand {
    padding-right: 30px;
}
.footer-policy a:hover {
    color: var(--color-secondary);
}

.footer-copyright p{
    color: var(--color-border);
}
.footer-copyright a {
    color: var(--color-accent);
}
.footer-copyright a:hover {
    color: var(--color-secondary);
}
/* --- Media Queries para Responsividad --- */
@media (max-width: 992px) {
    .footer-grid {
        /* Pasa a 2 columnas en pantallas medianas */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        /* Pasa a 1 columna en pantallas pequeÃƒÆ’Ã‚Â±as */
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policy {
        margin-bottom: 10px;
    }

    .footer-policy a {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
}
/* ========================================= */
/* FIN FOOTER */
/* ========================================= */

.mpt-related-swiper {
  width: 100%;
  overflow: hidden;
}

.mpt-related-tour-card {
  height: 100%;
}


/* ==========================================================================
   MOBILE HEADER & MENU (Estilos Nuevos)
   ========================================================================== */

/* 1. Visibilidad (Breakpoints) */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  /* Ajuste Header Fijo MÃ³vil */
  .site-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #000;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .site-content {
    padding-top: 60px;
  } /* Espacio para no tapar contenido */
}

/* 2. Barra Superior MÃ³vil */
.mobile-header {
  padding: 10px 0;
  background-color: #000;
  border-bottom: 2px solid var(--color-secondary); /* Detalle amarillo */
}

.site-branding-mobile img {
  height: 40px;
  width: auto;
}

.mobile-actions {
  gap: 15px;
}

.mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* 3. Panel Lateral (Drawer) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px; /* Oculto a la derecha */
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1100;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  right: 0; /* Mostrar */
}

/* Cabecera del Drawer */
.drawer-header {
  padding: 20px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid #333;
}

.drawer-title {
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.close-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Contenido del Drawer */
.drawer-content {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

/* NavegaciÃ³n MÃ³vil */
.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-navigation ul li {
  border-bottom: 1px solid #333;
}

.mobile-navigation ul li a {
  display: block;
  padding: 12px 0;
  color: #ccc;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.mobile-navigation ul li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

/* SubmenÃºs MÃ³viles (Indentados) */
.mobile-navigation ul .sub-menu {
  background: #222;
  padding-left: 20px;
  display: none; /* JS lo abrirÃ¡ */
}
.mobile-navigation ul li.active > .sub-menu {
  display: block;
}

/* Flecha desplegable mÃ³vil */
.mobile-navigation .menu-item-has-children > a::after {
  content: "\f078"; /* FontAwesome Chevron Down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  font-size: 0.8em;
}

/* Contacto Footer MÃ³vil */
.mobile-contact-info {
  margin-top: 30px;
  color: #888;
  font-size: 0.9rem;
}

.mobile-contact-info hr {
  border-color: #333;
  margin-bottom: 20px;
}
.mobile-contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.mobile-socials a {
  color: #fff;
  font-size: 1.2rem;
}

/* 4. Overlay de fondo */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   AJUSTES IDIOMA MÃ“VIL
   ========================================================================== */

.mobile-language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Texto a la izq, banderas a la derecha */
  background: #252525; /* Fondo ligeramente mÃ¡s claro que el drawer */
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.mobile-language-wrapper .label {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-language-wrapper .label i {
  color: var(--color-secondary); /* Icono mundo amarillo */
  margin-right: 5px;
}

/* Ajuste especÃ­fico para GTranslate en mÃ³vil */
.mobile-language-wrapper select {
  background: #fff !important; /* Fondo blanco para el select */
  color: #000 !important;
  border: none;
  padding: 5px;
  height: auto;
  width: auto;
  max-width: 120px;
}

/* Si usas la versiÃ³n de banderas (imÃ¡genes) de GTranslate en lugar de select */
.mobile-language-wrapper a.glink img {
  margin-left: 5px;
}
.titicacaSwiper {
    width: 100%;
    height: 420px;
}

.titicacaSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}