/*
 * BC TravelPress - Main Stylesheet
 * Brand: Suntrace Perú
 */

/* -----------------------------------------------------------
   1. CARGA DE FUENTES
----------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin/montserrat-v31-latin-regular.woff2")
    format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin/montserrat-v31-latin-700.woff2")
    format("woff2");
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap");

/* -----------------------------------------------------------
   2. VARIABLES DE MARCA
----------------------------------------------------------- */
:root {
  --color-primary: #1b1e4f;
  --color-secondary: #c08b2c;
  --color-accent: #efc463;
  --color-text: #333333;
  --color-text-light: #767676;
  --color-white: #ffffff;
  --color-bg-light: #f9f9f9;
  --font-main:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-headings: "Playfair Display", Georgia, serif;
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* -----------------------------------------------------------
   3. RESET BÁSICO Y BASE
----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

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

/* -----------------------------------------------------------
   4. LAYOUT & UTILIDADES
----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* -----------------------------------------------------------
   5. COMPONENTES DE UI
----------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

/* -----------------------------------------------------------
   6. FORMULARIOS
----------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: #fff;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-secondary);
  outline: none;
}

/* -----------------------------------------------------------
   7. HEADER STYLES (Dynamic Editorial Layout)
----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: transparent;
  /* Configuración Base Móvil (Siempre 1 fila horizontal) */
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header.header-scrolled {
  background-color: var(--color-primary);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  flex-shrink: 0;
  transition: all 0.4s ease;
  margin-right: 30px;
}

/* Evitar deformación del logo */
.site-branding img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain; /* Nunca se estira feo */
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
}

.site-header.header-scrolled .site-branding img {
  height: 55px;
  filter: brightness(1) invert(0);
}

.header-bottom-bar {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-navigation {
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
}

.bc-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  height: 100%;
  align-items: center;
}

.menu-link {
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  opacity: 0.9;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-link i {
  font-size: 10px;
  opacity: 0.7;
  margin-top: -2px;
}

.menu-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* --- ACCIONES Y SELECTOR DE IDIOMA --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-lang {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  height: 40px;
}

.header-lang ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header-lang a {
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.6;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.header-lang a:hover,
.header-lang .current-lang a {
  opacity: 1;
  color: var(--color-accent);
}

.header-contact-stack {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  margin-bottom: 3px;
}

.contact-item i {
  color: var(--color-secondary);
  font-size: 11px;
  width: 12px;
  text-align: center;
}

.header-cta {
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-main);
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.header-cta:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 139, 44, 0.4);
}

/* ========================================================
   ¡LA MAGIA EDITORIAL DE ESCRITORIO! (SOLO PC)
   Transición de 2 filas a 1 fila
======================================================== */
@media (min-width: 1025px) {
  /* --- ESTADO INICIAL (Centrado, estilo revista) --- */
  .site-header:not(.header-scrolled) {
    padding: 30px 0 0 0;
    border-bottom: none;
  }

  .site-header:not(.header-scrolled) .header-container {
    flex-wrap: wrap; /* Permite bajar a la segunda fila */
    justify-content: center; /* Centra el bloque del logo */
  }

  .site-header:not(.header-scrolled) .site-branding {
    width: 100%; /* Obliga al logo a estar en su propia fila */
    text-align: center;
    margin: 0 0 25px 0; /* Espacio antes de la línea */
  }

  .site-header:not(.header-scrolled) .site-branding img {
    height: 100px; /* Logo heroico más grande (Ajusta esto si lo quieres más chico) */
    width: auto;
    display: inline-block;
  }

  /* La barra inferior (Menú + Idiomas + Botón) */
  .site-header:not(.header-scrolled) .header-bottom-bar {
    width: 100%;
    display: flex;
    justify-content: center; /* Centra todo el bloque */
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Línea divisoria */
    position: relative;
  }

  /* Separamos un poco los bloques para que no se peguen en el centro */
  .site-header:not(.header-scrolled) .main-navigation {
    margin-right: 40px;
  }

  .site-header:not(.header-scrolled) .menu-link {
    padding: 25px 0;
  }

  /* --- ESTADO SCROLLED (1 sola fila compacta, como el móvil) --- */
  .site-header.header-scrolled .site-branding img {
    height: 55px; /* Vuelve a ser pequeño al hacer scroll */
  }

  .site-header.header-scrolled .menu-link {
    padding: 25px 0;
  }
}

/* ========================================================
   AJUSTES PARA LAPTOPS Y PANTALLAS MEDIANAS (1025px - 1366px)
   Evita que el menú choque con el contenido en laptops
======================================================== */
@media (min-width: 1025px) and (max-width: 1366px) {
  .st-hero-content {
    padding-top: 100px;
  }

  /* Reducimos el padding superior */
  .site-header:not(.header-scrolled) {
    padding: 15px 0 0 0;
  }

  /* Reducimos el tamaño del logo */
  .site-header:not(.header-scrolled) .site-branding img {
    height: 70px;
  }

  /* Reducimos el margen debajo del logo */
  .site-header:not(.header-scrolled) .site-branding {
    margin: 0 0 10px 0;
  }

  /* Hacemos la barra de menú más delgada */
  .site-header:not(.header-scrolled) .menu-link {
    padding: 15px 0;
  }

  /* Acercamos los elementos del menú para que quepan bien */
  .bc-menu {
    gap: 20px;
  }

  .site-header:not(.header-scrolled) .main-navigation {
    margin-right: 20px;
  }

  .site-header:not(.header-scrolled) .header-actions {
    margin-left: 20px;
  }
}

/* -----------------------------------------------------------
   8. MEGA MENU STYLES
----------------------------------------------------------- */
.menu-item-has-mega {
  position: static; /* CRÍTICO para que el Mega Menú sea full width */
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}

.menu-item-has-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.mega-item {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f0f0f1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mega-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.mega-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  transition: background 0.3s;
}

.mega-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
  line-height: 1.2;
}

.mega-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mega-item:hover .mega-overlay {
  background: linear-gradient(
    to top,
    var(--color-primary),
    rgba(27, 30, 79, 0.4)
  );
}

/* -----------------------------------------------------------
   9. RESPONSIVE / MOBILE STYLES
----------------------------------------------------------- */
.mobile-toggle,
.mobile-menu-panel,
.mobile-bar-extras {
  display: none;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
    justify-content: space-between;
    gap: 10px;
  }

  .site-branding {
    flex-shrink: 1;
    margin-right: 0;
  }

  .site-branding img {
    height: 55px;
    width: auto;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-bar-extras {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-right: 15px;
  }

  .mob-socials {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .mob-socials a {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
    transition: color 0.3s;
    display: flex;
    align-items: center;
  }

  .mob-socials a:hover {
    color: var(--color-accent);
  }

  .mob-bar-cta {
    background-color: var(--color-secondary);
    color: #fff;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    height: 30px;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
  }

  .mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #fff;
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #fff;
  }

  .mobile-menu-panel {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  .mobile-menu-panel.open {
    transform: translateX(0);
  }

  .mobile-inner {
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

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

  .mobile-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    font-size: 14px;
    font-family: var(--font-main);
  }

  .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-submenu {
    display: none;
    list-style: none;
    padding: 0 0 15px 15px;
    margin: 0;
    background: rgba(0, 0, 0, 0.1);
  }

  .mobile-submenu li {
    border: none;
  }

  .mobile-submenu a {
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0.8;
  }

  .mobile-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .mobile-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-family: var(--font-main);
  }

  .mobile-lang ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
  }

  .mobile-lang a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-main);
  }

  .mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
  }

  .mobile-contact i {
    color: var(--color-accent);
  }

  .mobile-cta {
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }
}

/* -----------------------------------------------------------
   10. FOOTER PREMIUM & NEWSLETTER
----------------------------------------------------------- */
.premium-newsletter {
  background-color: #f9f9f9;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.nl-content {
  flex: 1;
  min-width: 300px;
}

.nl-subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.nl-content h3 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.nl-content p {
  font-family: var(--font-main);
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.nl-form-wrapper {
  flex: 1;
  min-width: 320px;
}

.nl-form .input-group {
  display: flex;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.nl-form input[type="email"] {
  flex-grow: 1;
  padding: 18px 25px;
  border: 1px solid #e0e0e0;
  border-right: none;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
}

.btn-gold {
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-main);
  border: none;
  padding: 0 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.site-footer {
  background-color: var(--color-primary);
  color: #ccc;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.8;
  margin-top: auto;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-pattern-border {
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-secondary) 25%,
    var(--color-accent) 25%,
    var(--color-accent) 50%,
    var(--color-secondary) 50%,
    var(--color-secondary) 75%,
    var(--color-accent) 75%,
    var(--color-accent) 100%
  );
  background-size: 40px 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.footer-logo img {
  max-height: 150px;
  width: auto;
  margin-bottom: 25px;
}

.text-logo-footer {
  font-family: var(--font-headings);
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer-desc {
  font-family: var(--font-main);
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 320px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-socials-premium {
  display: flex;
  gap: 12px;
}

.footer-socials-premium a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-socials-premium a:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-main);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-family: var(--font-main);
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.contact-list-premium {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.contact-list-premium li {
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #bbb;
}

.contact-list-premium li.address-item {
  align-items: flex-start;
}

.contact-list-premium i {
  color: var(--color-secondary);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.contact-list-premium a {
  font-family: var(--font-main);
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-list-premium a:hover {
  color: #fff;
}

.phone-highlight {
  font-family: var(--font-main);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
}

/* --- Badges y Libro de Reclamaciones --- */
.badge-claims {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}

.badge-claims i {
  color: var(--color-secondary);
  font-size: 26px;
}

.badge-claims .badge-content {
  display: flex;
  flex-direction: column;
}

.badge-claims .badge-value {
  font-family: var(--font-main);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.badge-claims .badge-label {
  font-family: var(--font-main);
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
}

.badge-claims:hover {
  border-color: var(--color-secondary);
  background: rgba(192, 139, 44, 0.05);
  transform: translateY(-2px);
}

.badge-essna {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  min-width: 180px;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-family: var(--font-main);
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.badge-value {
  font-family: var(--font-main);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.badge-essna i {
  color: var(--color-secondary);
  font-size: 22px;
}

.badge-essna:hover {
  border-color: var(--color-secondary);
  background: rgba(192, 139, 44, 0.05);
}

/* --- Barra de Créditos y Legales --- */
.footer-credits {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #121433; /* Un azul un poco más oscuro que el primary para destacar */
  padding: 25px 0;
  font-family: var(--font-main);
}

.credits-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.st-legal-text {
  margin: 0 0 5px 0;
  font-size: 13px;
  color: #aaa;
}

.st-legal-text strong {
  color: #fff;
}

.st-sub-legal {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.st-sub-legal .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.developer {
  font-size: 12px;
  color: #777;
}

.developer a {
  color: #999;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.developer a:hover {
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .nl-form input[type="email"] {
    width: 100%;
  }

  .nl-form .input-group {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .credits-flex {
    flex-direction: column;
    text-align: center;
  }

  .st-sub-legal {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .st-sub-legal .sep {
    display: none; /* Ocultamos el separador de punto en móvil y apilamos */
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-desc {
    margin: 0 auto 30px;
  }

  .footer-socials-premium {
    justify-content: center;
  }

  .contact-list-premium li {
    justify-content: center;
    text-align: center;
  }

  .footer-badges {
    display: flex;
    justify-content: center;
  }

  .badge-essna {
    text-align: left;
  }

  .credits-flex {
    flex-direction: column;
    text-align: center;
  }

  .nl-form .input-group {
    flex-direction: column;
  }

  .nl-form input[type="email"] {
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }

  .btn-gold {
    width: 100%;
    padding: 15px;
    border-radius: 0 0 4px 4px;
  }
}

/* -----------------------------------------------------------
   11. CF7 NEWSLETTER PREMIUM FIX
----------------------------------------------------------- */
.nl-cf7-wrapper {
  width: 100%;
  max-width: 450px;
}

.nl-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.captcha-img img {
  height: 38px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
}

.captcha-input input {
  height: 38px;
  padding: 0 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 13px;
  width: 140px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}

.captcha-input input:focus {
  border-color: var(--color-secondary);
}

.nl-cf7-wrapper .input-group {
  display: flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.nl-cf7-wrapper input.wpcf7-email {
  flex-grow: 1;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-right: none;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #333;
  margin: 0;
  width: 100%;
  border-radius: 4px 0 0 4px;
}

.nl-cf7-wrapper button.btn-gold {
  border-radius: 0 4px 4px 0;
  margin: 0;
  height: auto;
  padding: 0 25px;
  border: none;
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.nl-cf7-wrapper button.btn-gold:hover {
  background-color: var(--color-primary);
}

.nl-cf7-wrapper .wpcf7-form-control-wrap {
  display: block;
  flex-grow: 1;
}

.nl-cf7-wrapper br {
  display: none;
}

.nl-cf7-wrapper p {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 8px 15px !important;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 12px;
  text-align: center;
  border: none !important;
  background-color: #f0f0f0;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #ffe6e6;
  color: #d8000c;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e6fffa;
  color: #007a5e;
}

@media (max-width: 600px) {
  .nl-cf7-wrapper .input-group {
    flex-direction: column;
    box-shadow: none;
  }

  .nl-cf7-wrapper input.wpcf7-email {
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }

  .nl-cf7-wrapper button.btn-gold {
    width: 100%;
    padding: 15px;
    border-radius: 0 0 4px 4px;
  }

  .nl-captcha-row {
    justify-content: center;
  }
}

/* -----------------------------------------------------------
   12. HERO SECTION
----------------------------------------------------------- */
.st-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}

.st-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.st-hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: stHeroZoom 25s infinite alternate ease-in-out;
}

@keyframes stHeroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.st-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(27, 30, 79, 0.9) 0%,
    rgba(27, 30, 79, 0.3) 35%,
    rgba(27, 30, 79, 0.4) 60%,
    rgba(27, 30, 79, 0.9) 100%
  );
}

.st-hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 3;
}

.st-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
}

.st-hero-content {
  max-width: 750px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.st-hero-subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0;
  animation: stFadeUp 0.8s ease-out 0.5s forwards;
}

.st-hero-title {
  font-family: var(--font-headings);
  font-size: 72px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0;
  animation: stFadeUp 0.8s ease-out 0.7s forwards;
}

.st-text-gold {
  color: var(--color-secondary);
  font-style: italic;
  font-family: var(--font-headings);
}

.st-hero-description {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  opacity: 0;
  animation: stFadeUp 0.8s ease-out 0.9s forwards;
}

.st-hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: stFadeUp 0.8s ease-out 1.1s forwards;
}

.st-btn-hero-primary {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 16px 40px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
}

.st-btn-hero-primary:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.st-btn-hero-outline {
  background-color: transparent;
  color: #fff;
  padding: 16px 40px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.st-btn-hero-outline:hover {
  background-color: #fff;
  color: var(--color-primary);
}

.st-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation:
    stFadeIn 1s ease-out 2s forwards,
    stBounce 2s infinite 3s;
}

.st-scroll-label {
  font-family: var(--font-main);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

.st-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
}

@keyframes stFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes stBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 768px) {
  .st-hero-title {
    font-size: 42px;
  }
  .st-hero-actions {
    flex-direction: column;
  }
  .st-btn-hero-primary,
  .st-btn-hero-outline {
    width: 100%;
    text-align: center;
  }
  .st-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }
}

/* -----------------------------------------------------------
   13. INTRO SECTION
----------------------------------------------------------- */
.st-intro-section {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.st-intro-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-intro-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 700;
}

.st-intro-title {
  font-family: var(--font-headings);
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-weight: 400;
}

.st-intro-title .st-text-italic {
  font-style: italic;
  font-family: var(--font-headings);
  color: #444;
}

.st-intro-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.st-intro-lead {
  font-family: var(--font-headings);
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
}

.st-intro-body p {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.st-intro-cta {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.st-intro-cta:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .st-intro-section {
    padding: 70px 0;
  }
  .st-intro-title {
    font-size: 36px;
  }
  .st-intro-lead {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
   14. AWARDS SECTION
----------------------------------------------------------- */
.st-awards-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #333;
}

.st-awards-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: 1;
}

.st-awards-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.st-awards-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-awards-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  text-align: right;
}

.st-awards-text {
  max-width: 600px;
  color: #fff;
}

.st-awards-pretitle {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.st-awards-title {
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fff;
}

.st-awards-credit {
  display: block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
  margin-top: 10px;
}

.st-awards-badge img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.st-awards-badge img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .st-awards-section {
    padding: 80px 0;
  }
  .st-awards-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .st-awards-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  .st-awards-pretitle {
    font-size: 22px;
  }
  .st-awards-title {
    font-size: 18px;
  }
  .st-awards-bg {
    background-attachment: scroll;
  }
}

/* -----------------------------------------------------------
   15. CORE VALUES SECTION
----------------------------------------------------------- */
.st-values-section {
  background-color: #fff;
  padding: 100px 0;
}

.st-values-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}

.st-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.st-value-card:hover {
  transform: translateY(-5px);
}

.st-value-icon {
  font-size: 48px;
  color: var(--color-secondary);
  margin-bottom: 25px;
}

.st-value-title {
  font-family: var(--font-headings);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 5px;
  font-weight: 400;
}

.st-value-subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.st-value-separator {
  width: 100%;
  height: 0;
  border-bottom: 2px dotted var(--color-secondary);
  margin-bottom: 25px;
  opacity: 0.5;
}

.st-value-desc {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .st-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .st-values-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .st-values-section {
    padding: 70px 0;
  }
}

/* -----------------------------------------------------------
   16. CARD TAXONOMY
----------------------------------------------------------- */
.st-card-tax {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  backface-visibility: hidden;
  aspect-ratio: 3 / 4;
  background-color: #eee;
}

.st-card-tax-media {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.st-card-tax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-card-tax:hover img {
  transform: scale(1.1);
}

.st-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(27, 30, 79, 0.6) 60%,
    rgba(27, 30, 79, 0.95) 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}

.st-card-tax-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.st-card-subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 5px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.st-card-title {
  font-family: var(--font-headings);
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  font-weight: 400;
}

.st-card-tax:hover .st-card-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.st-card-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.st-card-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.st-card-tax:hover .st-card-arrow {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .st-card-title {
    font-size: 18px;
  }
  .st-card-subtitle {
    opacity: 1;
    transform: none;
  }
  .st-card-tax-content {
    padding: 20px;
  }
}

/* -----------------------------------------------------------
   17. TOUR TYPES SECTION
----------------------------------------------------------- */
.st-tour-types-section {
  padding: 80px 0 100px;
  background-color: #fcfbf9;
}

.st-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.st-section-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.st-section-title {
  font-family: var(--font-headings);
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.st-section-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 0 auto;
}

.splide.st-splide-grid:not(.is-active) .splide__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .splide.st-splide-grid:not(.is-active) .splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.splide.st-splide-grid:not(.is-active) .splide__slide {
  width: auto !important;
  margin: 0 !important;
}

.st-tour-types-section .splide__pagination {
  bottom: -40px;
}

.st-tour-types-section .splide__pagination__page {
  background: #ccc;
  opacity: 1;
}

.st-tour-types-section .splide__pagination__page.is-active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

/* -----------------------------------------------------------
   18. REVIEWS SECTION
----------------------------------------------------------- */
.st-reviews-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.st-reviews-wrapper {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

.ti-review-content {
  font-family: var(--font-main) !important;
}

.ti-header {
  font-family: var(--font-headings) !important;
}

@media (max-width: 768px) {
  .st-reviews-section {
    padding: 70px 0;
  }
}

/* -----------------------------------------------------------
   19. DESTINATIONS SLIDER
----------------------------------------------------------- */
.st-destinations-section {
  padding-bottom: 0;
  background: #fff;
  position: relative;
}

.st-destinations-section .st-section-header {
  margin-bottom: 40px;
  padding-top: 60px;
}

.st-destinations-slider {
  width: 100%;
  height: 650px;
  position: relative;
}

.st-destinations-slider .splide__track,
.st-destinations-slider .splide__list,
.st-destinations-slider .splide__slide {
  height: 100%;
}

.st-dest-slide-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-dest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 10s ease;
  transform: scale(1);
  z-index: 1;
}

.splide__slide.is-active .st-dest-bg {
  transform: scale(1.1);
}

.st-dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.st-dest-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.st-dest-icon {
  font-size: 24px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  display: block;
}

.st-dest-title {
  font-family: var(--font-headings);
  font-size: 64px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.splide__slide.is-active .st-dest-title {
  opacity: 1;
  transform: translateY(0);
}

.st-dest-desc {
  font-family: var(--font-main);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.splide__slide.is-active .st-dest-desc {
  opacity: 0.9;
  transform: translateY(0);
}

.st-btn-dest {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-main);
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition:
    all 0.3s ease 0.7s,
    transform 0.3s ease;
}

.splide__slide.is-active .st-btn-dest {
  opacity: 1;
  transform: translateY(0);
}

.st-btn-dest:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-3px);
}

.st-destinations-slider .splide__arrow {
  background: transparent;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.st-destinations-slider .splide__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.st-destinations-slider .splide__arrow svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.st-destinations-slider .splide__arrow--prev {
  left: 40px;
}
.st-destinations-slider .splide__arrow--next {
  right: 40px;
}

@media (max-width: 768px) {
  .st-destinations-slider {
    height: 500px;
  }
  .st-dest-title {
    font-size: 42px;
  }
  .st-dest-desc {
    font-size: 12px;
  }
  .st-destinations-slider .splide__arrow {
    width: 40px;
    height: 40px;
    left: 10px;
  }
  .st-destinations-slider .splide__arrow--next {
    right: 10px;
    left: auto;
  }
}

/* -----------------------------------------------------------
   20. PARTNERS SECTION
----------------------------------------------------------- */
.st-partners-section {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
}

.st-partners-header {
  margin-bottom: 40px;
}

.st-partners-slider {
  padding: 10px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.st-partner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.st-partner-slide img {
  max-height: 70px;
  width: auto;
  max-width: 180px;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.st-partner-slide img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* -----------------------------------------------------------
   21. BLOG SECTION
----------------------------------------------------------- */
.st-blog-section {
  padding: 100px 0;
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
}

.st-blog-section .st-section-title {
  color: #fff;
  font-weight: 400;
}

.st-blog-section .st-section-kicker {
  color: var(--color-secondary);
  letter-spacing: 3px;
}

.st-section-desc {
  font-family: var(--font-main);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  opacity: 0.7;
  font-weight: 300;
  line-height: 1.6;
}

.st-card-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-card-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(192, 139, 44, 0.5);
  background-color: rgba(255, 255, 255, 0.06);
}

.st-card-post-media {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.st-card-post-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
}

.st-card-post-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.st-card-post:hover .st-card-post-img-wrapper img {
  transform: scale(1.1);
}

.st-card-post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 25px;
}

.st-card-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.st-meta-cat {
  color: var(--color-secondary);
  position: relative;
}

.st-card-post-title {
  font-family: var(--font-headings);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 15px;
  font-weight: 400;
}

.st-card-post-title a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(to right, #fff, #fff);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: all 0.3s ease;
}

.st-card-post:hover .st-card-post-title a {
  color: #fff;
  background-size: 100% 1px;
}

.st-card-post-excerpt {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.st-card-post-excerpt p {
  margin: 0;
}

.st-card-post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
}

.st-card-post-link i {
  font-size: 10px;
  transition: transform 0.3s;
}

.st-card-post-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.st-card-post-link:hover i {
  transform: translateX(4px);
}

.st-blog-section .st-blog-footer {
  margin-top: 80px;
}

.st-btn-white {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font-main);
  padding: 14px 45px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.st-btn-white:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .st-card-post-content {
    padding: 20px;
  }
  .st-card-post-title {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
   22. MINIMALIST PREMIUM CARD TOUR
----------------------------------------------------------- */

.st-card-minimal {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Mantiene una proporción vertical elegante */
  background-color: #fdfdfc; /* Marco perimetral claro */
  padding: 10px; /* Crea el efecto de marco de fotografía */
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

.st-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.st-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
}

/* Manejo de la imagen */
.st-card-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.st-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-card-minimal:hover .st-card-media img {
  transform: scale(1.05);
}

/* Overlay en gradiente (Tono azul oscuro corporativo a transparente) */
.st-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(18, 33, 56, 0.9) 0%, rgba(18, 33, 56, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Contenedor de Textos */
.st-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Elementos tipográficos */
.st-card-destination {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e0e0e0;
  margin-bottom: 6px;
}

.st-card-title {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.st-card-excerpt {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #f1f1f1;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .st-card-content {
    padding: 20px 15px;
  }
  .st-card-title {
    font-size: 16px;
  }
  .st-card-excerpt {
    font-size: 13px;
  }
}

/* -----------------------------------------------------------
   23. INTERNAL PAGE HERO
----------------------------------------------------------- */
.st-page-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary);
  margin-bottom: 60px;
}

.st-page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  animation: heroImageZoomOut 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes heroImageZoomOut {
  0% {
    transform: scale(1.1);
    filter: blur(2px);
  }
  100% {
    transform: scale(1);
    filter: blur(0);
  }
}

.st-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(27, 30, 79, 0.5) 0%,
    rgba(27, 30, 79, 0.73) 40%,
    rgba(27, 30, 79, 0.8) 100%
  );
}

.st-page-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  padding-top: 80px;
}

.st-page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.st-page-hero-kicker {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpHero 0.8s ease forwards 0.3s;
}

.st-page-hero-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpHero 0.8s ease forwards 0.5s;
}

.st-page-hero-desc {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpHero 0.8s ease forwards 0.7s;
}

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

@media (max-width: 768px) {
  .st-page-hero {
    height: 45vh;
    min-height: 350px;
  }
  .st-page-hero-title {
    font-size: 36px;
  }
  .st-page-hero-desc {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* -----------------------------------------------------------
   24. ABOUT US PAGE (Premium Expansion & Layouts)
   Prefix: .st-abt-
----------------------------------------------------------- */

.st-abt-page {
  background-color: #fdfdfc;
  color: #333;
}

.st-abt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.st-abt-section {
  padding: 100px 0;
}

/* Tipografía Compartida */
.st-abt-page .st-abt-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.st-abt-page .st-abt-title {
  font-family: var(--font-headings);
  font-size: 42px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 25px 0;
  font-weight: 400;
}

.st-abt-page .st-abt-text {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 20px 0;
}

.st-abt-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 0 auto 30px;
}

.st-abt-header-center {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- 2. Intro / Manifiesto --- */
.st-abt-intro-sec {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 60px;
}

.st-abt-intro-content {
  max-width: 850px;
  margin: 0 auto;
}

.st-abt-logo-icon img {
  width: 180px;
  height: auto;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.st-abt-intro-quote {
  font-family: var(--font-headings);
  font-size: 34px;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 400;
}

.st-abt-text-large {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* --- 3. Nuestra Historia (Split Layout) --- */
.st-abt-story-sec {
  background-color: #fcfbf9;
}

.st-abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.st-abt-story-media {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.st-abt-story-media .st-img-main {
  width: 90%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.st-abt-story-media .st-img-overlap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border: 10px solid #fcfbf9;
  border-radius: 4px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.st-abt-signature {
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

.st-sig-name {
  display: block;
  font-family: var(--font-headings);
  font-size: 22px;
  color: var(--color-primary);
}

.st-sig-role {
  font-family: var(--font-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  font-weight: 700;
}

/* --- 4. ADN (Cajas de Visión, Misión) --- */
.st-abt-dna-sec {
  background-color: #fff;
}

.st-abt-dna-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.st-abt-dna-card {
  background-color: #fcfbf9;
  padding: 50px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.st-abt-dna-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-color: rgba(192, 139, 44, 0.2);
}

.st-abt-dna-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background-color: rgba(192, 139, 44, 0.1);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.4s ease;
}

.st-abt-dna-card:hover .st-abt-dna-icon {
  background-color: var(--color-secondary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.st-abt-dna-title {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.st-abt-dna-text {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* --- 5. La Experiencia Suntrace (Números Grandes) --- */
.st-abt-exp-sec {
  background-color: var(--color-primary);
  color: #fff;
}

.st-abt-exp-sec .st-abt-title {
  color: #fff;
}

.st-abt-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.st-abt-exp-item {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.st-exp-number {
  font-family: var(--font-headings);
  font-size: 60px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.5;
  margin-bottom: 15px;
}

.st-exp-title {
  font-family: var(--font-headings);
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.st-exp-text {
  font-family: var(--font-main);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* --- 6. Estadísticas (Parallax Background) --- */
.st-abt-stats-sec {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.st-abt-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(27, 30, 79, 0.9),
    rgba(27, 30, 79, 0.7)
  );
}

.st-abt-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

.st-abt-stat-num {
  font-family: var(--font-headings);
  font-size: 56px;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}

.st-abt-stat-label {
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
}

/* --- 7. Equipo --- */
.st-abt-team-sec {
  background-color: #fff;
}

.st-abt-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.st-abt-team-card {
  width: calc(33.333% - 27px); /* 3 columnas */
  text-align: center;
}

.st-abt-team-card-center {
  width: calc(33.333% - 27px);
}

.st-abt-team-img-wrap {
  width: 100%;
  aspect-ratio: 4/4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}

.st-abt-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.st-abt-team-card:hover .st-abt-team-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.st-abt-team-name {
  font-family: var(--font-headings);
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.st-abt-team-role {
  font-family: var(--font-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  font-weight: 700;
}

/* --- 8. Affiliations/Partners --- */
.st-abt-partners-sec {
  padding: 60px 0;
  background-color: #fcfbf9;
  border-top: 1px solid #eee;
}

.st-abt-partners-title {
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 30px;
  font-weight: 700;
}

.st-abt-partners-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.st-abt-partners-flex img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}

.st-abt-partners-flex img:hover {
  filter: grayscale(0%) opacity(1);
}

/* --- 9. CTA Final --- */
.st-abt-cta-sec {
  background-color: #fff;
  padding: 80px 0 100px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.st-abt-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.st-abt-cta-title {
  font-family: var(--font-headings);
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.st-abt-btn-action {
  font-family: var(--font-main);
  background-color: var(--color-secondary);
  color: #fff;
  padding: 18px 50px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.st-abt-btn-action:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: var(--color-white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .st-abt-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .st-abt-story-media {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0;
  }

  .st-abt-dna-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-abt-exp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .st-abt-exp-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 20px;
  }

  .st-abt-team-card,
  .st-abt-team-card-center {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .st-abt-section {
    padding: 70px 0;
  }

  .st-abt-title,
  .st-abt-intro-quote {
    font-size: 32px;
  }

  .st-abt-dna-grid {
    grid-template-columns: 1fr;
  }

  .st-abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .st-abt-team-card,
  .st-abt-team-card-center {
    width: 100%;
  }

  .st-abt-partners-flex {
    gap: 30px;
  }
}

/* -----------------------------------------------------------
   25. CONTACT PAGE
----------------------------------------------------------- */
.st-contact-page {
  background-color: #fdfdfc;
}
.st-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.st-contact-section {
  padding: 80px 0 120px;
}
.st-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.st-contact-info-col {
  padding-right: 20px;
}

.st-contact-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.st-contact-title {
  font-family: var(--font-headings);
  font-size: 42px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 25px 0;
  font-weight: 400;
}

.st-contact-desc {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.st-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.st-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(192, 139, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.st-contact-text h4 {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--color-primary);
  margin: 0 0 5px 0;
}

.st-contact-text p,
.st-contact-text a {
  margin: 0;
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}

.st-contact-text a:hover {
  color: var(--color-secondary);
}

.st-contact-social {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.st-contact-social h4 {
  font-family: var(--font-headings);
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 15px 0;
}

.st-social-links {
  display: flex;
  gap: 15px;
}

.st-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.st-social-links a:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
  transform: translateY(-3px);
}

.st-contact-form-col {
  position: relative;
}
.st-contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.st-form-title {
  font-family: var(--font-headings);
  font-size: 26px;
  color: var(--color-primary);
  margin: 0 0 30px 0;
}

.wpcf7 form p {
  margin: 0;
}
.wpcf7-not-valid-tip {
  font-family: var(--font-main);
  font-size: 12px;
  color: #e63946;
  margin-top: 5px;
  display: block;
}
.wpcf7-response-output {
  font-family: var(--font-main);
  border-radius: 4px;
  border: none !important;
  margin: 20px 0 0 0 !important;
  font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: #fdf3f4;
  color: #e63946;
  padding: 15px;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #f2faf5;
  color: #2a9d8f;
  padding: 15px;
}

.st-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.st-form-group {
  flex: 1;
  margin-bottom: 20px;
  width: 100%;
}
.st-form-row .st-form-group {
  margin-bottom: 0;
}

.st-contact-form input[type="text"],
.st-contact-form input[type="email"],
.st-contact-form input[type="tel"],
.st-contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.st-contact-form input:focus,
.st-contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(192, 139, 44, 0.1);
}

.st-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.st-form-captcha {
  background: #fdfdfc;
  border: 1px dashed #ccc;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 25px;
}

.st-captcha-label {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

.st-captcha-inputs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.st-captcha-inputs img {
  border-radius: 4px;
  border: 1px solid #ddd;
}
.st-captcha-inputs input {
  font-family: var(--font-main);
  max-width: 150px;
  text-align: center;
  letter-spacing: 2px;
}

.st-form-submit input[type="submit"] {
  width: 100%;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 18px 30px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.st-form-submit input[type="submit"]:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.iti {
  width: 100%;
}
.st-contact-map {
  width: 100%;
  line-height: 0;
}

@media (max-width: 992px) {
  .st-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .st-contact-info-col {
    padding-right: 0;
    text-align: center;
  }
  .st-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .st-social-links {
    justify-content: center;
  }
  .st-contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .st-contact-section {
    padding: 60px 0;
  }
  .st-contact-title {
    font-size: 32px;
  }
  .st-form-row {
    flex-direction: column;
    gap: 0;
  }
  .st-form-row .st-form-group {
    margin-bottom: 20px;
  }
  .st-captcha-inputs {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-captcha-inputs input {
    max-width: 100%;
  }
}

/* -----------------------------------------------------------
   26. 404 PAGE
----------------------------------------------------------- */
.st-err-page {
  background-color: #fdfdfc;
  color: #333;
  display: block;
  width: 100%;
}
.st-err-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  box-sizing: border-box;
}
.st-err-intro-sec {
  padding: 60px 0 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #fdfdfc;
}
.st-err-header-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st-err-huge-number {
  font-family: var(--font-headings);
  font-size: clamp(120px, 15vw, 220px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.04;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  margin: 0;
  padding: 0;
}

.st-err-main-title {
  font-family: var(--font-headings);
  font-size: 38px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
  font-weight: 400;
  text-transform: none;
}

.st-err-desc {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

.st-err-visual-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.st-err-nav-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #eee;
}

.st-err-nav-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0;
  padding: 0;
}

.st-err-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(27, 30, 79, 0.85) 100%
  );
  transition:
    opacity 0.4s ease,
    background 0.4s ease;
  z-index: 1;
}

.st-err-nav-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
  box-sizing: border-box;
}

.st-err-nav-title {
  font-family: var(--font-headings);
  font-size: 22px;
  color: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2;
  transition: transform 0.4s ease;
  font-weight: 400;
}

.st-err-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.st-err-nav-card:hover img {
  transform: scale(1.08);
}
.st-err-nav-card:hover .st-err-nav-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(192, 139, 44, 0.95) 100%
  );
}
.st-err-nav-card:hover .st-err-nav-title {
  transform: translateY(-5px);
}
.st-err-nav-card:hover .st-err-nav-btn {
  background: #fff;
  color: var(--color-secondary);
  transform: translateX(5px);
}

.st-err-recommended-sec {
  background-color: #1a1a1a;
  padding: 100px 0 120px 0;
}
.st-err-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.st-err-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-weight: 700;
}
.st-err-section-title {
  font-family: var(--font-headings);
  font-size: 38px;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-weight: 400;
}
.st-err-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 0;
}
.st-err-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .st-err-visual-nav,
  .st-err-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .st-err-intro-sec,
  .st-err-recommended-sec {
    padding: 70px 0;
  }
  .st-err-main-title,
  .st-err-section-title {
    font-size: 30px;
  }
  .st-err-visual-nav,
  .st-err-tours-grid {
    grid-template-columns: 1fr;
  }
  .st-err-nav-card {
    aspect-ratio: 16 / 9;
  }
}

/* -----------------------------------------------------------
   27. STANDARD PAGE (Legal / Text)
----------------------------------------------------------- */
.st-std-page {
  background-color: #fcfbf9;
}
.st-std-section {
  padding: 0 0 100px 0;
}
.st-std-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-std-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: start;
}

.st-std-content-col {
  width: 100%;
}

.st-std-content {
  background: #fff;
  padding: 70px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.9;
  color: #4a4a4a;
}

.st-std-content h1,
.st-std-content h2,
.st-std-content h3,
.st-std-content h4,
.st-std-content h5,
.st-std-content h6 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  margin: 45px 0 20px 0;
  line-height: 1.3;
  font-weight: 400;
}

.st-std-content h1 {
  font-size: 36px;
}
.st-std-content h2 {
  font-size: 28px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.st-std-content h3 {
  font-size: 24px;
}
.st-std-content h4 {
  font-size: 20px;
}

.st-std-content p {
  margin: 0 0 25px 0;
}
.st-std-content strong,
.st-std-content b {
  color: var(--color-primary);
  font-weight: 700;
}

.st-std-content a {
  color: var(--color-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
}
.st-std-content a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.st-std-content ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 30px 0;
}
.st-std-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.st-std-content ul li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-secondary);
  font-size: 6px;
  position: absolute;
  left: 5px;
  top: 10px;
}

.st-std-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 14px;
}
.st-std-content th,
.st-std-content td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.st-std-content th {
  background-color: #fdfdfc;
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-secondary);
}

.st-std-sidebar {
  width: 100%;
  position: sticky;
  top: 100px;
  height: max-content;
  padding-bottom: 40px;
}

.st-widget {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.st-widget-title {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px dotted rgba(192, 139, 44, 0.4);
}

.st-expert-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.st-expert-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}
.st-expert-info h4 {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--color-primary);
  margin: 0 0 2px 0;
}
.st-expert-info span {
  font-family: var(--font-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-weight: 700;
}
.st-expert-bio {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.st-widget-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-widget-menu li {
  margin-bottom: 12px;
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 12px;
}
.st-widget-menu li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.st-widget-menu a {
  font-family: var(--font-main);
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.st-widget-menu a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ccc;
  font-size: 12px;
  transition: all 0.3s;
}
.st-widget-menu a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}
.st-widget-menu a:hover::after {
  color: var(--color-secondary);
}

.st-widget-cta {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
}
.st-widget-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(27, 30, 79, 0.5) 0%,
    rgba(27, 30, 79, 0.95) 100%
  );
  z-index: 1;
}
.st-widget-cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.st-widget-cta-content h4 {
  font-family: var(--font-headings);
  font-size: 24px;
  margin: 0 0 10px 0;
  color: #fff;
}
.st-widget-cta-content p {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.5;
}

.st-btn-widget-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: var(--font-main);
  padding: 12px 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.st-btn-widget-outline:hover {
  background: var(--color-secondary);
  color: #fff;
}

.st-btn-widget-solid {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-main);
  padding: 14px 25px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.st-btn-widget-solid:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .st-std-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .st-std-sidebar {
    position: static;
    height: auto;
  }
  .st-std-content {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .st-std-content {
    padding: 30px 20px;
  }
  .st-std-content h1 {
    font-size: 30px;
  }
  .st-std-content h2 {
    font-size: 24px;
  }
}

/* -----------------------------------------------------------
   28. ESNNA CODE PAGE
----------------------------------------------------------- */
.st-esnna-page {
  background-color: #fdfdfc;
  color: #444;
}
.st-esnna-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.st-esnna-container-narrow {
  max-width: 900px;
}

.st-esnna-pledge-sec {
  padding: 20px 0 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.st-esnna-pledge-box {
  background-color: #fff;
  padding: 60px 80px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  text-align: center;
  border-top: 5px solid var(--color-primary);
}
.st-esnna-pledge-icon {
  font-size: 50px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.st-esnna-pledge-title {
  font-family: var(--font-headings);
  font-size: 32px;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  font-weight: 700;
}
.st-esnna-pledge-text {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
  max-width: 800px;
}

.st-esnna-pillars-sec {
  padding: 60px 0 100px 0;
  background-color: #f9f9f9;
}
.st-esnna-header-center {
  text-align: center;
  margin-bottom: 60px;
}
.st-esnna-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-weight: 700;
}
.st-esnna-section-title {
  font-family: var(--font-headings);
  font-size: 36px;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  font-weight: 400;
}
.st-esnna-divider {
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 0 auto;
}
.st-esnna-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.st-esnna-pillar-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}
.st-esnna-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}
.st-esnna-pillar-icon {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 25px;
}
.st-esnna-pillar-card h4 {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--color-primary);
  margin: 0 0 15px 0;
}
.st-esnna-pillar-card p {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.st-esnna-content-sec {
  padding: 80px 0;
}
.st-esnna-legal-content {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
}
.st-esnna-legal-content h2,
.st-esnna-legal-content h3 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  margin: 40px 0 20px 0;
}
.st-esnna-legal-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.st-esnna-legal-content li {
  margin-bottom: 10px;
}

.st-esnna-report-sec {
  padding: 0 0 100px 0;
}
.st-esnna-report-box {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
}
.st-esnna-report-content {
  flex: 1;
}
.st-esnna-report-content h3 {
  font-family: var(--font-headings);
  font-size: 28px;
  margin: 0 0 15px 0;
  color: #fff;
}
.st-esnna-report-content p {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.st-esnna-report-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 280px;
}

.st-btn-report-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #d63031;
  color: #fff;
  font-family: var(--font-main);
  padding: 16px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.st-btn-report-red:hover {
  background-color: #b02a2a;
  transform: translateY(-2px);
}

.st-btn-report-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: #fff;
  font-family: var(--font-main);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 25px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.st-btn-report-outline:hover {
  background-color: #fff;
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .st-esnna-pledge-box {
    padding: 40px;
  }
  .st-esnna-pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .st-esnna-report-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .st-esnna-report-actions {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .st-esnna-pledge-title {
    font-size: 26px;
  }
  .st-esnna-report-content h3 {
    font-size: 24px;
  }
}

/* -----------------------------------------------------------
   29. ARCHIVE TOURS PAGE (Catalog & Filters)
   Prefix: .st-archive-
----------------------------------------------------------- */

.st-archive-page {
  background-color: #fcfbf9; /* Crema muy suave */
}

.st-archive-section {
  padding: 0 0 100px 0;
}

.st-archive-container {
  max-width: 1300px; /* Un poco más ancho para el grid */
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Layout Principal --- */
.st-archive-layout {
  display: grid;
  grid-template-columns: 300px 1fr; /* Sidebar izquierda, Grid derecha */
  gap: 50px;
  align-items: start; /* Para que funcione el sticky */
}

/* --- SIDEBAR DE FILTROS --- */
.st-archive-sidebar {
  width: 100%;
}

.st-archive-sticky {
  position: sticky;
  top: 100px;
  height: max-content;
}

.st-filter-widget {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.st-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted rgba(192, 139, 44, 0.4);
}

.st-filter-title {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--color-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-filter-title i {
  color: var(--color-secondary);
}

.st-filter-clear {
  font-family: var(--font-main);
  font-size: 12px;
  color: #888;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.st-filter-clear:hover {
  color: #d63031;
}

.st-filter-group {
  margin-bottom: 25px;
}

.st-filter-label {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Buscador Input */
.st-search-input-wrap {
  position: relative;
}
.st-search-input-wrap i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
}
.st-search-input-wrap input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  background: #fdfdfc;
  transition: all 0.3s;
}
.st-search-input-wrap input:focus {
  border-color: var(--color-secondary);
  background: #fff;
  box-shadow: 0 0 10px rgba(192, 139, 44, 0.1);
}

/* Selects */
.st-select-wrap {
  position: relative;
}
.st-select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background: #fdfdfc;
  color: #555;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
.st-select-wrap i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}
.st-select-wrap select:focus {
  border-color: var(--color-secondary);
  background: #fff;
}

/* Radio Buttons Estilizados (Precios) */
.st-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-custom-radio {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  color: #555;
  user-select: none;
}

.st-custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.st-radio-mark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #eee;
  border-radius: 50%;
  transition: all 0.3s;
}

.st-custom-radio:hover input ~ .st-radio-mark {
  background-color: #ddd;
}

.st-custom-radio input:checked ~ .st-radio-mark {
  background-color: var(--color-secondary);
}

.st-radio-mark:after {
  content: "";
  position: absolute;
  display: none;
}

.st-custom-radio input:checked ~ .st-radio-mark:after {
  display: block;
}

.st-custom-radio .st-radio-mark:after {
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

/* Botón Submit */
.st-btn-filter-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}
.st-btn-filter-submit:hover {
  background-color: var(--color-secondary);
}

/* --- RESULTADOS DE TOURS --- */
.st-archive-results {
  width: 100%;
}

.st-archive-results-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.st-results-count {
  font-family: var(--font-main);
  color: #666;
  margin: 0;
}
.st-results-count strong {
  color: var(--color-primary);
}

/* Grid de Tarjetas */
.st-archive-grid {
  display: grid;
  /* El grid usará el auto-fill para ser responsive automáticamente basado en un min-width */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Paginación Nativa WP */
.st-archive-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.st-archive-pagination ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.st-archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.st-archive-pagination .page-numbers:hover {
  background-color: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.st-archive-pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Estado Vacío (Sin Resultados) */
.st-archive-empty {
  text-align: center;
  background: #fff;
  padding: 80px 40px;
  border-radius: 8px;
  border: 1px dashed #ccc;
}

.st-archive-empty i {
  font-size: 50px;
  color: #ccc;
  margin-bottom: 20px;
}

.st-archive-empty h3 {
  font-family: var(--font-headings);
  font-size: 26px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.st-archive-empty p {
  font-family: var(--font-main);
  color: #666;
  margin-bottom: 30px;
}

.st-btn-empty-reset {
  display: inline-block;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .st-archive-layout {
    grid-template-columns: 250px 1fr; /* Sidebar un poco más estrecho */
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .st-archive-layout {
    grid-template-columns: 1fr; /* Colapsa a 1 columna */
  }

  .st-archive-sticky {
    position: static; /* Quita el sticky en móvil */
  }

  .st-archive-grid {
    grid-template-columns: repeat(
      auto-fill,
      minmax(250px, 1fr)
    ); /* Tarjetas más pequeñas */
  }
}

/* -----------------------------------------------------------
   30. BLOG ARCHIVE PAGE (Luxury Editorial Layout)
   Prefix: .st-blog-
----------------------------------------------------------- */

.st-blog-archive-page {
  background-color: var(--color-primary); /* Fondo oscuro corporativo */
  color: #fff;
  min-height: 100vh;
}

.st-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- 1. Barra de Categorías (Pills Navigation) --- */
.st-blog-nav-bar {
  background-color: rgba(
    0,
    0,
    0,
    0.2
  ); /* Ligeramente más oscuro que el fondo */
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -60px; /* Sube la barra para que toque el Hero */
  position: relative;
  z-index: 10;
}

.st-category-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.st-category-pills a {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px; /* Diseño de píldora moderna */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.st-category-pills a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.st-category-pills a.active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

/* --- 2. Grilla de Artículos --- */
.st-blog-archive-sec {
  padding: 80px 0 120px 0;
}

.st-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* --- 3. Paginación Adaptada al Modo Oscuro --- */
.st-blog-pagination {
  margin-top: 80px;
}

.st-blog-pagination .page-numbers {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.st-blog-pagination .page-numbers:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.st-blog-pagination .page-numbers.current {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

/* --- 4. Estado Vacío (Adaptado al modo oscuro) --- */
.st-blog-empty {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.st-blog-empty h3 {
  color: #fff;
}

.st-blog-empty p {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .st-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .st-blog-grid {
    grid-template-columns: 1fr;
  }

  /* UX Móvil: El menú de categorías se vuelve deslizable (Swipeable) */
  .st-category-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px; /* Espacio para la barra de scroll nativa */
    -webkit-overflow-scrolling: touch; /* Suavidad en iOS */
  }

  .st-category-pills::-webkit-scrollbar {
    height: 3px;
  }

  .st-category-pills::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 4px;
  }

  .st-category-pills a {
    white-space: nowrap; /* Evita que el texto de la píldora salte de línea */
  }
}

/* -----------------------------------------------------------
   31. INDEX PAGE (Universal Fallback Template)
   Prefix: .st-index-
----------------------------------------------------------- */

.st-index-page {
  background-color: #fcfbf9; /* Fondo crema muy suave */
}

.st-index-section {
  padding: 80px 0 120px 0;
}

.st-index-container {
  max-width: 900px; /* Ancho restringido para lectura de artículos */
  margin: 0 auto;
  padding: 0 30px;
}

.st-index-list {
  display: flex;
  flex-direction: column;
  gap: 60px; /* Mucho aire entre artículos */
}

.st-index-article {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.st-index-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.st-index-media {
  overflow: hidden;
  width: 100%;
}

.st-index-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.st-index-article:hover .st-index-media img {
  transform: scale(1.05);
}

.st-index-content {
  padding: 50px;
}

.st-index-title {
  font-family: var(--font-headings, serif);
  font-size: 32px;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.st-index-title a {
  color: var(--color-primary, #1b1e4f);
  text-decoration: none;
  transition: color 0.3s;
}

.st-index-title a:hover {
  color: var(--color-secondary, #c08b2c);
}

.st-index-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-main, sans-serif);
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-weight: 600;
}

.st-index-meta i {
  color: var(--color-secondary, #c08b2c);
  margin-right: 5px;
}

.st-index-meta a {
  color: #888;
}

.st-index-meta a:hover {
  color: var(--color-primary, #1b1e4f);
}

.st-index-excerpt {
  font-family: var(--font-main, sans-serif);
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.st-index-excerpt p {
  margin: 0;
}

.st-index-readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main, sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-secondary, #c08b2c);
  transition: all 0.3s ease;
  text-decoration: none;
}

.st-index-readmore:hover {
  color: var(--color-primary, #1b1e4f);
  gap: 15px; /* Efecto animado de la flecha separándose */
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .st-index-section {
    padding: 60px 0;
  }
  .st-index-content {
    padding: 30px 25px;
  }
  .st-index-title {
    font-size: 24px;
  }
  .st-index-media img {
    height: 250px;
  }
  .st-index-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* -----------------------------------------------------------
   32. SINGLE POST PAGE (2-Column Editorial & Comments)
   Prefix: .st-single- & .st-post-
----------------------------------------------------------- */

.st-single-page {
  background-color: #fcfbf9;
}

.st-single-section {
  padding: 60px 0 100px 0;
}

.st-single-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Grid Principal --- */
.st-single-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  /* El align-items NO debe estar configurado como start para permitir 
     que la columna derecha se estire junto con el artículo,
     y así el sticky pueda funcionar en todo el recorrido. */
}

/* --- 2. SIDEBAR STICKY --- */
.st-single-sidebar {
  width: 100%;
  height: 100%; /* Asegura que la pista de deslizamiento sea total */
}

.st-sidebar-sticky {
  position: sticky;
  top: 120px;
  height: max-content; /* El contenido interno sí debe medir lo que mide */
  padding-bottom: 40px;
}

/* --- 1. COLUMNA PRINCIPAL (Artículo) --- */
.st-single-article {
  background-color: #fff;
  padding: 60px 80px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.st-post-top-meta {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.st-post-category a {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  background: rgba(192, 139, 44, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.st-post-category a:hover {
  background: var(--color-secondary);
  color: #fff;
}

.st-post-author {
  display: block;
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--color-primary);
  font-style: italic;
}

/* Contenido Gutenberg */
.st-post-content {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.st-post-content p {
  margin: 0 0 30px 0;
}
.st-post-content h2,
.st-post-content h3,
.st-post-content h4 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  margin: 50px 0 25px 0;
  line-height: 1.3;
}
.st-post-content h2 {
  font-size: 32px;
}
.st-post-content h3 {
  font-size: 26px;
}

.st-post-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(192, 139, 44, 0.4);
  text-underline-offset: 4px;
  font-weight: 600;
}
.st-post-content a:hover {
  color: var(--color-primary);
}

.st-post-content blockquote {
  margin: 50px 0;
  padding: 30px 40px;
  background-color: transparent;
  border: none;
  border-left: 4px solid var(--color-secondary);
  position: relative;
}
.st-post-content blockquote::before {
  content: "\201C";
  font-family: var(--font-headings);
  font-size: 80px;
  color: rgba(192, 139, 44, 0.15);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.st-post-content blockquote p {
  font-family: var(--font-headings);
  font-size: 24px;
  font-style: italic;
  color: var(--color-primary);
  margin: 0;
  position: relative;
  z-index: 2;
}

.st-post-content img {
  border-radius: 8px;
  margin: 40px 0;
  height: auto;
  width: 100%;
}

/* Footer del Post */
.st-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.st-post-tags a {
  display: inline-block;
  background-color: #f5f5f5;
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.st-post-tags a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.st-post-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.st-post-share span {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
}
.st-post-share a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(27, 30, 79, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.st-post-share a:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* Caja de Autor */
.st-author-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fdfdfc;
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
  border: 1px solid rgba(192, 139, 44, 0.1);
}
.st-author-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.st-author-name {
  font-family: var(--font-headings);
  font-size: 22px;
  color: var(--color-primary);
  margin: 0 0 10px 0;
}
.st-author-bio {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Widget Text Clean */
.st-widget-clean {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
  text-align: center;
}
.st-widget-clean .st-widget-title {
  font-family: var(--font-headings);
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.st-widget-clean .st-widget-text {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Widget Tour Destacado (Antidesborde Absoluto) */
.st-widget-tour-cta {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box !important;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.st-widget-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(27, 30, 79, 0.4),
    rgba(27, 30, 79, 0.95)
  );
  z-index: 1;
}

.st-widget-cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.st-widget-kicker {
  font-family: var(--font-main);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  width: 100%;
}

.st-widget-cta-content h4 {
  font-family: var(--font-headings);
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.3;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  box-sizing: border-box;
}

.st-btn-widget-solid {
  display: inline-block;
  max-width: 90%;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 25px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.st-btn-widget-solid:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Widget Categorías (Lista WP) */
.st-widget-categories {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}
.st-widget-categories .st-widget-title {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--color-primary);
  padding-bottom: 15px;
  border-bottom: 2px dotted rgba(192, 139, 44, 0.4);
  margin-bottom: 20px;
}
.st-widget-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-widget-cat-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f9f9f9;
  font-size: 14px;
  color: #aaa;
}
.st-widget-cat-list li a {
  color: #555;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.st-widget-cat-list li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

/* --- 3. ÁREA DE COMENTARIOS (ESTILOS PREMIUM WP) --- */
.st-comments-area-wrapper {
  margin-top: 60px;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.comments-title,
.comment-reply-title {
  font-family: var(--font-headings);
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-weight: 400;
}

/* Lista de Comentarios */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.comment-list .comment {
  margin-bottom: 30px;
}
.comment-body {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #fdfdfc;
  border-radius: 8px;
  border: 1px solid #eee;
}
.comment-author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.comment-meta {
  margin-bottom: 10px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
}
.comment-meta a {
  color: #888;
}
.comment-meta .fn {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--color-primary);
  text-transform: none;
  display: block;
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 700;
}
.comment-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.reply a {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

/* Formulario de Comentarios */
.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comment-notes,
.comment-form-comment,
.form-submit,
.st-honeypot-field {
  grid-column: 1 / -1;
}
.comment-notes {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  background: #fff;
  border-color: var(--color-secondary);
}
.comment-form textarea {
  height: 150px;
  resize: vertical;
}

.form-submit input[type="submit"] {
  background: var(--color-primary);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit input[type="submit"]:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* ANTI-SPAM (Honeypot Hidden CSS) */
.st-honeypot-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .st-single-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .st-single-sidebar {
    position: static;
  }
  .st-single-article {
    padding: 50px 40px;
  }
  .st-comments-area-wrapper {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .st-single-grid {
    grid-template-columns: 100%;
  }
  .st-single-sidebar {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .st-single-article,
  .st-comments-area-wrapper {
    padding: 30px 20px;
  }
  .st-post-content h2 {
    font-size: 26px;
  }
  .st-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-author-box {
    flex-direction: column;
    text-align: center;
  }
  .comment-form {
    grid-template-columns: 1fr;
  }
  .comment-body {
    flex-direction: column;
    gap: 10px;
  }
  .st-widget-tour-cta {
    padding: 40px 15px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .st-widget-cta-content h4 {
    font-size: 20px;
    line-height: 1.4;
  }
}

/* -----------------------------------------------------------
   33. SINGLE TOUR PAGE (Part 1: Immersive Hero)
   Prefix: .st-tour-hero-
----------------------------------------------------------- */
.st-tour-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  overflow: hidden;
  padding-top: var(--header-height, 80px);
}

.st-tour-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  animation: tourHeroZoom 20s infinite alternate ease-in-out;
}

@keyframes tourHeroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.st-tour-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.54) 40%,
    rgba(0, 0, 0, 0.59) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.st-tour-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  padding: 0 20px;
  margin-top: -50px;
}

.st-tour-hero-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTour 0.8s ease forwards 0.3s;
}

.st-tour-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(30px, 3vw, 100px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTour 0.8s ease forwards 0.5s;
}

.st-tour-hero-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTour 0.8s ease forwards 0.7s;
}

.st-tour-hero-meta {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTour 0.8s ease forwards 0.9s;
}

.st-tour-hero-private-note {
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.st-tour-hero-nav-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.st-tour-hero-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-tour-inpage-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.st-tour-inpage-nav a {
  display: inline-block;
  color: #fff;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 25px 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.st-tour-inpage-nav a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.st-tour-inpage-nav .st-nav-book-btn {
  opacity: 1;
  color: var(--color-secondary);
  font-weight: 700;
}
.st-tour-inpage-nav .st-nav-book-btn:hover {
  color: #fff;
}

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

@media (max-width: 992px) {
  .st-tour-inpage-nav {
    gap: 20px;
  }
  .st-tour-inpage-nav a {
    font-size: 10px;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .st-tour-hero {
    min-height: 600px;
  }
  .st-tour-inpage-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }
  .st-tour-inpage-nav::-webkit-scrollbar {
    display: none;
  }
  .st-tour-inpage-nav a {
    white-space: nowrap;
    padding: 20px 10px;
  }
  .st-tour-hero-subtitle {
    font-size: 13px;
  }
}

/* -----------------------------------------------------------
   34. SINGLE TOUR PAGE (Part 2: The Experience Summary)
   Prefix: .st-tour-exp-
----------------------------------------------------------- */

.st-tour-experience-sec {
  background-color: #f4fafa; /* Tono cian/gris hielo muy suave, basado en la imagen */
  padding: 120px 0;
}

.st-tour-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.st-experience-header {
  text-align: center;
  margin-bottom: 50px;
}

.st-exp-main-title {
  font-family: var(--font-headings);
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 10px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.st-exp-subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-primary);
}

.st-exp-subtitle strong {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.st-experience-content {
  text-align: center;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.9;
  color: #444; /* Gris oscuro para mejor lectura */
  margin-bottom: 60px;
}

.st-experience-content p {
  margin-bottom: 25px;
}

.st-experience-content p:last-child {
  margin-bottom: 0;
}

.st-experience-divider {
  width: 100px;
  height: 1px;
  background-color: #ccc;
  margin: 0 auto 60px auto;
}

.st-experience-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.st-fact-col {
  padding: 0 15px;
}

.st-fact-title {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.st-fact-desc {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .st-tour-experience-sec {
    padding: 80px 0;
  }
  .st-exp-main-title {
    font-size: 38px;
  }
  .st-experience-facts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .st-experience-divider {
    margin: 0 auto 40px auto;
  }
}

/* -----------------------------------------------------------
   35. SINGLE TOUR PAGE (Part 3: Expanded Itinerary Timeline)
   Prefix: .st-tour-itinerary- & .st-timeline-
----------------------------------------------------------- */

.st-tour-itinerary-sec {
  background-color: #eeebe5; /* Fondo crema/gris elegante */
  padding: 120px 0;
}

/* Nuevo contenedor que respeta los 1200px */
.st-tour-container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 30px;
}

/* Cabecera alineada a la izquierda para un look más moderno */
.st-itinerary-header {
  margin-bottom: 80px;
  padding-left: 70px; /* Alineado visualmente con las tarjetas */
}

.st-tour-kicker {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #d63031; /* Rojo elegante */
  margin-bottom: 15px;
  font-weight: 700;
}

.st-experience-divider-left {
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: 25px;
}

/* --- Timeline Wrapper (Línea de tiempo) --- */
.st-timeline-wrapper {
  position: relative;
  padding-left: 70px; /* Deja espacio amplio a la izquierda para la línea */
}

/* Línea vertical principal (Sólida con transparencia para ser sutil) */
.st-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px; /* Posicionada en la columna izquierda */
  width: 2px;
  background-color: rgba(214, 48, 49, 0.2); /* Rojo semitransparente */
}

/* Item individual del día */
.st-timeline-item {
  position: relative;
  margin-bottom: 100px;
}

.st-timeline-item:last-child {
  margin-bottom: 0;
}

/* El marcador interactivo (Punto en la línea) */
.st-timeline-marker {
  position: absolute;
  top: 60px; /* Alineado con el título de la tarjeta */
  left: -60px; /* Centrado exacto sobre la línea vertical */
  width: 20px;
  height: 20px;
  background-color: #eeebe5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.st-marker-dot {
  width: 10px;
  height: 10px;
  background-color: #d63031; /* Rojo marca */
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.st-timeline-item:hover .st-marker-dot {
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(214, 48, 49, 0.4);
}

/* --- Tarjeta Panorámica del Día (Day Card 1200px) --- */
.st-day-card {
  display: grid;
  /* Grid asimétrico: 45% texto / 55% imagen. Puro lujo editorial */
  grid-template-columns: 4.5fr 5.5fr;
  background: #fdfdfc;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

/* Si el día NO tiene galería debajo, redondeamos los 4 bordes */
.st-timeline-item:not(:has(.st-day-gallery-block)) .st-day-card {
  border-radius: 12px;
}

.st-day-card:hover {
  transform: translateY(-5px);
}

.st-day-info {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-day-number {
  font-family: var(--font-headings);
  font-size: 16px;
  color: #d63031;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.st-day-title {
  font-family: var(--font-headings);
  font-size: 32px;
  color: var(--color-primary);
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.st-day-desc {
  font-family: var(--font-main);
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.st-day-desc p {
  margin: 0 0 15px 0;
}
.st-day-desc p:last-child {
  margin: 0;
}

.st-day-media {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}

.st-day-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.st-day-card:hover .st-day-media img {
  transform: scale(1.05);
}

/* --- Bloque de Galería Oscuro (Carrusel Limpio & GLightbox) --- */
.st-day-gallery-block {
  background-color: #2a2a2a;
  padding: 40px 30px; /* Padding interno para que el carrusel respire */
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.st-gallery-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9; /* Formato panorámico perfecto */
  background-color: #1a1a1a;
}

.st-gallery-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.st-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Efecto Hover: Lupa de GLightbox */
.st-gallery-overlay-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 30, 79, 0.6); /* Azul corporativo transparente */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.st-gallery-overlay-zoom i {
  color: #fff;
  font-size: 32px;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.st-gallery-img-wrap:hover img {
  transform: scale(1.1);
}

.st-gallery-img-wrap:hover .st-gallery-overlay-zoom {
  opacity: 1;
}

.st-gallery-img-wrap:hover .st-gallery-overlay-zoom i {
  transform: scale(1);
}

/* Flechas Splide Limpias */
.st-itinerary-gallery-carousel .splide__arrow {
  background: #fff;
  width: 40px;
  height: 40px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.st-itinerary-gallery-carousel .splide__arrow:hover {
  background: var(--color-secondary);
  opacity: 1;
}

.st-itinerary-gallery-carousel .splide__arrow:hover svg {
  fill: #fff;
}

.st-itinerary-gallery-carousel .splide__arrow svg {
  fill: var(--color-primary);
  width: 14px;
  height: 14px;
  transition: fill 0.3s ease;
}

/* Paginación Splide */
.st-itinerary-gallery-carousel .splide__pagination {
  bottom: -25px;
}
.st-itinerary-gallery-carousel .splide__pagination__page {
  background: #666;
  width: 8px;
  height: 8px;
}
.st-itinerary-gallery-carousel .splide__pagination__page.is-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

/* --- Responsive Móvil e Intermedios --- */
@media (max-width: 1024px) {
  .st-day-card {
    grid-template-columns: 1fr; /* Colapsa a 1 columna en tablets */
  }

  .st-day-media {
    min-height: 150px;
  }

  .st-day-card {
    display: flex;
    flex-direction: column-reverse; /* Imagen arriba, texto abajo en móviles */
  }
}

@media (max-width: 768px) {
  .st-tour-itinerary-sec {
    padding: 80px 0;
  }

  .st-itinerary-header {
    padding-left: 0;
    text-align: center;
  }

  .st-experience-divider-left {
    margin: 25px auto 0 auto;
  }

  .st-timeline-wrapper {
    padding-left: 30px; /* Reducir padding de la línea en móvil */
  }

  .st-timeline-wrapper::before {
    left: 0; /* Mover línea al borde */
  }

  .st-timeline-marker {
    left: -10px; /* Reajustar marcador al nuevo borde */
  }

  .st-day-info {
    padding: 40px 30px;
  }

  .st-day-title {
    font-size: 24px;
  }

  /* Ajustes específicos para el carrusel en móvil */
  .st-day-gallery-block {
    padding: 30px 15px; /* Menos padding en móvil para aprovechar espacio */
  }

  .st-itinerary-gallery-carousel .splide__arrow {
    /* Hacemos las flechas más pequeñas en móvil */
    width: 30px;
    height: 30px;
  }

  .st-itinerary-gallery-carousel .splide__arrow--prev {
    left: -5px;
  }
  .st-itinerary-gallery-carousel .splide__arrow--next {
    right: -5px;
  }
}

/* -----------------------------------------------------------
   36. SINGLE TOUR PAGE (Part 4: Inclusions & Exclusions)
   Prefix: .st-tour-included-
----------------------------------------------------------- */

.st-tour-included-sec {
  background-color: #fcfbf9; /* Un crema/blanco roto muy elegante */
  padding: 120px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05); /* Separación sutil del bloque anterior */
}

.st-included-header {
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.st-included-intro {
  font-family: var(--font-main, sans-serif);
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Grid Editorial (50/50 con línea divisoria) */
.st-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}

/* La fina línea divisoria central (Estilo Revista) */
.st-included-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
}

.st-included-col {
  padding: 20px 0;
}

.st-included-title {
  font-family: var(--font-headings, serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary, #1b1e4f);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* --- Estilos Mágicos para el contenido WYSIWYG --- */
.st-wysiwyg-content {
  font-family: var(--font-main, sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

.st-wysiwyg-content p {
  margin-bottom: 20px;
}

/* Resetear las listas por defecto */
.st-wysiwyg-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.st-wysiwyg-content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
}

/* Ícono base (Posicionamiento y Renderizado FontAwesome) */
.st-wysiwyg-content ul li::before {
  /* Añadimos fallbacks para abarcar cualquier versión de FontAwesome que tenga tu web */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 4px;

  /* Propiedades obligatorias de FontAwesome para que no salga el cuadrado vacío */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* --- Columna Mágica: INCLUYE (Checkmarks Verdes) --- */
.st-col-yes .st-wysiwyg-content ul li::before {
  content: "\f00c"; /* Icono Check */
  color: #2a9d8f; /* Verde esmeralda elegante */
}

/* --- Columna Mágica: NO INCLUYE (Cruces Rojas) --- */
.st-col-no .st-wysiwyg-content ul li::before {
  content: "\f00d"; /* Icono Cruz (X) */
  color: #d63031; /* Rojo corporativo */
}

/* Excepciones para sublistas o notas pequeñas en el WYSIWYG */
.st-wysiwyg-content em,
.st-wysiwyg-content small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* --- Responsive Móvil e Intermedios --- */
@media (max-width: 992px) {
  .st-included-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .st-tour-included-sec {
    padding: 80px 0;
  }

  .st-included-grid {
    grid-template-columns: 1fr; /* Colapsa a 1 columna */
    gap: 60px;
  }

  /* Ocultar la línea divisoria vertical en móvil */
  .st-included-grid::after {
    display: none;
  }

  /* Añadir una línea divisoria horizontal entre las cajas en móvil */
  .st-col-yes {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 60px;
  }

  .st-included-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

/* ===========================================================
   SECCIÓN DE RESERVA (WETRAVEL WIDGET)
=========================================================== */
.st-tour-booking-sec {
  padding: 80px 0 100px 0;
  background-color: #f9f9f9; /* Fondo muy sutil para destacar del bloque anterior */
}

.st-booking-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(27, 30, 79, 0.08); /* Sombra elegante marca Suntrace */
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.st-booking-header {
  margin-bottom: 40px;
}

.st-booking-widget-wrapper {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Fallback Text */
.st-booking-fallback-text {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 25px;
  max-width: 600px;
}

/* Contenedor del Iframe/Botón de WeTravel */
.wetravel-embed-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wetravel-embed-container iframe {
  max-width: 100%;
  border-radius: 8px;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .st-tour-booking-sec {
    padding: 60px 0;
  }

  .st-booking-box {
    padding: 40px 20px;
  }

  .st-booking-fallback-text {
    font-size: 15px;
  }
}

/* -----------------------------------------------------------
   37. CLAIMS BOOK PAGE (Libro de Reclamaciones)
   Prefix: .st-claims-
----------------------------------------------------------- */

.st-claims-page {
  background-color: #fcfbf9; /* Fondo crema global */
}

.st-claims-section {
  padding: 0 0 120px 0;
  /* Efecto solapamiento: sube la sección por encima del hero global */
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.st-claims-container {
  max-width: 900px; /* Ancho restringido para lectura cómoda de formularios legales */
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Intro Text (Cabecera de la caja) --- */
.st-claims-intro {
  background: #fff;
  padding: 60px 60px 20px 60px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.st-claims-icon {
  font-size: 46px;
  color: var(--color-secondary); /* Dorado */
  margin-bottom: 20px;
}

.st-claims-intro h2 {
  font-family: var(--font-headings);
  color: var(--color-primary); /* Azul oscuro */
  font-size: 32px;
  margin-bottom: 15px;
}

.st-claims-intro p {
  font-family: var(--font-main);
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* --- Wrapper del Formulario --- */
.st-claims-form-wrapper {
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.st-claims-form-header {
  background-color: var(--color-primary); /* Azul Corporativo */
  color: #fff;
  padding: 25px 50px;
  text-align: center;
}

.st-claims-form-header h4 {
  font-family: var(--font-headings);
  color: #fff;
  font-size: 20px;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
}

.st-claims-form-header span {
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.st-claims-form-header p {
  margin: 0;
  font-family: var(--font-main);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Cuerpo del Formulario --- */
.st-claims-form-body {
  padding: 50px;
}

.st-claims-form-inner label {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Inputs Generales */
.st-claims-form-inner input[type="text"],
.st-claims-form-inner input[type="email"],
.st-claims-form-inner input[type="tel"],
.st-claims-form-inner select,
.st-claims-form-inner textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.st-claims-form-inner select {
  appearance: auto; /* Muestra la flecha nativa */
  cursor: pointer;
}

.st-claims-form-inner input:focus,
.st-claims-form-inner select:focus,
.st-claims-form-inner textarea:focus {
  background-color: #fff;
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 139, 44, 0.1);
}

/* Grid de Formulario (Rows) */
.st-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.st-form-group {
  margin-bottom: 25px;
}

.st-form-row .st-form-group {
  margin-bottom: 0;
}

/* --- CAPTCHA Styling --- */
.st-form-captcha-box {
  background-color: #f4fafa; /* Fondo cian sutil para destacar seguridad */
  border: 1px dashed #b5d5d5;
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.st-captcha-text {
  font-family: var(--font-main);
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.st-captcha-inputs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.st-captcha-inputs img {
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
}

.st-captcha-inputs input {
  max-width: 200px;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Acceptance Terms (Checkbox) */
.st-acceptance {
  font-family: var(--font-main);
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

.st-acceptance a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
}

/* --- Botón Submit --- */
.st-form-submit input[type="submit"] {
  width: 100%;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 18px 30px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.st-form-submit input[type="submit"]:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Limpieza CF7 Ocultos */
.st-claims-form-inner br {
  display: none;
}
.st-claims-form-inner .wpcf7-form-control-wrap {
  display: block;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .st-claims-section {
    margin-top: -40px; /* Menos solapamiento en móvil */
  }

  .st-claims-intro {
    padding: 40px 30px 10px 30px;
  }

  .st-claims-form-body {
    padding: 30px;
  }

  .st-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .st-form-row .st-form-group {
    margin-bottom: 25px;
  }

  .st-captcha-inputs {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .st-captcha-inputs input {
    max-width: 100%;
  }
}

/* -----------------------------------------------------------
   38. PDF EMBED (Classic Editor)
----------------------------------------------------------- */

/* Título del Documento */
.st-pdf-title {
  text-align: center;
  font-family: var(--font-headings);
  color: var(--color-primary);
  font-size: 32px;
  margin-bottom: 30px;
}

/* Contenedor del Iframe */
.st-pdf-embed-container {
  width: 100%;
  height: 80vh; /* Ocupa el 80% del alto de la pantalla */
  min-height: 800px; /* Altura ideal para leer un A4 en PC */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Sombra de lujo */
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto 40px auto;
  background: #fcfbf9;
}

.st-pdf-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contenedor del Botón */
.st-pdf-download-wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px; /* Da un respiro al final de la página */
}

/* Botón de Descarga Premium */
.st-btn-pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-secondary); /* Dorado corporativo */
  color: #ffffff !important;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(192, 139, 44, 0.3); /* Sombra dorada sutil */
}

.st-btn-pdf-download i {
  font-size: 18px;
}

/* Efecto Hover del Botón */
.st-btn-pdf-download:hover {
  background-color: var(--color-primary); /* Cambia a azul oscuro */
  color: #ffffff !important;
  transform: translateY(-3px); /* Se eleva un poco */
  box-shadow: 0 10px 25px rgba(27, 30, 79, 0.25); /* Sombra más fuerte y azul */
}

/* Ajustes Responsivos (Tablets y Celulares) */
@media (max-width: 768px) {
  .st-pdf-title {
    font-size: 26px;
  }

  .st-pdf-embed-container {
    min-height: 500px;
    height: 60vh;
    margin-bottom: 30px;
  }

  .st-btn-pdf-download {
    width: 100%; /* Botón de ancho completo en celular para mejor UX táctil */
    padding: 16px 20px;
  }
}

/* -----------------------------------------------------------
   10. CERTIFICACIONES Y DOCUMENTOS (About Page)
----------------------------------------------------------- */

.st-abt-certs-sec {
  background-color: #fcfbf9;
  padding-top: 50px;
}

/* CAMBIO CLAVE: Usamos Flexbox para centrar los elementos huérfanos */
.st-abt-certs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Esto centra los 2 elementos de la fila inferior */
  gap: 30px;
  margin-top: 50px;
}

.st-abt-cert-card {
  /* Matemáticas Flex: 3 tarjetas por fila (33.33%) menos el espacio del gap */
  width: calc(33.333% - 20px);
  max-width: 340px; /* Evita que crezcan de más */
  text-align: center;
  padding: 25px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px; /* Bordes más modernos y suaves */
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.st-abt-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 30, 79, 0.08);
  border-color: rgba(
    27,
    30,
    79,
    0.15
  ); /* El borde resalta sutilmente al pasar el ratón */
}

/* El marco o "paspartú" de la imagen del documento */
.st-abt-cert-img-wrap {
  width: 100%;
  height: 220px;
  background: #fdfdfc;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Enlace contenedor Glightbox */
.st-abt-cert-img-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.st-abt-cert-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: contrast(0.95);
  transition: transform 0.4s ease;
}

.st-abt-cert-card:hover .st-abt-cert-img-wrap img {
  transform: scale(1.03);
}

/* Icono de Lupa flotante para hacer Zoom */
.st-cert-zoom-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(27, 30, 79, 0.85);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.st-abt-cert-img-wrap a:hover .st-cert-zoom-overlay {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.st-abt-cert-title {
  font-family: var(--font-headings);
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.st-abt-cert-desc {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-top: auto; /* Empuja el texto hacia abajo para alinear tarjetas */
}

/* Responsive para las Certificaciones */
@media (max-width: 1024px) {
  .st-abt-cert-card {
    width: calc(
      50% - 15px
    ); /* En tablets pasamos a 2 por fila (2 arriba, 2 medio, 1 centrado abajo) */
    max-width: none;
  }
}

@media (max-width: 600px) {
  .st-abt-certs-grid {
    flex-direction: column;
    align-items: center;
  }

  .st-abt-cert-card {
    width: 100%; /* En móviles pasamos a 1 por fila */
    max-width: 380px;
  }
}

/* -----------------------------------------------------------
   BIOSPHERE PAGE STYLES
----------------------------------------------------------- */

.st-biosphere-page {
  background-color: #fff;
}

.st-bio-intro {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fcfbf9, #fff);
}

.st-bio-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.st-bio-main-badge {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.st-bio-verified {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f9f1;
  padding: 15px 25px;
  border-radius: 50px;
  color: #2d6a4f;
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
  display: inline-flex;
}

/* Documentos */
.st-bio-docs-sec {
  padding-bottom: 100px;
}

.st-bio-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.st-bio-doc-card {
  background: #fdfdfc;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.st-bio-doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--color-secondary);
}

.st-bio-doc-icon {
  font-size: 40px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.st-btn-bio-download {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.st-btn-bio-download:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* ODS Section */
.st-bio-ods-sec {
  padding: 100px 0;
  background-color: #1b1e4f; /* Tu azul corporativo */
  color: #fff;
}

.st-bio-ods-sec .st-abt-title {
  color: #fff;
}
.st-bio-ods-sec .st-abt-text {
  color: rgba(255, 255, 255, 0.7);
}

.st-bio-attrs-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.st-bio-attr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 18px;
}

.st-bio-attr-item i {
  font-size: 30px;
  color: #4ade80;
}

.st-bio-ods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.st-bio-ods-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.st-bio-ods-item:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .st-bio-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .st-bio-intro-badge {
    order: -1;
  }
  .st-bio-docs-grid {
    grid-template-columns: 1fr;
  }
}

/* GRID DE ODS ESTÁTICO (Sin imágenes) */
.st-bio-ods-grid-static {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.st-ods-tile {
  background-color: var(--ods-color);
  color: #fff;
  padding: 20px;
  aspect-ratio: 1 / 1; /* Cuadrados perfectos */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.st-ods-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.st-ods-number {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.9;
}

.st-ods-name {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
  .st-bio-ods-grid-static {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    gap: 10px;
  }
  .st-ods-number {
    font-size: 28px;
  }
  .st-ods-name {
    font-size: 11px;
  }
}

/* -----------------------------------------------------------
   COMMUNITIES SECTION (Collage + Text)
----------------------------------------------------------- */

.st-bio-communities-sec {
  padding: 80px 0;
  background-color: #fcfbf9;
}

.st-comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.st-comm-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.st-comm-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.st-comm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-comm-item:hover img {
  transform: scale(1.08);
}

/* Etiquetas sobre las imágenes */
.st-comm-label {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  padding: 6px 15px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.st-comm-content {
  padding-right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .st-comm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .st-comm-collage {
    order: 2; /* Baja las imágenes debajo del texto en móviles */
  }
  .st-comm-content {
    order: 1;
    text-align: center;
    padding-right: 0;
  }
  .st-comm-content .st-abt-btn-action {
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 576px) {
  .st-comm-collage {
    gap: 10px;
  }
  .st-comm-label {
    font-size: 11px;
    padding: 4px 10px;
    top: 10px;
  }
}

/* Ocultar la flecha nativa de los elementos details/summary */
.st-faq-question::-webkit-details-marker {
  display: none;
}
.st-faq-question {
  /* Eliminar marcador para Firefox/Otros */
  list-style: none;
}

/* Rotar el icono personalizado cuando el acordeón está abierto */
.st-faq-item[open] .st-faq-question i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.st-faq-item:not([open]) .st-faq-question i {
  transition: transform 0.3s ease;
}

/* ==========================================================================
   PÁGINA FAQ PREMIUM (Sin Acordeones)
   ========================================================================== */

.st-faq-grid-section {
    padding: 80px 2rem;
    background-color: #fcfbf9; /* Color de fondo base de Suntrace */
}

/* Layout Split: Sidebar (Izq) + Contenido (Der) */
.st-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start; /* Vital para que el sticky funcione correctamente */
}

/* --- SIDEBAR STICKY --- */
.st-faq-sticky-nav {
    position: sticky;
    top: 100px; /* Compensa la altura de tu menú superior fijo */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.st-faq-nav-title {
    font-family: var(--font-headings);
    color: #1b1e4f;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.st-faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-faq-nav-list li {
    margin-bottom: 10px;
}

.st-faq-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.st-faq-nav-list a i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.st-faq-nav-list a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #1b1e4f;
    transform: translateX(5px);
}

/* Mini CTA en Sidebar */
.st-faq-sidebar-cta {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.st-faq-sidebar-cta h4 {
    font-size: 16px;
    color: #1b1e4f;
    margin-bottom: 15px;
}

.st-btn-outline {
    display: block;
    border: 2px solid #1b1e4f;
    color: #1b1e4f;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-btn-outline:hover {
    background: #1b1e4f;
    color: #fff;
}

/* --- CONTENIDO PRINCIPAL --- */
.st-faq-intro-text {
    margin-bottom: 60px;
}

.st-faq-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 800px;
}

/* Bloque por Categoría */
.st-faq-category-block {
    margin-bottom: 80px;
    scroll-margin-top: 120px; /* Para que al hacer clic en el menú, no quede tapado por el header */
    padding:1rem;
}

.st-faq-cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.st-faq-cat-header i {
    font-size: 32px;
    color: #d4af37;
}

.st-faq-cat-header h3 {
    font-size: 28px;
    color: #1b1e4f;
    margin: 0;
}

/* Rejilla de Tarjetas (Cards) */
.st-faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en Desktop */
    gap: 30px;
}

.st-faq-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 30, 79, 0.08);
}

.st-faq-card-q {
    font-family: var(--font-headings);/* ==========================================================================
   PÁGINA FAQ PREMIUM (Sin Acordeones)
   ========================================================================== */

.st-faq-grid-section {
    padding: 80px 0;
    background-color: #fcfbf9; /* Color de fondo base de Suntrace */
}

/* Layout Split: Sidebar (Izq) + Contenido (Der) */
.st-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start; /* Vital para que el sticky funcione correctamente */
}

/* --- SIDEBAR STICKY --- */
.st-faq-sticky-nav {
    position: sticky;
    top: 100px; /* Compensa la altura de tu menú superior fijo */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.st-faq-nav-title {
    font-family: var(--font-headings);
    color: #1b1e4f;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.st-faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-faq-nav-list li {
    margin-bottom: 10px;
}

.st-faq-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.st-faq-nav-list a i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.st-faq-nav-list a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #1b1e4f;
    transform: translateX(5px);
}

/* Mini CTA en Sidebar */
.st-faq-sidebar-cta {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.st-faq-sidebar-cta h4 {
    font-size: 16px;
    color: #1b1e4f;
    margin-bottom: 15px;
}

.st-btn-outline {
    display: block;
    border: 2px solid #1b1e4f;
    color: #1b1e4f;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-btn-outline:hover {
    background: #1b1e4f;
    color: #fff;
}

/* --- CONTENIDO PRINCIPAL --- */
.st-faq-intro-text {
    margin-bottom: 60px;
}

.st-faq-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 800px;
}

/* Bloque por Categoría */
.st-faq-category-block {
    margin-bottom: 80px;
    scroll-margin-top: 120px; /* Para que al hacer clic en el menú, no quede tapado por el header */
}

.st-faq-cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.st-faq-cat-header i {
    font-size: 32px;
    color: #d4af37;
}

.st-faq-cat-header h3 {
    font-size: 28px;
    color: #1b1e4f;
    margin: 0;
}

/* Rejilla de Tarjetas (Cards) */
.st-faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en Desktop */
    gap: 30px;
}

.st-faq-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 30, 79, 0.08);
}

.st-faq-card-q {
    font-family: var(--font-headings);
    font-size: 18px;
    color: #1b1e4f;
    margin-bottom: 15px;
    line-height: 1.4;
}

.st-faq-card-a {
    font-family: var(--font-main);
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.st-faq-card-a p:last-child {
    margin-bottom: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .st-faq-layout {
        grid-template-columns: 1fr; /* Sidebar pasa arriba */
        gap: 40px;
    }
    
    .st-faq-sticky-nav {
        position: static;
        box-shadow: none;
        border: 1px solid #eaeaea;
    }
    
    .st-faq-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .st-faq-nav-list li {
        margin: 0;
    }
    
    .st-faq-sidebar-cta {
        display: none; /* Ocultamos el CTA extra en móvil para ahorrar espacio */
    }
}

@media (max-width: 768px) {
    .st-faq-cards-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
        gap: 20px;
    }
    
    .st-faq-cat-header h3 {
        font-size: 24px;
    }
}
    font-size: 18px;
    color: #1b1e4f;
    margin-bottom: 15px;
    line-height: 1.4;
}

.st-faq-card-a {
    font-family: var(--font-main);
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.st-faq-card-a p:last-child {
    margin-bottom: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .st-faq-layout {
        grid-template-columns: 1fr; /* Sidebar pasa arriba */
        gap: 40px;
    }
    
    .st-faq-sticky-nav {
        position: static;
        box-shadow: none;
        border: 1px solid #eaeaea;
    }
    
    .st-faq-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .st-faq-nav-list li {
        margin: 0;
    }
    
    .st-faq-sidebar-cta {
        display: none; /* Ocultamos el CTA extra en móvil para ahorrar espacio */
    }
}

@media (max-width: 768px) {
    .st-faq-cards-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
        gap: 20px;
    }
    
    .st-faq-cat-header h3 {
        font-size: 24px;
    }
}