/* ─────────────────────────────────────────────────────────────────
   uth-premium.css
   Estilos compartidos de la línea visual premium alineada con
   urbantecrealty.com:
     - Body crema (#faf6ee) — "papel de calidad"
     - Header crema con logo Playfair burdeos y nav letter-spaced
     - Footer negro con 3 columnas, encabezados burdeos, copyright
   Aplicado en: contacto.html, gestor.html, acceso.html, habitacionx.html
   (index.html lo tiene inline porque cambia más a menudo).
   Creado: 2026-05-26 (FASE 3 ASPECTO, tarea #246)
   ───────────────────────────────────────────────────────────────── */

/* Variable de marca para que toda la web hable el mismo idioma cromático */
:root {
  --uth-cream: #faf6ee;
  --uth-cream-border: #ece4d3;
  --uth-burgundy: #6f1d1b;
  --uth-burgundy-soft: #9c2a2a;
  --uth-gold: #c9a86a;
  --uth-ink: #1a1a1a;
  --uth-paper: #fff;
}

/* ──── BODY ──── */
body.uth-premium {
  background: var(--uth-cream) !important;
  /* Redefinir variables propias de detalle.css (habitacionx) para que la
     ficha también herede crema en lugar del azul-grisáceo original.   */
  --color-fondo: var(--uth-cream) !important;
}

/* ──── HEADER ──── */
/* Tamaño canónico del header: igual al de la home pública (index.html principal).
   padding más estrecho y gap más pequeño del nav para que el header sea
   compacto y consistente en todas las páginas. Aplicado con !important para
   que gane sobre cualquier regla inline de las páginas individuales. */
body.uth-premium header,
body.uth-premium header.navbar {
  background: var(--uth-cream) !important;
  color: var(--uth-burgundy) !important;
  border-bottom: 1px solid var(--uth-cream-border) !important;
  box-shadow: none !important;
  /* Mismo padding y altura que la home principal (.uth-topbar header).
     --header-offset: 50px es el valor que usa index.html. */
  padding: 0.4rem 1.25rem !important;
  min-height: 50px !important;
  box-sizing: border-box !important;
}
body.uth-premium header nav {
  gap: 1.6rem !important;
}
body.uth-premium header .logo {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-size: 1.75rem !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: baseline !important;
  font-weight: 600 !important;
}
body.uth-premium header .logo .logo-bold {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  color: #1a1a1a !important;
}
body.uth-premium header .logo .logo-light {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  margin-left: 0.06em !important;
  color: var(--uth-burgundy) !important;
}
body.uth-premium header nav a {
  color: #2a2a2a !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.25s !important;
}
body.uth-premium header nav a { position: relative !important; }
body.uth-premium header nav a:hover { color: var(--uth-burgundy) !important; text-decoration: none !important; }
body.uth-premium header nav a.active { color: var(--uth-burgundy) !important; text-decoration: none !important; }

/* Subrayado fino editorial DEBAJO de cada item del menú.
   Aparece al hacer hover y se mantiene en la página activa.
   Anima desde el centro hacia los lados.                       */
body.uth-premium header nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--uth-burgundy);
  transition: left 0.25s ease, right 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
body.uth-premium header nav a:hover::after,
body.uth-premium header nav a:focus-visible::after,
body.uth-premium header nav a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}
body.uth-premium .lang-switch button {
  background: transparent !important;
  border: 1px solid rgba(111,29,27,0.35) !important;
  color: var(--uth-burgundy) !important;
}
body.uth-premium .lang-switch button.lang-active {
  background: var(--uth-burgundy) !important;
  color: var(--uth-cream) !important;
  border-color: var(--uth-burgundy) !important;
}
body.uth-premium .menu-toggle { color: var(--uth-burgundy) !important; }

/* ──── HERO EDITORIAL (gestor, contacto, etc.) ──── */
/* En móvil el .hero original tiene height: 30vh + min-height: 230-250px
   que es muy bajo para el nuevo contenido (tag + h1 grande + lead + CTA).
   Forzamos altura automática y reducimos tamaños tipográficos.        */
body.uth-premium .hero-premium {
  height: auto !important;
  min-height: 0 !important;
  padding: 5rem 1.25rem 3rem !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.uth-premium .hero-premium > div {
  position: relative;
  z-index: 3;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}
body.uth-premium .hero-premium h1 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.7rem, 4.6vw, 3.8rem) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.12 !important;
  margin: 0 auto 1.2rem !important;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.45) !important;
  text-align: center !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
@media (min-width: 768px) {
  body.uth-premium .hero-premium {
    padding: 6rem 2rem 4rem !important;
    min-height: 360px !important;
  }
  body.uth-premium .hero-premium h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.8rem) !important;
    line-height: 1.08 !important;
  }
}
@media (max-width: 540px) {
  body.uth-premium .hero-premium { padding: 4rem 0.9rem 2.4rem !important; }
  body.uth-premium .hero-premium h1 { font-size: 1.55rem !important; line-height: 1.15 !important; }
  body.uth-premium .hero-premium p { font-size: 0.9rem !important; max-width:none !important; }
  body.uth-premium .hero-premium .hero-section-tag {
    font-size: 0.6rem !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 0.8rem !important;
  }
}
body.uth-premium .hero-premium h1 em {
  font-style: italic !important;
  font-weight: 500 !important;
  color: #f0c992 !important; /* dorado claro sobre fondo oscuro */
}
body.uth-premium .hero-premium p {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  max-width: 640px !important;
  margin: 0 auto 1.6rem !important;
  opacity: 0.92;
}
/* Tag editorial "§ GESTIÓN DE PROPIEDADES" sobre el h1 */
body.uth-premium .hero-section-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f0c992;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}
body.uth-premium .hero-section-tag .tag-mark {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: #f0c992;
  line-height: 1;
  letter-spacing: 0;
}
/* Botón "MÁS INFORMACIÓN" estilo Realty: rectangular, sólido, letter-spaced */
body.uth-premium .btn-premium {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
  padding: 0.95rem 2.1rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background-color .25s, color .25s, border-color .25s !important;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
body.uth-premium .btn-premium::after {
  content: '↗';
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
}
body.uth-premium .btn-premium:hover {
  background: var(--uth-burgundy) !important;
  border-color: var(--uth-burgundy) !important;
}

/* ──── SECCIONES EDITORIALES (gestor pasos, pilares…) ──── */
/* Intro de sección con tag editorial + título serif */
body.uth-premium .section-intro-premium {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
body.uth-premium .section-intro-premium .hero-section-tag {
  color: var(--uth-burgundy) !important;
  margin-bottom: 0.9rem;
}
body.uth-premium .section-intro-premium .hero-section-tag .tag-mark {
  color: var(--uth-gold) !important;
}
body.uth-premium .section-title-premium,
body.uth-premium .section-intro-premium h2 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem) !important;
  color: #1a1a1a !important;
  line-height: 1.18 !important;
  letter-spacing: -0.005em !important;
  margin: 0 auto !important;
  max-width: 880px;
  text-shadow: none !important;
}
body.uth-premium .section-intro-premium h2 em {
  font-style: italic !important;
  color: var(--uth-burgundy) !important;
  font-weight: 500 !important;
}

/* MÉTODO — 4 pilares estilo Realty.
   Importante: el CSS inline original define .info-section como grid
   auto-fit, lo que estaba poniendo el title-intro y los 4 pilares en
   la misma fila. Forzamos block para que el intro vaya arriba y el
   contenedor de pilares debajo, con su propio grid uniforme.        */
body.uth-premium .info-section-premium {
  background: var(--uth-cream) !important;
  padding: 4rem 2rem 4.5rem !important;
  display: block !important;
  max-width: none !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
body.uth-premium .info-section-premium .info-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  border: 1px solid var(--uth-cream-border);
  background: #fbf8f1;
}
body.uth-premium .info-block-premium {
  position: relative;
  padding: 2.2rem 1.6rem 2rem !important;
  background: transparent !important;
  border-right: 1px solid var(--uth-cream-border);
  transition: background-color .25s;
  text-align: left !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
body.uth-premium .info-block-premium:hover {
  transform: none !important;
}
body.uth-premium .info-block-premium:last-child { border-right: none; }
body.uth-premium .info-block-premium:hover { background: rgba(201,168,106,0.06) !important; }
body.uth-premium .info-block-premium .info-block-num {
  display: block;
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--uth-burgundy);
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
  line-height: 1;
}
body.uth-premium .info-block-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 1.6rem; right: 1.6rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium .info-block-premium h3 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-size: 1.18rem !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  margin: 0 0 0.8rem 0 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.005em !important;
  background: none !important;
  text-shadow: none !important;
  border: none !important;
}
body.uth-premium .info-block-premium p {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.83rem !important;
  font-weight: 400 !important;
  color: #5a5a5a !important;
  line-height: 1.55 !important;
  text-align: justify;
  hyphens: auto;
  margin: 0 !important;
}
body.uth-premium .info-block-premium a {
  color: inherit !important;
  text-decoration: none !important;
  display: block;
}
@media (max-width: 900px) {
  body.uth-premium .info-section-premium .info-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  body.uth-premium .info-block-premium:nth-child(2) { border-right: none; }
  body.uth-premium .info-block-premium:nth-child(1),
  body.uth-premium .info-block-premium:nth-child(2) { border-bottom: 1px solid var(--uth-cream-border); }
}
@media (max-width: 560px) {
  body.uth-premium .info-section-premium .info-container { grid-template-columns: 1fr !important; }
  body.uth-premium .info-block-premium { border-right: none !important; border-bottom: 1px solid var(--uth-cream-border); }
  body.uth-premium .info-block-premium:last-child { border-bottom: none; }
}

/* PASOS — quitar fondo azul, todo crema y números 01-05 en serif */
body.uth-premium .steps-premium {
  background: var(--uth-cream) !important;
  padding: 4.5rem 2rem 5rem !important;
}
body.uth-premium .steps-premium .steps-grid {
  max-width: 1320px !important;
  margin: 0 auto !important;
}
body.uth-premium .steps-premium .steps-row {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.4rem !important;
}
body.uth-premium .steps-premium .step-premium {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 2rem 1.5rem 2.1rem !important;
  box-shadow: 0 1px 2px rgba(60,40,20,0.04) !important;
  text-align: left !important;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
body.uth-premium .steps-premium .step-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium .steps-premium .step-premium:hover {
  box-shadow: 0 6px 20px rgba(60,40,20,0.10) !important;
}
body.uth-premium .steps-premium .step-premium .step-number {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-size: 1.85rem !important;
  font-weight: 500 !important;
  color: var(--uth-burgundy) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 0.85rem 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.005em !important;
  padding: 0 !important;
  display: inline-block !important;
}
body.uth-premium .steps-premium .step-premium h3 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  color: #1a1a1a !important;
  line-height: 1.22 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 0.75rem 0 !important;
  text-align: left !important;
  text-shadow: none !important;
  background: none !important;
}
body.uth-premium .steps-premium .step-premium p {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: #5a5a5a !important;
  line-height: 1.55 !important;
  text-align: justify;
  hyphens: auto;
  margin: 0 !important;
}
@media (max-width: 1100px) {
  body.uth-premium .steps-premium .steps-row { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 720px) {
  body.uth-premium .steps-premium .steps-row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  body.uth-premium .steps-premium .steps-row { grid-template-columns: 1fr !important; }
}

/* ──── main.content-premium: romper el grid 2-col de contacto.html ────
   El inline original define main.content como grid 1fr 1fr con max-width
   900px. Forzamos block + ancho completo para que el formulario y la
   info usen el ancho full y los estilos premium funcionen.            */
body.uth-premium main.content-premium {
  display: block !important;
  max-width: none !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ──── FORMULARIO PREMIUM (más compacto) ──── */
body.uth-premium .form-section-premium {
  background: var(--uth-cream) !important;
  padding: 2.5rem 2rem 3rem !important;
}
body.uth-premium .form-section-premium .form-inner {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 24px rgba(60,40,20,0.06) !important;
  padding: 1.8rem 2rem 1.8rem !important;
  max-width: 560px !important;
  margin: 0 auto !important;
}
body.uth-premium .form-section-premium .hero-section-tag {
  display: flex !important;
  justify-content: center;
  color: var(--uth-burgundy) !important;
  margin-bottom: 0.4rem !important;
}
body.uth-premium .form-section-premium .hero-section-tag .tag-mark {
  color: var(--uth-gold) !important;
}
body.uth-premium .form-section-premium h2 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem) !important;
  color: #1a1a1a !important;
  text-align: center !important;
  line-height: 1.18 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 1.1rem 0 !important;
  text-shadow: none !important;
}
body.uth-premium .form-section-premium h2 em {
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--uth-burgundy) !important;
}
body.uth-premium .form-section-premium form {
  display: block !important;
}
body.uth-premium .form-section-premium label {
  display: block !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #5a5a5a !important;
  margin: 0.85rem 0 0.2rem !important;
}
body.uth-premium .form-section-premium input[type=text],
body.uth-premium .form-section-premium input[type=email],
body.uth-premium .form-section-premium input[type=tel],
body.uth-premium .form-section-premium textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 0.35rem 0 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.92rem !important;
  color: #1a1a1a !important;
  transition: border-color .2s !important;
  width: 100% !important;
  box-shadow: none !important;
}
body.uth-premium .form-section-premium input:focus,
body.uth-premium .form-section-premium textarea:focus {
  outline: none !important;
  border-bottom-color: var(--uth-burgundy) !important;
  box-shadow: none !important;
}
body.uth-premium .form-section-premium textarea {
  border: 1px solid var(--uth-cream-border) !important;
  padding: 0.55rem 0.7rem !important;
  min-height: 80px !important;
}
body.uth-premium .form-section-premium .word-count {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.66rem !important;
  color: #9a9a9a !important;
  text-align: right !important;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
body.uth-premium .form-section-premium button[type=submit] {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
  padding: 0.7rem 1.6rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background-color .25s, border-color .25s !important;
  width: 100%;
  margin-top: 1.1rem;
}
body.uth-premium .form-section-premium button[type=submit]:hover {
  background: var(--uth-burgundy) !important;
  border-color: var(--uth-burgundy) !important;
}
body.uth-premium .form-section-premium .checkbox,
body.uth-premium .form-section-premium .captcha-container {
  margin-top: 0.9rem !important;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}
body.uth-premium .form-section-premium .checkbox label,
body.uth-premium .form-section-premium .captcha-container label {
  display: inline !important;
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  font-size: 0.8rem !important;
  color: #5a5a5a !important;
  margin: 0 !important;
}
body.uth-premium .form-section-premium .checkbox a {
  color: var(--uth-burgundy) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ──── LOGIN PREMIUM (acceso.html agentes/propietarios) ────
   El main.content de acceso tiene grid 2col centrado max-width 900px.
   Sólo restilizamos cada .login-section-premium como card compacta;
   no tocamos el grid contenedor.                                     */
body.uth-premium .login-section-premium {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 24px rgba(60,40,20,0.06) !important;
  padding: 2rem 1.8rem 1.8rem !important;
  max-width: 380px !important;
  margin: 0 auto !important;
  position: relative;
  width: 100%;
}
body.uth-premium .login-section-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium .login-section-premium .hero-section-tag {
  display: flex !important;
  justify-content: center;
  color: var(--uth-burgundy) !important;
  margin: 0 0 0.6rem 0 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
}
body.uth-premium .login-section-premium .hero-section-tag .tag-mark {
  color: var(--uth-gold) !important;
}
body.uth-premium .login-section-premium h2 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem) !important;
  color: #1a1a1a !important;
  text-align: center !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 1.4rem 0 !important;
  text-shadow: none !important;
}
body.uth-premium .login-section-premium h2 em {
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--uth-burgundy) !important;
}
body.uth-premium .login-section-premium form {
  display: block !important;
}
body.uth-premium .login-section-premium label {
  display: block !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #5a5a5a !important;
  margin: 0.9rem 0 0.2rem !important;
}
body.uth-premium .login-section-premium input[type=text],
body.uth-premium .login-section-premium input[type=email],
body.uth-premium .login-section-premium input[type=password] {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 0.45rem 0 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.95rem !important;
  color: #1a1a1a !important;
  transition: border-color .2s !important;
  width: 100% !important;
  box-shadow: none !important;
}
body.uth-premium .login-section-premium input:focus {
  outline: none !important;
  border-bottom-color: var(--uth-burgundy) !important;
  box-shadow: none !important;
}
body.uth-premium .login-section-premium button[type=submit] {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
  padding: 0.85rem 1.6rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background-color .25s, border-color .25s !important;
  width: 100%;
  margin-top: 1.3rem;
}
body.uth-premium .login-section-premium button[type=submit]:hover {
  background: var(--uth-burgundy) !important;
  border-color: var(--uth-burgundy) !important;
}
body.uth-premium .login-section-premium a[id^="forgotPassword"] {
  color: var(--uth-burgundy) !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ──── CONTACTO PREMIUM ──── */
body.uth-premium .contact-premium {
  background: var(--uth-cream) !important;
  padding: 4.5rem 2rem 5rem !important;
}
body.uth-premium .contact-premium .section-intro-premium {
  margin-bottom: 2.5rem !important;
}
body.uth-premium .contact-premium .contact-flex {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 0 !important;
  background: #fff;
  border: 1px solid var(--uth-cream-border);
  box-shadow: 0 4px 24px rgba(60,40,20,0.06);
}
body.uth-premium .contact-info-premium {
  background: #0d0d0d !important;
  color: #dcdcdc !important;
  padding: 2.6rem 2.4rem !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 1rem !important;
}
body.uth-premium .contact-info-premium h3 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.4rem !important;
  color: #fff !important;
  margin: 0 0 1.2rem 0 !important;
  letter-spacing: -0.005em !important;
  text-shadow: none !important;
}
body.uth-premium .contact-info-premium p {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.88rem !important;
  color: #dcdcdc !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  display: grid !important;
  grid-template-columns: 90px 1fr !important;
  gap: 0.6rem !important;
  align-items: baseline;
}
body.uth-premium .contact-info-premium p strong {
  font-weight: 600 !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--uth-gold) !important;
}
body.uth-premium .contact-premium .map-container {
  min-height: 320px;
  border-radius: 0 !important;
  overflow: hidden;
}
body.uth-premium .contact-premium iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 320px !important;
  border: 0 !important;
  filter: grayscale(20%) sepia(8%);
}
@media (max-width: 820px) {
  body.uth-premium .contact-premium .contact-flex {
    grid-template-columns: 1fr !important;
  }
  body.uth-premium .contact-info-premium { padding: 1.8rem 1.3rem !important; }
  /* Cada fila Label/Valor pasa a apilarse en vertical: el label uppercase
     pequeño en dorado encima y el valor en blanco debajo. Más legible en
     pantallas estrechas y evita que el valor quede pegado al borde derecho. */
  body.uth-premium .contact-info-premium p {
    display: block !important;
    margin-bottom: 0.4rem !important;
  }
  body.uth-premium .contact-info-premium p strong {
    display: block !important;
    margin-bottom: 0.15rem !important;
  }
}

/* ──── FICHA DE VIVIENDA · CARD DE RESERVA (right-column) ──── */
body.uth-premium .right-column {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 24px rgba(60,40,20,0.06) !important;
  padding: 0.9rem 1.6rem 1.4rem !important;
  margin-top: 0 !important;
  /* IMPORTANTE: mantener el position:sticky del CSS original (detalle.css)
     para que la card siga el scroll. No usar position:relative aquí.
     top:120px para no quedar tapada por el topbar fijo (crema + filtros).*/
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 100px !important;
  height: fit-content;
  align-self: flex-start;
}
body.uth-premium .right-column::before {
  content: '';
  position: absolute;
  top: 0; left: 1.6rem; right: 1.6rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium .right-column .banner {
  background: transparent !important;
  padding: 0.25rem 0 0.55rem !important;
  border-bottom: 1px solid var(--uth-cream-border);
  margin-bottom: 0.7rem;
}
body.uth-premium .right-column .banner-price {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 2.15rem !important;
  color: var(--uth-burgundy) !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
}
body.uth-premium .right-column .banner-price-unit {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  color: #7a7a7a !important;
  margin-left: 0.35rem;
}
body.uth-premium .right-column .banner-extras {
  background: var(--uth-cream) !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 0.7rem 0.9rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.82rem !important;
  color: #5a5a5a !important;
}
body.uth-premium .right-column .banner-extras strong {
  font-size: 0.66rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--uth-burgundy) !important;
  font-weight: 600 !important;
  margin-right: 0.35rem;
}
body.uth-premium .right-column .contact-quick-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.5rem !important;
  margin: 1rem 0 1.2rem !important;
}
body.uth-premium .right-column .contact-btn {
  border-radius: 2px !important;
  padding: 0.7rem 0.6rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: opacity .25s, background-color .25s !important;
}
body.uth-premium .right-column .contact-btn svg {
  width: 16px; height: 16px;
}
body.uth-premium .right-column .contact-btn-wa {
  background: #128c4a !important;
  color: #fff !important;
  border: 1px solid #128c4a !important;
}
body.uth-premium .right-column .contact-btn-wa:hover {
  background: #0d6938 !important;
  border-color: #0d6938 !important;
}
body.uth-premium .right-column .contact-btn-phone {
  background: transparent !important;
  color: var(--uth-burgundy) !important;
  border: 1px solid var(--uth-burgundy) !important;
}
body.uth-premium .right-column .contact-btn-phone:hover {
  background: var(--uth-burgundy) !important;
  color: #fff !important;
}
body.uth-premium .right-column .reserva-form-title {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.15rem !important;
  color: #1a1a1a !important;
  letter-spacing: -0.005em !important;
  margin: 0.4rem 0 0.85rem !important;
  text-align: center;
}
body.uth-premium .right-column .reserva-form-title em {
  font-style: italic !important;
  color: var(--uth-burgundy) !important;
}
body.uth-premium .right-column .reserva-form label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #5a5a5a !important;
  margin: 0.6rem 0 0.2rem !important;
  display: block !important;
}
body.uth-premium .right-column .reserva-form input,
body.uth-premium .right-column .reserva-form select,
body.uth-premium .right-column .reserva-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 0.35rem 0 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.88rem !important;
  color: #1a1a1a !important;
  width: 100% !important;
  box-shadow: none !important;
}
body.uth-premium .right-column .reserva-form textarea {
  border: 1px solid var(--uth-cream-border) !important;
  padding: 0.5rem !important;
}
body.uth-premium .right-column .reserva-form input:focus,
body.uth-premium .right-column .reserva-form select:focus,
body.uth-premium .right-column .reserva-form textarea:focus {
  outline: none !important;
  border-bottom-color: var(--uth-burgundy) !important;
}
body.uth-premium .right-column .reserva-form button[type=submit] {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
  padding: 0.85rem 1.6rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  transition: background-color .25s, border-color .25s !important;
}
body.uth-premium .right-column .reserva-form button[type=submit]:hover {
  background: var(--uth-burgundy) !important;
  border-color: var(--uth-burgundy) !important;
}

/* ──── FICHA DE VIVIENDA · SOBRE EL BARRIO ──── */
/* Ocultamos el emoji legacy si todavía aparece y damos estilo al numeral
   editorial 01/02/03… en Playfair Display burdeos.                    */
body.uth-premium .neighborhood-cat-emoji {
  display: none !important;
}
body.uth-premium .neighborhood-cat-title {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  color: #1a1a1a !important;
  letter-spacing: -0.005em !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 0.7rem !important;
  margin: 0 0 0.8rem 0 !important;
}
body.uth-premium .neighborhood-cat-num {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--uth-burgundy);
  letter-spacing: -0.005em;
  line-height: 1;
}
body.uth-premium .neighborhood-cat {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 1.2rem 1.4rem 1rem !important;
  box-shadow: 0 1px 2px rgba(60,40,20,0.04);
  position: relative;
}
body.uth-premium .neighborhood-cat::before {
  content: '';
  position: absolute;
  top: 0; left: 1.4rem; right: 1.4rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium .neighborhood-cat-list li {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.86rem !important;
  color: #2a2a2a !important;
}
body.uth-premium .neighborhood-cat-distance {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--uth-burgundy) !important;
  font-weight: 500 !important;
}
body.uth-premium .neighborhood-toggle {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 0.9rem 1.2rem !important;
}
body.uth-premium .neighborhood-intro {
  font-family: 'Montserrat', Arial, sans-serif !important;
  color: #5a5a5a !important;
  font-size: 0.88rem !important;
}

/* ──── FICHA DE VIVIENDA · CERTIFICADO ENERGÉTICO (acordeón) ──── */
body.uth-premium #certificadoEnergeticoCard {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  padding: 1rem 1.3rem !important;
  position: relative;
}
body.uth-premium #certificadoEnergeticoCard::before {
  content: '';
  position: absolute;
  top: 0; left: 1.3rem; right: 1.3rem;
  height: 1px;
  background: var(--uth-burgundy);
  opacity: 0.55;
}
body.uth-premium #certificadoEnergeticoCard h3,
body.uth-premium #certificadoEnergeticoCard strong {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  color: #1a1a1a !important;
  letter-spacing: -0.005em !important;
}
body.uth-premium #certificadoEnergeticoArrow {
  color: var(--uth-burgundy) !important;
  font-size: 0.85rem !important;
}
body.uth-premium #certificadoEnergeticoTexto {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.85rem !important;
  color: #7a7a7a !important;
}

/* ──── FICHA DE VIVIENDA · OTRAS OPCIONES (related cards) ──── */
body.uth-premium .related-section {
  background: transparent !important;
  padding: 3rem 1rem 4rem !important;
}
body.uth-premium .related-section h2 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem) !important;
  color: #1a1a1a !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 2rem !important;
}
body.uth-premium .related-section h2::after {
  background: var(--uth-burgundy) !important;
  opacity: 0.55;
}
body.uth-premium .related .card {
  background: #fff !important;
  border: 1px solid var(--uth-cream-border) !important;
  border-radius: 0 !important;
  box-shadow: 0 1px 2px rgba(60,40,20,0.04) !important;
  text-align: left !important;
  transition: box-shadow .25s, transform .25s !important;
  width: 320px !important;
}
body.uth-premium .related .card:hover {
  transform: none !important;
  box-shadow: 0 6px 20px rgba(60,40,20,0.10) !important;
}
body.uth-premium .related .card img {
  border-radius: 0 !important;
}
body.uth-premium .related .card-content {
  padding: 1.4rem 1.2rem 1.5rem !important;
  text-align: center;
}
body.uth-premium .related .card-content h3 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  color: #1a1a1a !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 0.4rem !important;
}
body.uth-premium .related .card-content p {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #7a7a7a !important;
  margin-bottom: 1.1rem !important;
}
body.uth-premium .related .card-content span {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
  padding: 0.65rem 1.4rem !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  transition: background-color .25s, border-color .25s !important;
}
body.uth-premium .related .card:hover .card-content span {
  background: var(--uth-burgundy) !important;
  border-color: var(--uth-burgundy) !important;
}

/* ──── FOOTER NEGRO PREMIUM ──── */
footer.uth-footer {
  background: #0d0d0d;
  color: #c8c8c8;
  padding: 2.25rem 2.25rem 0.9rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  text-align: left;
  border-top: 1px solid #1a1a1a;
}
.uth-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}
.uth-footer-brand .footer-logo {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.005em;
  line-height: 1;
}
.uth-footer-brand .footer-logo .accent {
  font-style: italic;
  color: var(--uth-gold);
  font-weight: 500;
}
.uth-footer-brand .footer-tagline {
  font-size: 0.74rem;
  line-height: 1.55;
  color: #9a9a9a;
  max-width: 280px;
  text-align: justify;
  hyphens: auto;
  margin: 0;
}
.uth-footer-col h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--uth-burgundy-soft);
  margin: 0 0 0.75rem 0;
}
.uth-footer-col ul { list-style: none; padding: 0; margin: 0; }
.uth-footer-col li { margin: 0 0 0.4rem 0; }
.uth-footer-col a,
.uth-footer-col .footer-item {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color .2s;
  line-height: 1.4;
}
.uth-footer-col a:hover { color: #fff; }
.uth-footer-col .footer-item-sub {
  color: #9a9a9a; font-size: 0.76rem; margin-top: 0.1rem; display: block;
}
.uth-footer-bottom {
  max-width: 1400px;
  margin: 1.6rem auto 0;
  padding-top: 0.9rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  color: #7a7a7a;
  letter-spacing: 0.06em;
}
.uth-footer-bottom .footer-copy {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.uth-footer-bottom .footer-legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.uth-footer-bottom .footer-legal a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s;
}
.uth-footer-bottom .footer-legal a:hover { color: #fff; }

@media (max-width: 880px) {
  footer.uth-footer { padding: 1.75rem 1rem 0.75rem; }
  .uth-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .uth-footer-brand { grid-column: 1 / -1; }
  .uth-footer-brand .footer-tagline { max-width: none; }
}
@media (max-width: 540px) {
  .uth-footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .uth-footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}
