/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  background: #fbf6f0;
  color: #232323;
  margin: 0;
  padding: 0;
}
.cw-orange { color: #fa6600 !important; }

/* --- HEADER TRANSPARENTE SOBRE LA IMAGEN --- */
.cw-header {
  background: transparent;
  border-bottom: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.cw-header .cw-nav a.active {
  color: #fa6600;
  font-weight: 700;
}
.cw-header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  position: relative;
}
.cw-logo { 
  margin-top: 0px;
  height: 40px; 
}
.cw-nav { display: flex; gap: 30px; }
.cw-nav a {
  color: #4d4e51;
  text-decoration: none;
  font-size: 1.08em;
  font-weight: 500;
  transition: color 0.17s;
}
.cw-nav a:hover { color: #fa6600; }
.cw-btn-header {
  background: #fa6600;
  color: #fff;
  padding: 11px 28px;
  font-weight: 700;
  border-radius: 18px;
  font-size: 1em;
  text-decoration: none;
  transition: background .16s;
  white-space: nowrap;
}
.cw-btn-header:hover { background: #d94d00; }

.linea {
  border: 0;
  border-top: 1px solid #fff;
}

/* ── HAMBURGUESA ── */
.cw-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  flex-shrink: 0;
}
.cw-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all .3s;
}
/* Animación X al abrir */
.cw-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cw-menu-toggle.open span:nth-child(2) { opacity: 0; }
.cw-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Botón certifica dentro del nav — solo móvil */
.cw-nav-btn-certifica { display: none; }

/* ── RESPONSIVE HEADER / MENÚ ── */
@media (max-width: 768px) {

  .cw-header {
    position: fixed; /* fijo para que el menú siempre sea accesible */
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .cw-header-inner {
    padding: 0 16px;
    height: 60px;
    justify-content: flex-start;
    gap: 8px;
  }

  /* Logo izquierda */
  .cw-logo { height: 32px; flex-shrink: 0; }

  /* Selector de idioma */
  #lang-selector { margin-left: auto; }

  /* Botón certifica — oculto fuera del nav */
  .cw-btn-header,
  .cw-btn-nav { display: none; }

  /* Hamburguesa */
  .cw-menu-toggle { display: flex; }

  /* Nav — dropdown absoluto pegado debajo del header */
  .cw-nav {
    display: none;
    position: absolute;
    top: 60px; /* altura del header móvil */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 2px solid #fa6600;
    z-index: 9999;
    padding: 8px 0 8px;
    gap: 0;
  }

  .cw-nav.open { display: flex; }

  .cw-nav a {
    padding: 14px 20px;
    font-size: 1em;
    color: #1a1a1a;
    border-bottom: 1px solid #f5f0eb;
    text-decoration: none;
    font-weight: 500;
  }
  .cw-nav a:last-child { border-bottom: none; }
  .cw-nav a.active     { color: #fa6600; font-weight: 700; }

  /* Botón certifica dentro del nav en móvil */
  .cw-nav-btn-certifica {
    display: block !important;
    margin: 10px 16px 4px !important;
    background: #fa6600 !important;
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    text-decoration: none;
  }

  /* Compensa el header fijo para que el contenido no quede debajo */
  body { padding-top: 60px; }

  .linea { display: none; }

  /* Hero — ajusta padding por el header fijo */
  .cw-hero-content { padding-top: 60px !important; }
}

/* --- HERO: imagen ocupa TODO, header encima transparente --- */
.cw-hero-bg {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../../img/hero-bedroom.png') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.cw-hero-overlay { display: none; }
.cw-hero-sup{
	margin-bottom:50px;
	font-size:.30em;
}
.cw-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 140px 42px 0 42px;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.cw-hero-left {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}

.cw-hero-left h1 {
  font-size: 4.5em;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 18px 0;
  line-height: 1.08;
  letter-spacing: -1px;
}
.cw-hero-left h1 .cw-orange { color: #fa6600; font-weight: 600; }
.cw-hero-desc {
  font-size: 1.5em;
  color: #232323;
  margin: 0 0 10px 0;
  font-weight: 400;
  line-height: 1.5;
}
.cw-hero-desc b { font-weight: 800; }

/* --- BUSCADOR --- */
.cw-searchbar {
  margin-top: 28px;
  display: flex;
  align-items: stretch;
  max-width: 1300px;
  width: 100%;
}
.cw-searchbar-input-wrap {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: center;
}
.cw-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 2;
}
.cw-searchbar input {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 13px 0 0 13px;
  padding: 15px 18px 15px 44px;
  font-size: 1.05em;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  border-right: none;
  outline: none;
  transition: border .14s;
}
.cw-searchbar input:focus { border-color: #fa6600; }
.cw-searchbar button {
  border: none;
  border-radius: 0 13px 13px 0;
  background: #fa6600;
  color: #fff;
  font-weight: 700;
  font-size: 1.05em;
  padding: 0 28px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  white-space: nowrap;
  transition: background .14s;
  outline: none;
}
.cw-searchbar button:hover { background: #d94d00; }

/* --- BENEFICIOS AL PIE DE LA IMAGEN --- */
.cw-beneficios {
  width: 100%;
  background: rgba(255,255,255,0.93);
  border-top: 1.5px solid #f0e6d6;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}
.cw-beneficios-inner {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
}
.cw-beneficios-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 28px 70px;
  min-width: 0;
}
.cw-ben-ico {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.cw-ben-text { flex: 1; }
.cw-ben-text h3 {
  font-size: 1.4em;
  font-weight: 600;
  color: #232323;
  margin: 0 0 25px 0;
  line-height: 1.22;
}
.cw-ben-text p {
  font-size: 1.4em;
  color: #aea496;
  margin: 0;
  font-weight: 400;
}
.cw-beneficios-sep {
  width: 1.5px;
  background: #ede3d5;
  margin: 18px 0;
  flex-shrink: 0;
}

/* --- LISTADO HOTELES --- */
.cw-listado {
  background: #fcf7f3;
  padding: 54px 20px 48px 20px;
}
.cw-listado h2 {
  font-size: 3.0em;
  font-weight: 600;
  color: #232323;
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}
.cw-listado-sub {
  text-align: center;
  font-size: 1.8em;
  color: #908375;
  max-width: 1500px;
  margin: 0 auto 32px auto;
}
.cw-filtros {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cw-filtros select {
  background: #fff;
  color: #343434;
  border-radius: 9px;
  border: 1.4px solid #e3e0dd;
  font-size: 1.05em;
  padding: 13px 23px 13px 17px;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  min-width: 395px;
  outline: none;
  transition: border .15s;
  cursor: pointer;
}
.cw-filtros select:focus { border-color: #fa6600; }

.cw-listado-hoteles {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1700px;
  margin: 0 auto 36px auto;
}
.cw-hotel-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px #e8a95222;
  padding: 0 0 22px 0;
  min-width: 290px;
  max-width: 400px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.4px solid #f3ebdf;
  overflow: hidden;
}
.cw-hotel-card > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
.cw-hotel-card h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: #232323;
  margin: 16px 20px 2px 20px;
  height: 2.6em;
  line-height: 1.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cw-hotel-card > p {
  font-size: 1.0em;
  color: #7e7263;
  margin: 0 20px 10px 20px;
  height: 1.4em;
  line-height: 1.4em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cw-hotel-nivel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  border-radius: 8px;
  font-size: 1.02em;
  padding: 10px 0;
  width: 140px;
  margin: 0 20px 14px 20px;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}
.cw-hotel-nivel .star {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 2;
}
.cw-hotel-nivel span { position: relative; z-index: 2; }

.cw-hotel-nivel.bronce {
  background: linear-gradient(135deg,#c8824a 0%,#a0522d 20%,#cd7f32 40%,#8b4513 60%,#cd853f 80%,#a0522d 100%);
  color: #fff8f0;
  border: 1.5px solid #8b4513;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.cw-hotel-nivel.bronce .star { fill:#fff8f0; filter:drop-shadow(0 1px 1px rgba(0,0,0,0.3)); }

.cw-hotel-nivel.oro {
  background: linear-gradient(135deg,#f5c518 0%,#e8a400 40%,#ffd700 60%,#c8860a 100%);
  color: #5a3a00;
  border: 1.5px solid #c8860a;
}
.cw-hotel-nivel.oro .star { fill: #5a3a00; }
.cw-hotel-nivel.oro::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 100%);
  z-index: 1;
  animation: shine-badge 2.5s ease-in-out infinite;
}

.cw-hotel-nivel.plata {
  background: linear-gradient(135deg,#d0d8e4 0%,#b0bec5 40%,#e8edf2 60%,#90a4ae 100%);
  color: #263238;
  border: 1.5px solid #90a4ae;
}
.cw-hotel-nivel.plata .star { fill: #263238; }
.cw-hotel-nivel.platino::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0) 100%);
  z-index: 1;
  animation: shine-badge 2s ease-in-out infinite;
}

@keyframes shine-badge {
  0%   { left: -100%; }
  50%  { left: 130%;  }
  100% { left: 130%;  }
}

.cw-cert-label {
  font-size: .65em !important;
  color: #b0a090;
  margin: 0 20px 6px 20px;
  font-weight: 500;
}
.cw-cert-label-fecha { margin-top: auto; }
.cw-cert-areas {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px 10px;
  margin: 0 20px 25px 20px;
  width: calc(100% - 40px);
  padding: 0;
  min-height: 96px;
  align-content: start;
}
.cw-cert-area {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: .85em;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.cw-cert-area img {
  width: 26px; height: 26px;
  object-fit: contain;
  opacity: 0.7;
  flex-shrink: 0;
}
.cw-hotel-fecha {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #95846b;
  font-size: .97em;
  margin: 0 20px 16px 20px;
}
.cw-hotel-fecha img { width: 22px; height: 22px; }
.cw-cert-spacer { flex: 1; }
.cw-card-btn {
  display: block;
  width: calc(100% - 40px);
  margin: auto 20px 0 20px;
  border: 1.7px solid #e8c898;
  border-radius: 9px;
  background: #fff;
  color: #b78736;
  font-weight: 700;
  padding: 12px 0;
  font-size: 1.05em;
  cursor: pointer;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  text-align: center;
  transition: background .15s, color .15s;
}
.cw-card-btn:hover { background: #fa6600; color: #fff; border-color: #fa6600; }
.cw-listado-mas {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 10px auto 0 auto;
  padding: 14px 0;
  background: #fa6600;
  border: 2px solid #fa6600;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  font-size: 1.06em;
  cursor: pointer;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  transition: background .14s, color .14s;
  text-decoration: none !important;
  text-align:center !important;
}
.cw-listado-mas:hover { background: #fff; color: #fa6600; }

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 1100px) {
  .cw-header-inner { padding: 0 16px; }
  .cw-hero-content  { padding: 120px 20px 0 20px; }
  .cw-beneficios-inner { padding: 0 8px; }
}
@media (max-width: 860px) {
  .cw-nav { gap: 14px; }
  .cw-hero-bg { min-height: 100vh; }
  .cw-hero-left h1 { font-size: 2.1em; }
  .cw-beneficios-inner { flex-wrap: wrap; }
  .cw-beneficios-item  { flex: 1 1 45%; }
  .cw-beneficios-sep   { display: none; }
  .cw-hero-sup{margin-bottom:50px; font-size:.50em;
}
}
@media (max-width: 600px) {
  .cw-hero-bg  { min-height:100vh; }
  .cw-hero-left { max-width: 100%; }
  .cw-hero-left h1  { font-size: 1.5em; }
  .cw-hero-desc     { font-size: .90em; }
  .cw-searchbar     { max-width: 100%; font-size: .62em; }  
  .cw-beneficios { padding: 40px 0px 0px 0px; margin-top: -130px;}
  .cw-ben-ico { width: 34px; height: 34px; }
  .cw-ben-text h3 { font-size: 1.2em;  }
  .cw-ben-text p { font-size: 1.0em; }
  .cw-beneficios-item { flex: 1 1 100%; }
  .cw-listado-hoteles { flex-direction: column; align-items: center; }
  .cw-hotel-card      { max-width: 98vw; min-width: 0; }
  .cw-filtros         { flex-direction: column; align-items: center; }
  .cw-filtros select  { min-width: 80vw; }
}

/* ===== ¿QUÉ VALIDA ESTA CERTIFICACIÓN? ===== */
.cw-que-valida { 
	background: #f5ede0; 
	padding: 70px 0 80px 0; 
}
.cw-que-valida-inner { 
	max-width: 1780px; 
	margin: 0 auto; 
	padding: 0 48px; 
}
.cw-que-valida-header { 
	margin-bottom: 48px; 
}
.cw-que-valida-header h2 { 
	font-size: 3.0em; 
	font-weight: 700; 
	color: #2a1a0e; 
	margin: 0 0 16px 0; 
}
.cw-que-valida-header p  { 
	font-size: 1.8em !important; 
	color: #6b5a4e; max-width: 1780px; 
	line-height: 1.1; margin: 0; 
}
.cw-que-valida-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cw-valida-card {
  background: #faf3ea;
  border-radius: 16px;
  padding: 36px 28px 32px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  border: 1.5px solid #ecdcc8;
  transition: box-shadow .2s;
}
.cw-valida-card:hover { box-shadow: 0 6px 24px rgba(200,120,40,0.10); }
.cw-valida-ico { margin-bottom: 28px; }
.cw-valida-ico img { width: 92px; height: 92px; object-fit: contain; }
.cw-valida-card h3 { font-size: 1.4em; font-weight: 700; color: #2a1a0e; margin: 0 0 14px 0; line-height: 1.35; text-align: center; }
.cw-valida-card p  { font-size: 1.35em; color: #7a6455; line-height: 1.6; margin: 0; text-align: center; }
@media (max-width: 1000px) { 
	.cw-que-valida-grid { grid-template-columns: repeat(2,1fr); } 
}
@media (max-width: 580px)  { 
	.cw-que-valida-grid { grid-template-columns: 1fr; } 
	.cw-que-valida-inner { padding: 0 20px; } 
	.cw-que-valida-header h2 { font-size: 2.0em;}
	.cw-que-valida-header p  { font-size: 1.2em !important; }	
}

/* ===== ¿POR QUÉ CONSULTAR ESTE PORTAL? ===== */
.cw-por-que { background: #fff; padding: 70px 0; }
.cw-por-que-inner {
  max-width: 1780px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cw-por-que-left h2    { 
	font-size: 3.0em; 
	font-weight: 600; 
	color: #1a1a1a; 
	margin: 0 0 20px 0; 
	line-height: 1.15;
}
.cw-por-que-left > p   
	{ font-size: 1.8em; 
	color: #888; 
	line-height: 1.65; 
	margin: 0 0 48px 0; 
	max-width: 880px; 
}
.cw-por-que-steps      { display: flex; flex-direction: column; gap: 20px; }
.cw-pq-step            { display: flex; align-items: center; gap: 0; }
.cw-pq-num {
  width: 82px; height: 82px; min-width: 82px;
  border-radius: 50%; background: #fa6600; color: #fff;
  font-size: 2.3em; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; box-shadow: 0 4px 14px rgba(250,102,0,0.25);
}
.cw-pq-line  { height: 1.5px; width: 32px; background: #e0d0c0; flex-shrink: 0; }
.cw-pq-box   { flex: 1; background: #fff; border: 1.5px solid #ecdcc8; border-radius: 12px; padding: 20px 28px; font-size: 1.8em; font-weight: 600; color: #1a1a1a; line-height: 1.4; text-align: center; }
.cw-por-que-right       { display: flex; justify-content: center; align-items: center; }
.cw-por-que-right img   { width: 100%; max-width: 480px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.18)); }
@media (max-width: 1000px) { 
	.cw-por-que-inner { grid-template-columns: 1fr; gap: 48px; } 
	.cw-por-que-right { order: -1; } 
	.cw-por-que-right img { max-width: 340px; } 
}
@media (max-width: 580px)  { 
	.cw-por-que-inner { padding: 0 20px; } 
	.cw-por-que-left h2 { font-size: 1.7em; }
	.cw-por-que-left > p { font-size: 1.0em;}	
	.cw-pq-box { font-size: .97em; padding: 16px 18px; } 
}

/* ===== SECCIÓN MAPA ===== */
.cw-mapa { background: #f5f0ea; padding: 60px 0 70px 0; position: relative; z-index: 0; }
.cw-mapa-header { text-align: center; margin-bottom: 36px; padding: 0 20px; position: relative; z-index: 1; }
.cw-mapa-header h2 { font-size: 3.0em; font-weight: 700; color: #1a1a1a; margin: 0; }
.cw-mapa-wrap { max-width: 1780px; margin: 0 auto; padding: 0 48px; position: relative; }
.cw-mapa-contenedor {
  position: relative; width: 100%; height: 620px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  border: 1.5px solid #e8ddd0;
}
.cw-mapa-contenedor {
  position: relative;
}

.cw-mapa-overlay-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: .95em;
  font-weight: 600;
  letter-spacing: .5px;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s;
}

.cw-mapa-contenedor.activo .cw-mapa-overlay-hint {
  opacity: 0;
}
#mapa-hoteles { width: 100%; height: 100%; z-index: 0; }
.leaflet-container { z-index: 0 !important; }
.leaflet-pane, .leaflet-top, .leaflet-bottom { z-index: 1 !important; }

.cw-map-marker-wrap { background: none !important; border: none !important; cursor: pointer; overflow: visible !important; transition: transform .15s; }
.cw-map-marker-wrap:hover { transform: scale(1.25); }
.cw-map-marker-wrap svg   { overflow: visible !important; display: block; }

.cw-map-tooltip {
  background: #fff !important; border: 1.5px solid #ecdcc8 !important;
  border-radius: 6px !important; box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  color: #1a1a1a !important; font-family: 'Geist','Montserrat',Arial,sans-serif !important;
  font-size: .78em !important; font-weight: 700 !important;
  padding: 4px 8px !important; white-space: nowrap !important;
}
.cw-map-tooltip::before { display: none !important; }

.cw-map-leyenda {
  position: absolute; bottom: 32px; left: 14px; z-index: 999;
  background: #fff; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  padding: 14px 18px; display: flex; flex-direction: column; gap: 10px;
  border: 1.5px solid #ecdcc8; pointer-events: none;
  font-family: 'Geist','Montserrat',Arial,sans-serif;
}
.cw-map-leyenda-title { font-size: .75em; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.cw-map-leyenda-item  { display: flex; align-items: center; gap: 10px; }
.cw-map-leyenda-texto strong { display: block; font-size: .9em; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.cw-map-leyenda-texto span   { font-size: .78em; color: #aaa; }

.cw-leaflet-popup .leaflet-popup-content-wrapper { border-radius: 12px !important; box-shadow: 0 8px 24px rgba(0,0,0,0.13) !important; padding: 0 !important; overflow: hidden; }
.cw-leaflet-popup .leaflet-popup-content { margin: 0 !important; width: auto !important; }
.cw-leaflet-popup .leaflet-popup-tip { background: #fff !important; }
.cw-map-popup { font-family: 'Geist','Montserrat',Arial,sans-serif; padding: 14px 18px; display: flex; flex-direction: column; gap: 6px; min-width: 180px; }
.cw-map-popup strong { font-size: 1em; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.cw-map-ubicacion { font-size: .82em; color: #aaa; }
.cw-map-nivel { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 6px; font-size: .82em; font-weight: 700; width: fit-content; }
.cw-map-link  { color: #fa6600; font-weight: 700; font-size: .9em; text-decoration: none; margin-top: 2px; }
.cw-map-link:hover { text-decoration: underline; }

@media (max-width: 860px) { .cw-mapa-contenedor { height: 380px; } .cw-mapa-wrap { padding: 0 16px; } .cw-mapa-header h2 { font-size: 1.5em; } }
@media (max-width: 580px) { .cw-mapa-contenedor { height: 280px; } }

/* ══ SECCIÓN DISTINTIVO + CTA ══ */
.cw-distintivo-cta { background: #1e0f00; position: relative; overflow: hidden; padding: 80px 0 70px 0; }
.cw-distintivo-cta::before {
  content: ''; position: absolute; top: 0; left: 30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(160,80,0,0.22) 0%,transparent 70%);
  pointer-events: none; z-index: 0;
}
.cw-cta-persona {
  position: absolute; right: -30px; bottom: 0;
  height: 50%; width: auto; object-fit: contain; object-position: bottom right;
  z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to right,transparent 0%,rgba(0,0,0,0.4) 25%,black 50%);
  mask-image: linear-gradient(to right,transparent 0%,rgba(0,0,0,0.4) 25%,black 50%);
}
.cw-distintivo-cta-inner { 
	position: relative; 
	z-index: 2; 
	max-width: 1780px; 
	margin: 0 auto; 
	padding: 0 48px; 
}
.cw-dist-top { 
	text-align: center; 
	margin-bottom: 70px; 
}
.cw-dist-top h2 { 
	font-size: 3.0em; 
	font-weight: 600; 
	color: #fff; 
	margin: 0 0 16px 0; 
	line-height: 1.2; 
}
.cw-dist-top p  { 
	font-size: 1.4em; 
	color: rgba(255,255,255,0.65); 
	line-height: 1.7; 
	margin: 0 0 48px 0; 
}
.cw-dist-sello  { display: flex; justify-content: center; }
.cw-dist-sello img { width: 420px; max-width: 90%; filter: drop-shadow(0 20px 60px rgba(200,140,0,0.5)) drop-shadow(0 4px 20px rgba(0,0,0,0.4)); transition: transform .3s, filter .3s; }
.cw-dist-sello img:hover { transform: scale(1.04); filter: drop-shadow(0 28px 70px rgba(200,140,0,0.65)) drop-shadow(0 6px 24px rgba(0,0,0,0.5)); }
.cw-dist-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; width: 60%; }
.cw-dist-bottom .cw-cta-left h2 { font-size: 2em; font-weight: 600; color: #fff; line-height: 1.3; margin: 0 0 14px 0; }
.cw-dist-bottom .cw-cta-left p  { font-size: 1.6em; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0 0 24px 0; }
.cw-cta-top {
	color:#fff;
	font-size:3.0em;
}
.cw-cta-beneficios { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cw-cta-beneficios li { display: flex; align-items: center; gap: 10px; font-size: 1.4em; color: rgba(255,255,255,0.82); font-weight: 500; }
.cw-cta-beneficios li svg { flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(250,102,0,0.6)); }
.cw-cta-form-wrap { background: rgba(255,255,255,0.50); border-radius: 16px; padding: 28px 26px 24px; box-shadow: 0 16px 56px rgba(0,0,0,0.4); }
.cw-cta-form-wrap h3 { font-size: 1em; font-weight: 700; color: #1a1a1a; margin: 0 0 20px 0; }
.cw-cta-form  { display: flex; flex-direction: column; gap: 11px; }
.cw-cta-field { display: flex; flex-direction: column; gap: 4px; }
.cw-cta-field label { font-size: .70em; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .5px; }
.cw-cta-field input { border: 1.5px solid #e8ddd0; border-radius: 8px; padding: 9px 12px; font-size: .9em; font-family: 'Geist',Arial,sans-serif; color: #1a1a1a; outline: none; transition: border-color .2s; width: 100%; box-sizing: border-box; }
.cw-cta-field input:focus       { border-color: #fa6600; }
.cw-cta-field input::placeholder { color: #ccc; }
.cw-cta-btn { width: 100%; padding: 13px; background: #fa6600; color: #fff; border: none; border-radius: 10px; font-size: .97em; font-weight: 700; font-family: 'Geist',Arial,sans-serif; cursor: pointer; transition: background .2s,transform .15s; margin-top: 4px; }
.cw-cta-btn:hover { background: #e05a00; transform: translateY(-1px); }
.cw-cta-whatsapp { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    margin-top: 16px; 
    flex-wrap: wrap; 
}
.cw-cta-whatsapp span { 
    font-size: 1.1em; 
    color: rgba(255,255,255,0.5); 
    
}
.cw-cta-wa-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: #25d366; 
    color: #fff; 
    padding: 9px 18px; 
    border-radius: 10px; 
    font-size: .88em; 
    font-weight: 700; 
    text-decoration: none; 
    transition: background .2s,transform .15s; 
    
}
.cw-cta-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
@media (max-width: 900px) { 
	.cw-dist-bottom { grid-template-columns: 1fr; gap: 40px; width: 100%; } 
	.cw-dist-top h2 { font-size: 1.8em; } 
	.cw-dist-sello img { width: 300px; } 
	.cw-cta-persona { display: none; } 
}
@media (max-width: 580px) { 
	.cw-distintivo-cta-inner { padding: 0 20px; } 
	.cw-dist-top h2 { font-size: 1.5em; }
	.cw-cta-left { font-size: .80em;}
	.cw-cta-top { font-size:1.8em; }	
	.cw-dist-sello img { width: 240px; } 
}

/* ══ SELECTOR DE IDIOMA ══ */
#lang-selector { position: relative !important; display: inline-block !important; z-index: 9999; }
#lang-current {
  display: inline-flex !important; align-items: center; gap: 6px;
  background: #fff5ee; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 10px;
  padding: 7px 14px; color: #333; font-size: .88em; font-weight: 600;
  cursor: pointer; white-space: nowrap; font-family: 'Geist',Arial,sans-serif;
  transition: background .2s,border-color .2s; line-height: 1;
}
#lang-current:hover { background: #fff5ee; border-color: #fa6600; color: #fa6600; }
#lang-menu {
  display: none !important; position: absolute !important;
  top: calc(100% + 8px) !important; right: 0 !important; left: auto !important;
  background: #fff !important; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); border: 1.5px solid #f0e6d6;
  overflow: hidden; z-index: 99999 !important; min-width: 160px; padding: 4px 0;
}
#lang-menu.open { display: block !important; animation: langMenuIn .15s ease; }
@keyframes langMenuIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
#lang-menu button {
  display: flex !important; align-items: center; gap: 10px;
  width: 100% !important; padding: 10px 16px !important;
  background: none !important; border: none !important;
  border-bottom: 1px solid #faf0e8 !important;
  font-size: .9em; font-weight: 500; color: #333 !important;
  cursor: pointer; text-align: left; font-family: 'Geist',Arial,sans-serif;
  transition: background .15s,color .15s; margin: 0 !important;
  border-radius: 0 !important; box-shadow: none !important;
}
#lang-menu button:last-child  { border-bottom: none !important; }
#lang-menu button:hover       { background: #fff5ee !important; color: #fa6600 !important; }
#lang-menu button.activo      { color: #fa6600 !important; font-weight: 700; background: #fff5ee !important; }

/* ══ FOOTER ══ */
.cw-footer { 
	background: #1a1a1a; 
	color: #fff; 
	padding: 0; 
	margin-top: 0; 
}
.cw-footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 48px 48px; display: grid; grid-template-columns: 1.6fr 1px 1fr 1px 1.2fr; gap: 0 48px; align-items: start; }
.cw-footer-sep   { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; min-height: 120px; }
.cw-footer-brand { display: flex; flex-direction: column; gap: 0; padding-right: 20px; }
.cw-footer-logo  { height: 48px; width: auto; object-fit: contain; margin-bottom: 60px; display: block; }
.cw-footer-tagline { font-size: 1.5em; font-weight: 400; color: #fff; line-height: 1.5; margin: 0; }
.cw-footer-tagline .cw-orange { color: #fa6600 !important; font-weight: 700; }
.cw-footer-col   { display: flex; flex-direction: column; gap: 0; padding-left: 8px; }
.cw-footer-col-title { font-size: .72em; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 24px; display: block; }
.cw-footer-col a { color: #fff; text-decoration: none; font-size: 1.15em; font-weight: 400; line-height: 1.4; margin-bottom: 18px; transition: color .15s; display: block; }
.cw-footer-col a:hover { color: #fa6600; }
.cw-footer-dato  { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.cw-footer-dato-label { font-size: .72em; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); }
.cw-footer-dato-val   { font-size: 1.15em; font-weight: 400; color: #fff; }
.cw-footer-redes { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.cw-footer-redes a { color: #fff; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background .15s,color .15s,transform .15s; text-decoration: none; }
.cw-footer-redes a:hover { color: #fa6600; transform: translateY(-2px); }
.cw-footer-copy { text-align: center; padding: 18px 20px; font-size: .78em; color: rgba(255,255,255,0.3); border-top: 1px solid rgba(255,255,255,0.07); }
@media (max-width: 900px) { .cw-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 40px 32px 36px; } .cw-footer-sep { display: none; } .cw-footer-brand { grid-column: 1/-1; } .cw-footer-logo { margin-bottom: 24px; } }
@media (max-width: 580px) { .cw-footer-inner { grid-template-columns: 1fr; padding: 32px 20px 28px; gap: 32px; } }

/* ══ CARDS MÓVIL — fix ancho y contenido cortado ══ */
@media (max-width: 768px) {

  .cw-listado-hoteles {
    flex-direction: column;
    align-items: stretch;      /* ← todas al mismo ancho */
    padding: 0 12px;
    gap: 20px;
  }

  .cw-hotel-card {
    min-width: 0;
    max-width: 100%;           /* ← ocupa todo el ancho disponible */
    width: 100%;
    flex: none;                /* ← evita que flex distorsione */
  }

  /* Nombre — permite 2 líneas pero sin altura fija que recorte */
  .cw-hotel-card h3 {
    height: auto;
    -webkit-line-clamp: 2;
  }

  /* Áreas — sin altura mínima fija */
  .cw-cert-areas {
    min-height: unset;
  }

  /* Botón siempre visible */
  .cw-card-btn {
    margin-top: 12px;
  }

  /* Filtros — una columna, ancho completo */
  .cw-filtros {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px;
    gap: 10px;
  }

  .cw-filtros select {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {

  /* Leyenda — más pequeña y compacta */
  .cw-map-leyenda {
    bottom: 8px;
    left: 8px;
    padding: 8px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .cw-map-leyenda-title {
    font-size: .62em;
    margin-bottom: 0;
  }

  .cw-map-leyenda-item {
    gap: 6px;
  }

  .cw-map-leyenda-item svg {
    width: 16px !important;
    height: 16px !important;
  }

  .cw-map-leyenda-texto strong {
    font-size: .72em;
  }

  .cw-map-leyenda-texto span {
    display: none; /* oculta el subtexto descriptivo en móvil */
  }
}
#btn-instalar-app {
  display: none;
  align-items: center;
  gap: 7px;
  background: #fa6600;
  color: #fff;
  border: none;
  border-radius: 10px;
  left:10px;
  padding: 8px 6px;
  font-size: .88em;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Geist', Arial, sans-serif;
  transition: background .2s;
  white-space: nowrap;
  width: 110px !important;
  text-align: center;
}
#btn-instalar-app:hover { background: #d94d00; }

@media (max-width: 768px) {
  #btn-instalar-app {
    
   
  }
}
.cw-end{
	background: #1a1a1a; 
	color:#fff; 
	font-size:1.8em; 
	padding: 0 110px
}	
@media (max-width: 900px) {
	.cw-end{
		padding: 0 11px;
		font-size:1.0em;
	} 
}