/* Variables CSS para consistencia */
:root {
  --primary-color: #e40046; /* Color rojizo de Civitatis */
  --primary-color-hovered: #d3074c;
  --secondary-color: #333;
  --text-light: #fff;
  --text-dark: #1e1e1e;
  --bg-light: #f5f5f5;
  --max-width: 1200px;
  --dest-radius: 16px;
  --dest-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  --dest-shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.18);
  --dest-overlay-from: rgba(0, 0, 0, 0);
  --dest-overlay-to: rgba(0, 0, 0, 0.45);
  --dest-transition: 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.color-primary {
  color: var(--primary-color);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Variables CSS para consistencia */
/* Estilos Globales */
a {
  text-decoration: none;
  /* Los enlaces fuera del header y footer deben ser de color por defecto */
  color: var(--text-light);
}

/* --- HEADER / HERO SECTION (BASE HOME) --- */
.hero-section {
  height: 70vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  position: relative;
  padding: 0 5%;
}

.hero-section::before {
  background-image: url("../../images/home/tickets-civitatis.jpg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.hero-section-roma {
  height: 70vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  position: relative;
  padding: 0 5%;
}

.hero-section-roma::before {
  background-image: url("../../es/roma/civitatis-roma.jpg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}



.hero-section.hero-section-united-states::before {
  background-image: url("https://www.civitatis.com/f/estados-unidos/estados-unidos.jpg");
}

.hero-section.hero-section-new-york::before {
  background-image: url("https://images.unsplash.com/photo-1518391846015-55a9cc003b25?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&fm=jpg&q=60&w=3000");
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 30%;
}
.top-nav.actividad{
 
}


.logos {
    display: flex;
    width: 220px;
    justify-content: center;
}

.detalle-logo{
  display: flex;
}

.logo-civitatis {
  position: relative;
  top: -10px;
}

.logo-civitatis-blanco {
  position: relative;
  top: -10px;
  height: 54px;
}

.nav-links {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  /* padding-top: 15px; */
}

.nav-link a {
  font-size: 0.9rem;
  transition: color 0.3s;
  color: var(--text-light); /* Enlaces del nav deben ser blancos */
  padding: 8px 10px;
  border-radius: 4px;
}

.nav-link a:hover {
  background-color: rgba(228, 0, 70, 0.5);
}

/* --- Dropdown de Idioma (Mantener estilos anteriores) --- */
.language-selector {
  position: relative;
  display: inline-block;
  top: 6px;
}

.lang-button {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s;
}

.lang-button:hover {
  background-color: rgba(228, 0, 70, 0.5);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 4px;
  overflow: hidden;
}

.lang-dropdown a {
  color: var(--text-dark);
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  background-color: transparent;
}

.lang-dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* --- Contenido Central (Hero) --- */
.hero-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 10px 0 0 0;
}


/* --- CABECERA DE PÁGINAS INTERNAS (ACTIVITY PAGE HEADER) --- */

.activity-page-header {
    /* Propiedades para hacerlo fijo */
    position: fixed; /* Hace la cabecera fija respecto a la ventana */
    top: 0;          /* La fija en la parte superior */
    left: 0;         /* Asegura que ocupe todo el ancho */
    width: 100%;     /* Asegura que ocupe todo el ancho */
    z-index: 1000;   /* Asegura que esté por encima de todo el contenido */
    
    /* Propiedades de estilo ya existentes o necesarias */
    height: auto; 
    min-height: 0;
    background-color: #ea0558; /* Color de fondo para que el contenido de abajo no se vea */
    color: #fff; /* Asegura el color del texto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra para destacarla */
    padding-bottom: 0; /* Elimina el padding inferior que tenías si no es necesario con el título flotante */
}

/* 1. Visibilidad del NAV (Logo y Enlaces en cabecera clara) */
.activity-page-header .top-nav .nav-link a,
.activity-page-header .top-nav .lang-button,
.activity-page-header .top-nav .logos .logo,
.activity-page-header .top-nav .logos a { /* Asegurar que el logo sea oscuro */
    color: #fff !important; 
    text-shadow: none;
}

/* 2. Contenido del Hero de Detalle (Títulos) */
.activity-page-header .hero-content {
    padding: 20px 5% 20px; 
    padding-bottom: 20px;
}

.activity-page-header .hero-content .title-detail,
.activity-page-header .hero-content .tagline-detail {
    color: var(--secondary-color);
    text-shadow: none;
}
/* FIN ESTILOS ESPECÍFICOS CABECERA FIJA */


/* --- AJUSTE CRUCIAL DE MARGIN TOP PARA COMPENSAR LA CABECERA FIJA --- */

/* Compensa la altura del header fijo en las páginas de actividad 
   (El header solo contiene el NAV, de aprox. 65px de altura) */
.hero-content {
    /* El elemento .hero-content es el primero visible después del header en la actividad */
    margin-top: 65px; 
} 
main.city-detail-page, .image-gallery {
    /* Estos elementos pueden mantener el margin-top de 65px para consistencia o si el .hero-content no existe */
    /* Lo mantenemos por si el hero-content no existe y el breadcrumb/galería es el primero en la página de actividad */
    margin-top: 65px; 
}


/* Compensa la altura del header fijo en la página de directorio (nav + hero-content) */
.directory-content-push {
    /* Esta regla se mantiene con el valor alto, ya que incluye el buscador */
    margin-top: 168px !important; 
}

/* Las reglas redundantes del inicio del CSS se han movido/limpiado */


.tagline {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: 800;
  max-width: 100%;
}

.search-bar-container {
  display: flex;
  width: 100%;
  max-width: 800px;
  background-color: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-bar-container input {
  border-radius: 21px;
  flex-grow: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  outline: none;
  color: var(--secondary-color);
}

.search-bar-container input::placeholder {
  color: #999;
}

.search-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-button:hover {
  background-color: var(--primary-color);
}

/* --- MAIN CONTENT SECTIONS --- */
main {
  padding: 40px 2%;
  max-width: var(--max-width);
  margin: 0 auto;
  /* Eliminado el margin-top: 65px; de aquí para que los selectores específicos lo manejen */
  padding-top: 40px; 
}
.directory-page {
  /* Esta clase ya no es necesaria si usamos .directory-content-push */
}


.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.more-button {
  display: block;
  margin: 30px auto 0;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 200px;
  text-align: center;
}
.more-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Estilos de la Sección de Ofertas (Las 3 primeras tarjetas) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.offer-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.offer-details {
  padding: 15px;
}

.offer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  height: 52px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.offer-rating {
  font-size: 0.9rem;
  color: #555;
  margin-right: 15px;
}

.offer-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Estilos de las Secciones de Destinos/Actividades (Grid con imagen y texto inferior) */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.destination-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
  min-height: 250px;
}

.destination-card .destination-card-hover {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.destination-card:hover .destination-card-hover {
  background-color: #ea0558;
  color: #fff;
  transition: 0.5s;
  display: inline-flex;
  opacity: 1;
  z-index: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  opacity: 1;
}

.destination-card:hover .destination-card-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.destination-card:hover .dest-name {
  bottom: unset;
  top: 0;
  z-index: 2;
  background-color: transparent;
}

.destination-card-hover {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
}

.destination-card-hover-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1 1;
  height: 100%;
  padding: 1rem 1rem;
  font-size: 1.5rem;
}

.destination-card-hover-content .destination-card-hover-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 13%;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.destination-card-hover-content .destination-card-hover-content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.destination-card-activities {
  color: #fff;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 6px;
  position: relative;
  bottom: 40px;
}

.destination-card-activities-subtitle {
  color: #fff;
  font-size: 1rem;
  line-height: 16px;
  position: relative;
  bottom: 33px;
}

.destination-card-hover-title {
  line-height: 16px;
  margin-bottom: 6px;
}

.destination-card-hover-subtitle {
  font-size: 1rem;
  line-height: 16px;
}

.rating-a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating.inverse .rating-info,
.rating-rating {
  color: #fff;
  position: relative;
  top: 0.2rem;
}

.rating-a .rating-info-full {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  top: 0.2rem;
}

.rating-a .rating-info-full .rating-info {
  top: 0.4rem;
}

.rating-a .rating-info-full .rating-info-subtitle {
  margin-top: 0.2rem;
}

.rating-a .rating-top {
  display: flex;
  align-items: flex-end;
  margin-top: 1rem;
}

.rating-a .rating-subtitle {
  line-height: 16px;
}

.rating-a .rating-top .rating-total {
  position: relative;
  bottom: -4px;
}

.rating-a .rating-info-full .rating-info-subtitle,
.rating-a .rating-subtitle {
  color: #fff;
  font-size: 1rem;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.dest-name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.5); /* Sombra oscura para que el texto resalte */
  width: 100%;
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 15px;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 20px;
  background-color: var(--secondary-color);
  color: #aaa;
  font-size: 0.8rem;
  margin-top: 40px;
}

/* --- FOOTER COMPLETO --- */
.main-footer {
  background-color: var(--secondary-color); /* Fondo oscuro */
  color: #fff;
  padding: 40px 5%;
  font-size: 0.9rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas */
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #444;
}

.footer-column h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
  text-transform: uppercase;
}

.footer-column h3:first-child {
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.contact-24-7 {
  color: var(--primary-color);
  font-weight: 600;
}

/* Sección de Valoración */
.rating-box {
  background-color: #333;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 25px;
  text-align: center;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stars {
  color: gold;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.rating-text {
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 5px;
}

/* Iconos de Pago y Sociales */
.payment-icons i,
.social-icons a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.75rem;
  color: #888;
}

/* Variables CSS para consistencia */
/* Estilos Globales */
a {
  text-decoration: none;
  /* Los enlaces fuera del header y footer deben ser de color por defecto */
  color: var(--text-light);
}

/* --- HEADER / HERO SECTION --- */
.hero-section {
  height: 70vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  position: relative;
  padding: 0 5%;
}

.hero-section::before {
  background-image: url("../../images/home/tickets-civitatis.jpg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.hero-section-roma {
  height: 70vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  position: relative;
  padding: 0 5%;
}

.hero-section-roma::before {
  background-image: url("../../es/roma/civitatis-roma.jpg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}



.hero-section.hero-section-united-states::before {
  background-image: url("https://www.civitatis.com/f/estados-unidos/estados-unidos.jpg");
}

.hero-section.hero-section-new-york::before {
  background-image: url("https://images.unsplash.com/photo-1518391846015-55a9cc003b25?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&fm=jpg&q=60&w=3000");
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 30%;
}
.top-nav.actividad{
 
}


.logos {
    display: flex;
    width: 220px;
    justify-content: center;
}

.detalle-logo{
  display: flex;
}

.logo-civitatis {
  position: relative;
  top: -10px;
}

.logo-civitatis-blanco {
  position: relative;
  top: -10px;
  height: 54px;
}

.nav-links {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  /* padding-top: 15px; */
}

.nav-link a {
  font-size: 0.9rem;
  transition: color 0.3s;
  color: var(--text-light); /* Enlaces del nav deben ser blancos */
  padding: 8px 10px;
  border-radius: 4px;
}

.nav-link a:hover {
  background-color: rgba(228, 0, 70, 0.5);
}

/* --- Dropdown de Idioma (Mantener estilos anteriores) --- */
.language-selector {
  position: relative;
  display: inline-block;
  top: 6px;
}

.lang-button {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s;
}

.lang-button:hover {
  background-color: rgba(228, 0, 70, 0.5);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 4px;
  overflow: hidden;
}

.lang-dropdown a {
  color: var(--text-dark);
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  background-color: transparent;
}

.lang-dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* --- Contenido Central (Hero) --- */
.hero-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 10px 0 0 0;
}

/* --- Buscador y preparado para Autocompletado --- */
.search-bar-container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 800px;
  background-color: white;
  border-radius: 50px;
  overflow: visible; /* IMPORTANTE: Para que el box de autocomplete se salga del contenedor */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-bar-container input {
  flex-grow: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  outline: none;
  color: var(--secondary-color);
}

.search-bar-container input:has(+ #autocomplete-box .autocomplete-item) {
	border-bottom-left-radius: 0;
}

.search-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0 50px 50px 0;
}

/* --- ESTILOS PARA AUTOCOMPLETADO --- */

#autocomplete-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 15;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--secondary-color);
  display: none;
}

.autocomplete-item {
  padding: 10px 25px;
  cursor: pointer;
  color: var(--secondary-color);
  font-size: 1rem;
  text-align: left;
}

.autocomplete-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* --- CABECERA DE PÁGINAS INTERNAS (ACTIVITY PAGE HEADER) --- */

.activity-page-header {
    /* Propiedades para hacerlo fijo */
    position: fixed; /* Hace la cabecera fija respecto a la ventana */
    top: 0;          /* La fija en la parte superior */
    left: 0;         /* Asegura que ocupe todo el ancho */
    width: 100%;     /* Asegura que ocupe todo el ancho */
    z-index: 1000;   /* Asegura que esté por encima de todo el contenido */
    
    /* Propiedades de estilo ya existentes o necesarias */
    height: auto; 
    min-height: 0;
    background-color: #ea0558; /* Color de fondo para que el contenido de abajo no se vea */
    color: #fff; /* Asegura el color del texto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra para destacarla */
    padding-bottom: 0; /* Elimina el padding inferior que tenías si no es necesario con el título flotante */
}

/* 1. Visibilidad del NAV (Logo y Enlaces en cabecera clara) */
.activity-page-header .top-nav .nav-link a,
.activity-page-header .top-nav .lang-button,
.activity-page-header .top-nav .logos .logo,
.activity-page-header .top-nav .logos a { /* Asegurar que el logo sea oscuro */
    color: #fff !important; 
    text-shadow: none;
}

/* 2. Contenido del Hero de Detalle (Títulos) */
.activity-page-header .hero-content {
    padding: 20px 5% 20px; 
    padding-bottom: 20px;
}

.activity-page-header .hero-content .title-detail,
.activity-page-header .hero-content .tagline-detail {
    color: var(--secondary-color);
    text-shadow: none;
}
/* FIN ESTILOS ESPECÍFICOS CABECERA FIJA */


/* --- AJUSTE CRUCIAL DE MARGIN TOP PARA COMPENSAR LA CABECERA FIJA --- */

/* Compensa la altura del header fijo en las páginas de actividad 
   (El header solo contiene el NAV, de aprox. 65px de altura) */
.hero-content {
    /* ESTA ES LA CORRECCIÓN CLAVE PARA TU PÁGINA DE DETALLE */
    margin-top: 65px; 
} 
/* El resto de elementos después del header fijo deben tener la compensación correcta */
main.city-detail-page, .image-gallery {
    margin-top: 65px; 
}


/* Compensa la altura del header fijo en la página de directorio (nav + hero-content) */
.directory-content-push {
    /* Esta regla se mantiene con el valor alto, ya que incluye el buscador */
    margin-top: 168px !important; 
}
/* Las reglas redundantes del inicio del CSS se han movido/limpiado */


.tagline {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  max-width: 100%;
}

.search-bar-container {
  display: flex;
  width: 100%;
  max-width: 800px;
  background-color: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 12px auto;
}

.search-bar-container input {
  border-radius: 21px;
  flex-grow: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  outline: none;
  color: var(--secondary-color);
}

.search-bar-container input::placeholder {
  color: #999;
}

.search-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-button:hover {
  background-color: var(--primary-color);
}

/* --- MAIN CONTENT SECTIONS --- (Mantener estilos anteriores) */
main {
  padding: 40px 5%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.more-button {
  display: block;
  margin: 30px auto 0;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.more-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Estilos de la Sección de Ofertas (Las 3 primeras tarjetas) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.offer-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.offer-details {
  padding: 15px;
}

.offer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  height: 52px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-rating {
  font-size: 0.9rem;
  color: #555;
  margin-right: 15px;
}

.offer-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* --- SECCIÓN DE AFILIACIÓN Y CONFIANZA --- */
.affiliate-info-block {
  padding: 60px 5%;
  margin-top: 50px;
  background-color: white; /* Contraste con el fondo gris de main */
  border-top: 5px solid var(--primary-color); /* Línea roja que da importancia */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.info-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.title-secondary {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.title-secondary i {
  color: var(--primary-color);
  margin-right: 10px;
}

.text-content {
  text-align: left;
  line-height: 1.8;
  color: #444;
  list-style-type: none;
}

.text-content p {
  margin-bottom: 15px;
}

.subtitle-bold {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.subtitle-bold.center {
  text-align: center;
}

.text-content ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-content ul li {
  margin-bottom: 5px;
}

.text-content ul strong {
  color: var(--primary-color);
}

.separator {
  width: 80%;
  height: 1px;
  background-color: #ddd;
  margin: 30px auto;
}

.cta-final {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 10px;
  background-color: var(--bg-light);
  border-radius: 5px;
  margin-top: 25px;
}

/* --- ESTILOS ESPECÍFICOS DEL DIRECTORIO --- */
.intro-text-block {
  /* max-width: 800px; */
  margin: 0 auto 50px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.intro-text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.intro-text-block strong {
  color: var(--primary-color);
}

.stats-summary {
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
  padding: 10px;
  background-color: var(--bg-light);
  border-radius: 4px;
}

.section-title-small {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/* --- Estilos de la Tabla --- */
.table-scroll-container {
  overflow-x: auto; /* Permite scroll horizontal en móviles */
  padding-bottom: 10px;
}

.directory-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 700px; /* Asegura que la tabla no sea demasiado estrecha en móvil */
}

.directory-table th,
.directory-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

.directory-table th {
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directory-table tbody tr:hover {
  background-color: var(--bg-light);
}

/* Estilo para la fila total (si quieres destacarla) */
.directory-table .table-total {
  background-color: #f0f0f0;
  font-weight: 700;
  border-top: 2px solid var(--primary-color);
}

/* Enlaces dentro de la tabla */
.directory-table td a {
  color: var(--primary-color);
  font-weight: 600;
}

.directory-table td a:hover {
  text-decoration: underline;
}

/* Botón de Reserva dentro de la tabla */
.directory-table .reserve-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.2s;
  font-weight: 500;
  white-space: nowrap; /* Evita que el botón se rompa */
}

.directory-table .reserve-btn:hover {
  background-color: var(--primary-color);
  text-decoration: none;
}

/* Columna Centrada */
.centered-col {
  text-align: center !important;
}

/* Botón like minimal */
.activity-like::before {
  content: "♥";
  font-size: 16px;
  line-height: 1;
  color: #ea0558;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.rating-stars .stars-empty,
.rating-stars .stars-full {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;
  display: block;
  white-space: nowrap;
}

.rating-stars .stars-empty {
  color: #d7d7d7;
}

.rating-stars .stars-full {
  color: #ffb100;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}

.rating-stars--inverse .stars-empty {
  color: rgba(255, 255, 255, 0.45);
}

.rating-stars--inverse .stars-full {
  color: #fff;
}

.activity-meta .rating + .rating-stars {
  margin-left: 0.25rem;
}

.hover-rating .rating-stars {
  margin-left: 0.5rem;
}

.activity-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.activity-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: #eee;
}

.activity-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-meta .rating {
  color: #000;
  font-weight: 700;
}

.activity-meta .rating-total {
  opacity: 0.7;
  margin-left: 2px;
}

.activity-meta .reviews {
  color: #777;
  font-size: 0.85rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price .from {
  font-size: 0.85rem;
  color: #666;
}

.price .old {
  color: #999;
}

.price .current {
  font-size: 1.05rem;
}

.hover-rating {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.rating-stars .stars-empty,
.rating-stars .stars-full {
  display: block;
  white-space: nowrap;
}

.activities-section .activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.activities-section .activities-grid > li {
  display: flex;
}

.activities-section .activities-grid > li > .activity-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activities-section .activities-grid > li > .activity-card .activity-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activities-section .price {
  white-space: nowrap;
}

.activity-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px 14px;
  background: #fff;
}

.footer-left {
  min-width: 0;
  flex: 1;
}

.footer-right {
  display: flex;
  align-items: flex-end;
}

.activity-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin: 0 0 6px;
}

.activity-hover {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  padding: 14px;
  background: #ea0558;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.activity-card:hover .activity-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hover-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hover-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 120px;
}

.hover-title {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 6px;
}

.hover-text {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.hover-cta {
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: #fff;
  color: #ea0558;
  font-weight: 800;
  cursor: pointer;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.activities-grid > li > .activity-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activities-grid > li > .activity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* link ocupa toda la card */
.activity-card .activity-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

/* thumb con ratio fijo similar al grid de civitatis */
.activity-card .activity-thumb {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 16/10; /* cerca de ~700x440 de su grid */
}

.activity-card .activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.activity-card:hover .activity-thumb img {
  transform: scale(1.06);
}

/* footer */
.activity-card .activity-footer {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 14px 16px;
}

.activity-card .footer-left {
  flex: 1 1 auto;
  min-width: 0;
}

.activity-card .footer-right {
  flex: 0 0 auto;
}

/* título recortado a 2 líneas como en compact-card */
.activity-card .activity-title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* meta / rating */
.activity-card .activity-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.activity-card .rating {
  font-weight: 700;
}

.activity-card .rating-total {
  opacity: 0.7;
  margin-left: 3px;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.rating-stars .stars-empty {
  color: #ddd;
}

.reviews {
  color: #666;
  font-size: 13px;
}

/* precio (evitar saltos) */
.price {
  white-space: nowrap;
  text-align: right;
}

.price .from {
  font-size: 12px;
  color: #666;
  display: block;
}

.price .old {
  color: #888;
  text-decoration: line-through;
  margin-right: 6px;
}

.price .current {
  font-size: 16px;
  font-weight: 800;
}

/* hover layer (como compact-card__hover) */
.activity-card .activity-hover {
  position: absolute;
  inset: 0;
  display: none;
}

.activity-card .activity-link {
  position: relative;
}

.activity-card:hover .activity-hover {
  display: block;
}

.activity-card .activity-hover .hover-left,
.activity-card .activity-hover .hover-right {
  position: absolute;
  inset: auto;
  padding: 14px;
  color: #fff;
}

.activity-card .activity-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.activity-card .activity-hover .hover-left {
  left: 0;
  bottom: 0;
  right: 40%;
}

.activity-card .activity-hover .hover-right {
  right: 0;
  bottom: 0;
  width: 40%;
  text-align: right;
}

.activity-card .hover-title {
  font-weight: 800;
  margin: 0 0 6px;
}

.activity-card .hover-text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card .hover-price .old {
  display: block;
  opacity: 0.85;
}

.activity-card .hover-cta {
  margin-top: 8px;
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: #ff2c55;
  color: #fff;
  font-weight: 700;
}

.activity-like .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* accesibilidad */
.activity-card .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* =======================
   LIST-CARD
   ======================= */
.city-list .activities-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.city-list .list-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.city-list .list-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Estructura horizontal */
.city-list .list-card__link {
  display: flex;
  align-items: stretch;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 12px;
}

/* Media (imagen izquierda) */
.city-list .list-card__media {
  flex: 0 0 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f2f2;
}

.city-list .list-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.city-list .list-card:hover .list-card__media img {
  transform: scale(1.04);
}

/* Body (centro) */
.city-list .list-card__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 4px 4px 2px 0;
}

.city-list .list-card__title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #e1066b; /* tono civitatis */
}

.city-list .list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.city-list .list-card__score {
  font-weight: 900;
  color: #e1066b;
}

.city-list .list-card__badge {
  background: #e7f7ec;
  color: #138a36;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

.city-list .list-card__excerpt {
  margin: 0 0 10px;
  color: #333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.city-list .list-card__tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #777;
  font-size: 13px;
}

.city-list .list-card__tags i {
  margin-right: 6px;
}

/* Aside (precio + CTA a la derecha) */
.city-list .list-card__aside {
  flex: 0 0 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  padding: 6px 2px;
  text-align: right;
}

.city-list .list-card__price {
  line-height: 1.1;
  white-space: nowrap;
}

.city-list .list-card__price .__old {
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 4px;
}

.city-list .list-card__price .__current {
  font-size: 24px;
  font-weight: 900;
  color: #333;
}

.city-list .list-card__cta {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #ff2c55;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease;
}

.city-list .list-card__cta:hover {
  filter: brightness(1.05);
}

.city-list .list-card__cta:active {
  transform: translateY(1px);
}

/* Like (opcional) */
.city-list .list-card .activity-like {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  z-index: 2;
}

.filter-container {
  background-color: var(--text-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.filter-group select,
.filter-group input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Estilos para los Módulos de Venta */
#sales-modules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-top: 20px;
}

.module-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.module-details {
  padding: 15px;
}

.module-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.module-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #555;
}

.module-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 15px;
  text-align: right;
}

.module-price span {
  font-size: 0.7rem;
  font-weight: 400;
}

.module-link {
  display: block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}

.module-link:hover {
  background-color: var(--primary-color);
}

.breadcrumb a.active {
  color: var(--primary-color);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.font-xl {
  font-size: 3.75rem;
}

/* Breakpoints reference:
   - 1200px: wide desktops
   - 992px: laptops/tablets landscape
   - 768px: tablets
   - 640px: large phones
   - 480px: small phones
*/


/* ========================================================= */
/* --- ESTILOS MEJORADOS PARA OPINIONES (#opiniones) --- */
/* ========================================================= */

/* Contenedor principal para resumir las puntuaciones */
.city-detail-page .rating-summary {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: var(--text-light); /* Fondo blanco */
    border-left: 5px solid var(--primary-color); /* Línea lateral destacada */
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Puntuación grande (8,7 / 10) */
.city-detail-page .rating-summary .rating-score {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

/* Metadatos (número de opiniones, viajeros) */
.city-detail-page .rating-summary .review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--secondary-color);
}

.city-detail-page .rating-summary .review-meta p {
    margin: 0;
}

/* Lista de reviews individuales */
.city-detail-page .review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city-detail-page .review-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--text-light);
    transition: box-shadow 0.2s;
}

.city-detail-page .review-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.city-detail-page .reviewer-name {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.city-detail-page .review-date {
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
}

.city-detail-page .review-item p:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-top: 5px;
}

.city-detail-page .review-trip-type {
    display: inline-block;
    background-color: var(--bg-light);
    color: #666;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 500;
}

/* Botón "Ver todas las opiniones" */
.city-detail-page .more-button {
    /* Manteniendo la base que ya tenías, pero forzando el color primario */
    margin-top: 30px;
    display: block;
    width: 250px !important; /* Más ancho para que destaque */
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
}

.city-detail-page .more-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Ajuste Responsivo Básico */
@media (max-width: 600px) {
    .city-detail-page .rating-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .city-detail-page .rating-summary .rating-score {
        font-size: 2.5rem;
    }
    .city-detail-page .more-button {
        width: 100% !important;
    }
}

/* css pagina actividad -------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Variables CSS para consistencia */
:root {
  --primary-color: #e40046; /* Color rojizo de Civitatis */
  --primary-color-hovered: #d3074c;
  --secondary-color: #333;
  --text-light: #fff;
  --text-dark: #1e1e1e;
  --bg-light: #f5f5f5;
  --max-width: 1200px;
  /* ... otras variables ... */
}

/* ... (Estilos globales, body, etc. que ya tenías) ... */

/* --- HEADER / HERO SECTION (BASE HOME) --- */
.hero-section {
  height: 70vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light); /* Color por defecto de HOME (BLANCO) */
  position: relative;
  padding: 0 5%;
}

.hero-section::before {
  /* Reglas de fondo de la HOME */
  background-image: url("../../images/home/tickets-civitatis.jpg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative; 
  z-index: 10;
}

/* --- ESTILOS ESPECÍFICOS DEL HEADER DE DETALLE (ACTIVITY PAGE HEADER) --- */

.activity-page-header {
    /* Propiedades para hacerlo fijo */
    position: fixed; /* Hace la cabecera fija respecto a la ventana */
    top: 0;          /* La fija en la parte superior */
    left: 0;         /* Asegura que ocupe todo el ancho */
    width: 100%;     /* Asegura que ocupe todo el ancho */
    z-index: 1000;   /* Asegura que esté por encima de todo el contenido */
    
    /* Propiedades de estilo ya existentes o necesarias */
    height: auto; 
    min-height: 0;
    background-color: #ea0558; /* Color de fondo para que el contenido de abajo no se vea */
    color: #fff; /* Asegura el color del texto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra para destacarla */
    padding-bottom: 0; /* Elimina el padding inferior que tenías si no es necesario con el título flotante */
}

/* 1. Visibilidad del NAV (Logo y Enlaces en cabecera clara) */
.activity-page-header .top-nav .nav-link a,
.activity-page-header .top-nav .lang-button,
.activity-page-header .top-nav .logos .logo,
.activity-page-header .top-nav .logos a { /* Asegurar que el logo sea oscuro */
    color: #fff !important; 
    text-shadow: none;
}

/* 2. Contenido del Hero de Detalle (Títulos) */
.activity-page-header .hero-content {
    padding: 20px 5% 20px; 
    padding-bottom: 20px;
}

.activity-page-header .hero-content .title-detail,
.activity-page-header .hero-content .tagline-detail {
    color: var(--secondary-color);
    text-shadow: none;
}

/* --- IMAGEN DE ACTIVIDAD (Banner) --- */
.activity-main-image {
    width: 100%;
    height: 40vh; 
    min-height: 300px;
    object-fit: cover; 
    display: block;
    margin-bottom: 20px; 
}

/* 3. Breadcrumb */
.breadcrumb {
    margin: 20px auto;
    max-width: var(--max-width);
    font-size: 0.9rem;
    color: #666; 
}

.breadcrumb a {
    color: #666; 
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 10px;
}

.breadcrumb a:hover,
.breadcrumb span.active {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 10px;
}

/* 4. Pestañas de Navegación Rápida */
.activity-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 2px solid #ddd; 
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
}

.activity-tabs a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 8px;
    transition: color 0.2s, border-bottom 0.2s;
    font-size: 1rem;
}

.activity-tabs a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}


/* --- 5. MÓDULO DE COMPRA (purchase-module) --- */
.purchase-module {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CLASE CRUCIAL: Contenedor para alinear precio/rating a la derecha */
.purchase-module .price-rating-right {
    text-align: right;
    margin-bottom: 15px; 
}

.purchase-module .price-large {
    font-size: 2rem; 
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
}

.purchase-module .rating-text-small {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

.purchase-module .search-button.purchase-module-cta {
    border-radius: 50px;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.purchase-module .benefit-list {
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.purchase-module .benefit-list li i {
    color: #138a36; /* Checkmarks */
    margin-right: 8px;
}

/* --- Media Queries (Ajustes responsivos) --- */
@media (max-width: 992px) {
    .activity-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .content-sidebar {
        order: -1;
    }
}



/* --- 5. ESTRUCTURA PRINCIPAL (LAYOUT DE PÁGINA DE ACTIVIDAD) --- */
.activity-main-layout {
    display: grid;
    /* Divide el espacio: 2/3 para contenido principal, 1/3 para sidebar */
    grid-template-columns: 2fr 1fr; 
    gap: 40px;
    margin-top: 30px; 
}

/* 6. Barra Lateral (Sidebar) */
.content-sidebar {
    position: relative; /* Contenedor de referencia para el sticky */
}

/* 7. MÓDULO STICKY (Simulación de Módulo de Compra Fijo) */
/* NOTA: Para un sticky real, necesitarías JavaScript para manejar el scroll */
/* Este CSS hace que el módulo flote en el espacio asignado en la columna derecha */
.purchase-module.sticky-module {
    /* position: sticky; /* Descomenta si usas JS para el polyfill o si solo apuntas a navegadores modernos */
    /* top: 20px; /* Distancia desde la parte superior de la ventana al hacer scroll */
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid var(--primary-color);
}

/* 8. Estilos para la nueva sección FAQ */
.faq-section {
    margin-top: 20px;
}

.faq-item {
    background-color: var(--text-light);
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-item:hover {
    background-color: #fafafa;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.faq-answer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

/* Mejora visual del itinerario y notas */
.itinerary-list {
    list-style: none;
    padding-left: 0;
}

.itinerary-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.itinerary-list li i {
    margin-right: 10px;
}

.important-note {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

.important-note i {
    margin-right: 8px;
}

.closed-dates li {
    color: #ff9900;
    font-weight: 600;
}

/* Estilo para grid de detalles */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Ajuste de media query para móvil (existente pero reforzado) */
@media (max-width: 992px) {
    .activity-main-layout {
        /* Colapsa a una sola columna */
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .content-sidebar {
        /* Mueve el sidebar al inicio en móvil/tablet para que el CTA se vea primero */
        order: -1; 
    }
    .purchase-module.sticky-module {
        /* Elimina el sticky en móvil */
        position: relative; 
        top: auto; 
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
}




/* --- 9. GALERÍA DE IMÁGENES (HEADER DE ACTIVIDAD) --- */
.image-gallery {
    display: grid;
    /* Dos columnas: la primera más ancha, la segunda más estrecha */
    grid-template-columns: 2.2fr 1fr; 
    gap: 10px; /* Espacio entre las imágenes */
    width: 100%;
    max-width: var(--max-width); /* Ajusta a tu ancho máximo */
    margin: 20px auto; /* Centra la galería */
    height: 480px; /* Altura fija para la galería */
    overflow: hidden; /* Asegura que las imágenes no se desborden */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.main-image-container {
    position: relative;
    grid-column: 1 / 2; /* Ocupa la primera columna */
    grid-row: 1 / 3; /* Ocupa las dos filas */
    height: 100%;
    overflow: hidden;
    border-radius: 12px 0 0 12px; /* Esquinas redondeadas solo en la izquierda */
}

.main-image-container img {
    width: 100%;
    object-fit: cover; /* Cubre el contenedor manteniendo la relación de aspecto */
    display: block;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: 1fr; /* Una columna */
    grid-template-rows: repeat(4, 1fr); /* Cuatro filas para las miniaturas */
    gap: 10px;
    grid-column: 2 / 3; /* Ocupa la segunda columna */
    grid-row: 1 / 3; /* Ocupa las dos filas */
    height: 100%;
}

.thumbnail-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 0; /* Las miniaturas no tienen esquinas redondeadas individuales */
}

.thumbnail-item:last-child {
    border-radius: 0 12px 12px 0; /* Esquinas redondeadas solo en la derecha de la última miniatura */
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.05); /* Efecto zoom al pasar el ratón */
}

/* Superposiciones de texto e iconos */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea el contenido abajo */
    padding: 20px;
    box-sizing: border-box;
    color: var(--text-light);
    pointer-events: none; /* Permite hacer clic en la imagen debajo */
}

.review-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(255,102,153,0.8) 100%); /* Degradado rosado y oscuro */
    pointer-events: none;
    align-items: flex-start; /* Alinea el texto a la izquierda */
}

.review-overlay .review-text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-overlay .stars {
    color: #ffd700; /* Color de estrellas */
    font-size: 1.5rem;
    margin-top: 5px;
}

.review-overlay .reviewer-name {
    font-size: 0.9rem;
    margin-top: 5px;
}

.more-photos-overlay {
    background: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente para el botón */
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Permite hacer clic en el botón */
}

.more-photos-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    pointer-events: auto; /* Asegura que el botón sea clickeable */
}

.more-photos-button:hover {
    background-color: var(--secondary-color); /* Un tono más oscuro o diferente al pasar el ratón */
}

.map-placeholder a{
  color: #000;
}


/* Estilos base para el contenedor del banner de cookies */
#cookie-banner {
    position: fixed; /* Lo fija en la ventana del navegador */
    bottom: 0;       /* Lo pega en la parte inferior */
    left: 0;
    width: 100%;
    z-index: 9999;   /* Asegura que esté por encima de todo */
    padding: 15px 30px;
    background-color: #2c3e50; /* Fondo oscuro */
    color: #ecf0f1;           /* Texto claro */
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex; /* Usamos flexbox para alinear el texto y los botones */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Estilos para el botón de aceptar */
.cookie-accept-btn {
    background-color: #27ae60; /* Verde de éxito */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    flex-shrink: 0; /* Evita que el botón se haga más pequeño */
    transition: background-color 0.3s ease;
}

.cookie-accept-btn:hover {
    background-color: #2ecc71;
}

/* Estilo del texto del banner */
.cookie-text {
    text-align: left;
    margin: 0;
}



/* --- ESTILOS PARA PÁGINAS DE POLÍTICAS (COOKIES, PRIVACIDAD, LEGAL) --- */

/* Contenedor principal para centrar y estilizar el contenido */
.policy-container {
    max-width: 900px;
    margin: 40px auto 80px auto;
    padding: 30px;
    background-color: var(--text-light); /* Fondo blanco */
    border-radius: var(--dest-radius); /* Usamos el radio de tus tarjetas */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.policy-container h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 800;
}

.policy-container h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-container h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-container p, 
.policy-container ul, 
.policy-container ol {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-container ul, 
.policy-container ol {
    padding-left: 25px;
}

.policy-container ul li,
.policy-container ol li {
    margin-bottom: 8px;
}

.policy-container a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ------------------------------------------------------------- */
/* --- AJUSTE DE COLOR DEL BANNER DE COOKIES (PARA CONSISTENCIA) --- */
/* ------------------------------------------------------------- */

/* Contenedor del Banner */
#cookie-banner {
    /* Fondo actualizado para usar la variable secundaria */
    background-color: var(--secondary-color) !important; 
    color: var(--text-light) !important;
}

/* Enlace a la política dentro del banner */
#cookie-banner a {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* Botón de Aceptar (Usamos el Primary Color como color de éxito/CTA) */
.cookie-accept-btn {
    background-color: var(--primary-color) !important; /* Rojo principal de Civitatis */
    color: var(--text-light) !important;
    transition: background-color 0.2s;
}

.cookie-accept-btn:hover {
    background-color: var(--primary-color-hovered) !important;
}

/* Media Query para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    #cookie-banner {
        /* Cambiamos a columna para apilar texto y botones verticalmente */
        flex-direction: column; 
        align-items: flex-start; /* Alineamos el texto y los elementos a la izquierda */
        padding: 15px; /* Menos padding en los lados */
    }

    .cookie-text {
        margin-bottom: 10px; /* Separación entre el texto y los botones */
    }

    .cookie-accept-btn {
        /* Hacemos que los botones ocupen todo el ancho en móvil */
        width: 100%; 
        margin-top: 5px;
    }
}


/* Media Query para Dispositivos Pequeños (max-width: 768px) */
/* === Pestañas apiladas en modo block === */

@media (max-width: 768px) {
    
    /* El contenedor principal de las pestañas */
    .activity-tabs {
        display: block; /* Asegura que el contenedor se comporte como un bloque */
        padding: 0 20px; /* Asume un padding lateral de 20px para alineación */
        margin: 15px 0;
        border-bottom: 1px solid #ddd;
    }

    /* Los enlaces individuales de las pestañas */
    .activity-tabs a {
        /* Fuerza a cada enlace a ocupar su propia línea y el ancho completo del contenedor */
        display: block; 
        width: 100%;
        
        /* Ajusta la apariencia para que parezca un botón o una lista vertical */
        text-align: left;
        padding: 12px 15px; /* Más padding para que sean fáciles de tocar */
        margin-bottom: 8px; /* Espacio entre los botones apilados */
        margin-right: 0; /* Elimina el margen derecho que usaban en horizontal */
        
        /* Estilos visuales */
        font-size: 1rem;
        border-radius: 8px; /* Esquinas más cuadradas para un diseño tipo lista/bloque */
        background-color: #f7f7f7;
        color: #333;
        border: 1px solid #eee;
        transition: background-color 0.2s;
        box-sizing: border-box; /* Incluye padding y borde en el ancho total */
    }

    /* Estilo de la pestaña activa */
    .activity-tabs a.active {
        background-color: var(--primary-color); 
        color: white;
        border-color: var(--primary-color);
    }
}


/* Media Query para Dispositivos Pequeños (restante) */
@media (max-width: 992px) {
    .image-gallery {
        grid-template-columns: 1fr; /* Una columna para pantallas más pequeñas */
        height: auto; /* Altura automática */
        border-radius: 12px;
    }

    .main-image-container {
        grid-column: 1 / 2;
        grid-row: auto;
        border-radius: 12px 12px 0 0; /* Esquinas redondeadas arriba */
        height: 300px; /* Altura para la imagen principal en móvil */
    }

    .thumbnail-images {
        grid-column: 1 / 2;
        grid-row: auto;
        grid-template-columns: repeat(2, 1fr); /* Dos columnas para miniaturas en móvil */
        grid-template-rows: auto;
        padding: 0 10px 10px; /* Padding para que no queden pegadas al borde */
    }

    .thumbnail-item {
        border-radius: 0;
    }

    .thumbnail-item:last-child {
        border-radius: 0 0 12px 0; /* Esquina inferior derecha redondeada si es la última */
        /* Puede necesitar más ajustes dependiendo del número total de miniaturas */
    }
    
    .review-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(255,102,153,0.6) 100%);
    }

}

@media (max-width: 576px) {
    .thumbnail-images {
        grid-template-columns: 1fr; /* Una columna para miniaturas en móviles muy pequeños */
    }
    .thumbnail-item:last-child {
        border-radius: 0 0 12px 12px; /* Redondear ambas esquinas inferiores de la última miniatura */
    }
    .main-image-container {
        height: 250px;
    }
}









/* ========================================= */
/* Media Query para Dispositivos Pequeños (max-width: 768px) */
/* === Pestañas apiladas en modo block === */
/* ========================================= */

@media (max-width: 768px) {
    
    /* El contenedor principal de las pestañas */
    .activity-tabs {
        display: block; /* Asegura que el contenedor se comporte como un bloque */
        padding: 0 20px; /* Asume un padding lateral de 20px para alineación */
        margin: 15px 0;
        border-bottom: 1px solid #ddd;
    }

    /* Los enlaces individuales de las pestañas */
    .activity-tabs a {
        /* Fuerza a cada enlace a ocupar su propia línea y el ancho completo del contenedor */
        display: block; 
        width: 100%;
        
        /* Ajusta la apariencia para que parezca un botón o una lista vertical */
        text-align: left;
        padding: 12px 15px; /* Más padding para que sean fáciles de tocar */
        margin-bottom: 8px; /* Espacio entre los botones apilados */
        margin-right: 0; /* Elimina el margen derecho que usaban en horizontal */
        
        /* Estilos visuales */
        font-size: 1rem;
        border-radius: 8px; /* Esquinas más cuadradas para un diseño tipo lista/bloque */
        background-color: #f7f7f7;
        color: #333;
        border: 1px solid #eee;
        transition: background-color 0.2s;
        box-sizing: border-box; /* Incluye padding y borde en el ancho total */
    }

    /* Estilo de la pestaña activa */
    .activity-tabs a.active {
        background-color: var(--primary-color); 
        color: white;
        border-color: var(--primary-color);
    }
}






/*--------------------------------------------------------------------------------------------------------------------------------------*/



/* final actividad css*/



/*------------------------------------------------------ pagina directorio ------------------------------------------------------------*/



/* --- CABECERA DE PÁGINAS INTERNAS (ACTIVITY PAGE HEADER) --- */

.activity-page-header {
    /* Propiedades para hacerlo fijo */
    position: fixed; /* Hace la cabecera fija respecto a la ventana */
    top: 0;          /* La fija en la parte superior */
    left: 0;         /* Asegura que ocupe todo el ancho */
    width: 100%;     /* Asegura que ocupe todo el ancho */
    z-index: 1000;   /* Asegura que esté por encima de todo el contenido */
    
    /* Propiedades de estilo ya existentes o necesarias */
    height: auto; 
    min-height: 0;
    background-color: #ea0558; /* Color de fondo para que el contenido de abajo no se vea */
    color: #fff; /* Asegura el color del texto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra para destacarla */
    padding-bottom: 0; /* Elimina el padding inferior que tenías si no es necesario con el título flotante */
}

/* 1. Visibilidad del NAV (Logo y Enlaces) */
/* Aplicación de !important para asegurar que el color oscuro prevalezca */
.activity-page-header .top-nav .nav-link a,
.activity-page-header .top-nav .lang-button,
.activity-page-header .top-nav .logos .logo,
.activity-page-header .top-nav .logos a { 
    
    text-shadow: none;
}

/* 2. Títulos del Hero Content */
.activity-page-header .hero-content {
    padding: 20px 5% 20px; 
    padding-bottom: 20px;
}

.activity-page-header .hero-content .title-detail,
.activity-page-header .hero-content .tagline-detail {
    color: var(--secondary-color);
    text-shadow: none;
}

/* --- ESTILO PARA EL DIRECTORIO DE PAÍSES (Tabla y Contenido) --- */

/* Estilo para el bloque de información introductoria */
.intro-text-block {
    margin: 0 auto 50px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.intro-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.stats-summary {
    text-align: center;
    font-weight: 700;
    margin-top: 25px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Encabezado de sección pequeña */
.section-title-small {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
}

/* --- Estilos de la Tabla (directory-table) --- */
.directory-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 700px;
}

.directory-table th,
.directory-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.directory-table th {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directory-table tbody tr:hover {
    background-color: var(--bg-light);
}

.directory-table .table-total {
    background-color: #f0f0f0;
    font-weight: 700;
    border-top: 3px solid var(--primary-color);
    color: var(--secondary-color);
}

.directory-table .reserve-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
}

.directory-table .reserve-btn:hover {
    background-color: var(--primary-color-hovered);
}

/* Alineación de columnas */
.centered-col {
    text-align: center !important;
}



/* --- ESTILOS PARA DIRECTORIO EXPANDIBLE (CIUDADES) --- */

.directory-table .country-row {
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s;
}

/* Filas de ciudades (visualización diferente) */
.directory-table .city-row {
    background-color: #fcfcfc; /* Fondo ligeramente diferente para distinguir */
    font-weight: 400;
    font-size: 0.9rem;
    border-left: 3px solid var(--bg-light); /* Indicador visual sutil de sub-elemento */
}

/* Alineación del icono y botón de expansión */
.directory-table .country-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px; /* Asegurar padding inicial */
}

/* Estilo para el botón de expansión (+) */
.directory-table .expand-btn {
    background: none;
    border: 1px solid #ccc;
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.directory-table .expand-btn:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.directory-table .expand-btn i {
    font-size: 0.75rem;
}

/* Estilo para países sin ciudades expandibles (icono de avión) */
.directory-table .no-cities-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--secondary-color); /* Color oscuro para el avión */
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Estilo para las celdas de ciudad */
.directory-table .city-cell {
    /* Mueve la celda de la ciudad a la derecha para sangría visual */
    padding-left: 30px; 
    font-weight: 500;
    color: #444;
}

/* Color del icono de marcador en la fila de ciudad */
.directory-table .city-cell i.fa-map-marker-alt {
    color: var(--primary-color);
    margin-right: 8px;
}





/* --- ESTILOS PARA DIRECTORIO EXPANDIBLE TRIPLE NIVEL --- */

/* La nueva fila de actividad se distingue visualmente */
.directory-table .activity-row {
    background-color: #fafafa;
    border-bottom: 1px dashed #eee;
}

/* Sangría para las actividades destacadas */
.directory-table .activity-sub-cell a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary-color);
}


















/*------------------------------------------------------ pagina directorio final ------------------------------------------------------------*/


@media (max-width: 480px) {
  .title {
    font-size: 1.65rem;
  }
  .search-bar-container input {
    padding: 12px 14px;
  }
  .logo {
    font-size: 1.25rem;
  }
  .breadcrumb {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .search-bar-container {
    border-radius: 10px;
  }

  .search-button {
    border-radius: 0 0 10px 10px;
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr; /* 1 columna en móvil */
    text-align: center;
  }

  .rating-box,
  .app-links,
  .social-payments {
    align-items: center;
    text-align: center;
  }

  .app-links {
    max-width: 250px;
    margin: 0 auto 20px;
  }

  .payment-icons i {
    margin: 0 10px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hover-text {
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 640px) {
  .top-nav {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0 10px;
    scroll-snap-type: x mandatory;
  }

  .search-bar-container {
    flex-direction: column;
    width: 92%;
    border-radius: 16px;
  }

  .search-bar-container input {
    border-radius: 16px 16px 0 0;
  }

  .search-button {
    width: 100%;
    border-radius: 0 0 16px 16px;
  }

  #autocomplete-box {
    left: 0;
    width: 100% !important;
    box-sizing: border-box;
  }

  .top-nav > * {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .activities-grid {
    grid-template-columns: 1fr !important;
  }

  .destinations-grid {
    grid-template-columns: 1fr !important;
  }
  .activities-grid {
    grid-template-columns: 1fr !important;
  }

  .activities-section .activities-grid { 
    gap: 12px; 
  }

  .destination-card {
    border-radius: 8px;                /* como destination */
    overflow: hidden;
    box-shadow: var(--dest-shadow);
    position: relative;
  }

  /* Igualar el comportamiento de la imagen a 'cover' + altura fija */
  .destination-card .activity-thumb {
    aspect-ratio: auto;                /* anula el ratio */
    height: 250px;                     /* como destination min-height */
  }
  .destination-card .activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;                  /* cover como destination */
  }

  /* Footer superpuesto tipo 'dest-name' */
  .destination-card .activity-footer {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.68) 0%,
      rgba(0,0,0,.15) 60%,
      rgba(0,0,0,0) 100%
    );
    color: #fff;
    padding: 10px 12px;
    align-items: flex-end;
  }

  /* Título y precio en blanco sobre la imagen */
  .destination-card .activity-title {
    color: #fff;
    margin: 0;
    -webkit-line-clamp: 1; 
  }
  .destination-card .activity-meta,
  .destination-card .price .from,
  .destination-card .price .old {
    display: none;
  }
  .destination-card .price .current {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
  }

  .destination-card .activity-link { 
    position: relative; 
  }

  .font-xl {
    font-size: 2.8rem;
  }
  .destination-card .destination-card-hover {
    display: none;
  }
  .destination-card-hover-content .destination-card-hover-content-left {
    margin-top: 8%;
  }
  .dest-name {
    font-size: 1rem;
    padding: 8px 10px;
  }
  .activity-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .search-bar-container {
    overflow: visible;
  }

  .hero-section {
    height: fit-content;
    padding: 0 4%;
  }

  .top-nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link a,
  .lang-button {
    font-size: 0.8rem;
  }

  .title {
    font-size: 2rem;
  }

  .search-bar-container {
    flex-direction: column;
    border-radius: 12px;
    max-width: 92%;
  }

  .search-button {
    width: 100%;
    border-radius: 0 0 12px 12px;
  }

  .destinations-grid,
  .activities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-title {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 880px) {
  .city-list .list-card__link {
    flex-direction: column;
  }
  .city-list .list-card__media {
    flex: 0 0 auto;
  }
  .city-list .list-card__aside {
    align-items: flex-start;
    text-align: left;
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
  }
}

@media (max-width: 992px) {
  .hero-inner { 
    gap: 10px; 
    padding-top: 
    clamp(42px, 10vh, 96px); 
  }

  .search-bar-container { 
    width: min(680px, 94%); 
    margin: 12px auto;
  }

  .hero-section {
    height: fit-content;
  }
  .hero-section > .top-nav,
  .top-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    height: fit-content;
  }
  .title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 13px;
  }
}

@media (hover: none) {
  .activity-hover {
    display: none;
  }
}