/* ===== HEADER SÓLIDO (páginas internas) ===== */
.cw-header-solid {
  position: relative !important;
  background: #fff !important;
  position: fixed !important;   /* ← agrega esto */
  border-bottom: 1.5px solid #f0e6d6 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cw-header-solid .cw-logo {
  margin-top: 0;
  height: 40px;
}

.cw-header-solid .cw-nav a {
  color: #343434 !important;
}

.cw-header-solid .cw-nav a.active {
  color: #fa6600 !important;
  font-weight: 700;
}

/* ===== HERO PEQUEÑO ===== */
.cw-hoteles-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url('../../img/cabecera-hoteles.png') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.cw-hoteles-hero-content {
  position: relative;
  z-index: 1;
  padding: 0px 60px 40px 60px;
}

.cw-hoteles-hero-content h1 {
  font-size: 3.0em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.cw-hoteles-hero-content p {
  font-size: 1.8em;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* ===== SECCIÓN LISTADO ===== */
.cw-hoteles-listado {
  background: #fcf7f3;
  padding: 40px 60px 60px 60px;
  max-width: 1780px;
  margin: 0 auto;
}

/* FILTROS */
.cw-hoteles-filtros {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cw-hoteles-filtros select {
  background: #fff;
  color: #343434;
  border-radius: 9px;
  border: 1.4px solid #e3e0dd;
  font-size: .97em;
  padding: 11px 20px 11px 14px;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  min-width: 180px;
  flex: 1;
  outline: none;
  cursor: pointer;
  transition: border .15s;
}

.cw-hoteles-filtros select:focus { border-color: #fa6600; }

/* META */
.cw-hoteles-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.cw-hoteles-meta span {
  font-size: .9em;
  color: #aaa;
}

.cw-hoteles-orden {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9em;
  color: #888;
}

.cw-hoteles-orden select {
  border: none;
  background: transparent;
  font-family: 'Geist', 'Montserrat', Arial, sans-serif;
  color: #343434;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

/* GRID 3 COLUMNAS */
.cw-hoteles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.cw-footer {
  background: #2b1500;
  padding: 56px 0 40px 0;
}

.cw-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.cw-footer-brand {}

.cw-footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 05px;
  margin-left: 25%;
}

.cw-footer-tagline {
  font-size: 1.5em;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin: 0;
}

.cw-footer-tagline strong {
  color: #fff;
  font-weight: 700;
}

/* Columnas */
.cw-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cw-footer-col-title {
  font-size: .75em;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.cw-footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: .95em;
  transition: color .15s;
}

.cw-footer-col a:hover { color: #fa6600; }

.cw-footer-dato {
  display: flex;
  flex-direction: column;
  font-size: .92em;
  color: rgba(255,255,255,0.75);
}

.cw-footer-dato strong {
  font-size: .75em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

/* Redes sociales */
.cw-footer-redes {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.cw-footer-redes a {
  color: rgba(255,255,255,0.6);
  transition: color .15s;
}

.cw-footer-redes a:hover { color: #fa6600; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cw-hoteles-listado { padding: 30px 30px 50px 30px; }
  .cw-hoteles-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .cw-hoteles-hero { width: 100%; height: 200px; }
  .cw-hoteles-hero-content { padding: 0 24px 30px 24px; }
  .cw-hoteles-hero-content h1 { font-size: 2em; }
  .cw-hoteles-hero-content p { font-size: .95em; }
  .cw-hoteles-listado { padding: 20px 16px 40px 16px; }
  .cw-hoteles-listado h1{ font-size:.95em; }
  .cw-hoteles-grid    { grid-template-columns: 1fr; }
  .cw-footer-inner    {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 36px;
  }
}