/* ============================================
   CASA FEMENINA — Premium Boutique Coliving
   Paleta: beige, rosado suave, blanco, arena, dorado
   ============================================ */

:root {
  --beige: #F5EFE6;
  --beige-deep: #EADFCD;
  --arena: #E6D6BD;
  --rosa: #F4E1DC;
  --rosa-deep: #E8C8C0;
  --rosa-soft: #FBF1ED;
  --blanco: #FFFFFF;
  --crema: #FAF6F0;
  --dorado: #C9A66B;
  --dorado-deep: #A8854A;
  --carbon: #2B2522;
  --gris: #6E6259;
  --gris-soft: #A89E94;
  --linea: rgba(43, 37, 34, 0.08);
  --shadow-sm: 0 4px 14px rgba(43, 37, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 37, 34, 0.10);
  --shadow-lg: 0 20px 60px rgba(43, 37, 34, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--carbon);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--carbon);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.05; font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; }
p  { color: var(--gris); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dorado-deep);
  margin-bottom: 18px;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.section--beige { background: var(--beige); }
.section--rosa  { background: var(--rosa-soft); }
.section--dark  { background: var(--carbon); color: var(--blanco); }
.section--dark p, .section--dark h2 { color: var(--blanco); }

.section-title {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 720px;
}

.section-title p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gris);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--carbon);
  color: var(--blanco);
}
.btn--primary:hover {
  background: var(--dorado-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--carbon);
  border: 1.5px solid var(--carbon);
}
.btn--ghost:hover {
  background: var(--carbon);
  color: var(--blanco);
}

.btn--gold {
  background: var(--dorado);
  color: #fff;
}
.btn--gold:hover {
  background: var(--dorado-deep);
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 22px; font-size: 0.85rem; }
.btn--lg { padding: 20px 44px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 18px 0;
}
.navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--linea);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--carbon);
  font-weight: 500;
  text-decoration: none;
}
.logo .mark {
  width: 56px; height: 36px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo .mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.logo .name { line-height: 1.1; }
.logo .name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--dorado-deep);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar.scrolled .logo .mark { width: 48px; height: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--carbon);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--dorado-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--dorado);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.lang-switch {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gris);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--linea);
  transition: all 0.3s;
}
.lang-switch:hover {
  color: var(--carbon);
  border-color: var(--dorado);
  background: var(--rosa-soft);
}

/* Selector de idioma con banderitas SVG */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  border: 1px solid var(--linea);
  background: rgba(255,255,255,0.5);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0.55;
  filter: grayscale(0.45);
  text-decoration: none;
  background: var(--blanco);
  box-shadow: inset 0 0 0 1px rgba(43, 37, 34, 0.08);
}
.lang-flag svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lang-flag:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(43, 37, 34, 0.2);
}
.lang-flag.active {
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 0 0 2px var(--dorado), 0 2px 6px rgba(43, 37, 34, 0.15);
}
@media (max-width: 720px) {
  .lang-switcher { padding: 3px 4px; gap: 4px; }
  .lang-flag { width: 26px; height: 26px; }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--carbon);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 100px;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--crema);
}

/* === Hero apilado (título arriba, banner abajo) === */
.hero--stacked {
  display: block;
  min-height: auto;
  padding: 130px 0 80px;
}
.hero--stacked .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hero__top {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero__top .eyebrow { margin-bottom: 20px; }
.hero__top h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-bottom: 26px;
  line-height: 1.05;
}
.hero__top .hero__sub {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  text-align: center;
}
.hero__top .hero__cta {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

/* Pill compacto "Reservas abiertas" al lado del botón WhatsApp */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blanco);
  border: 1px solid var(--linea);
  font-size: 0.85rem;
  color: var(--carbon);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.status-pill b {
  color: var(--dorado-deep);
  font-weight: 600;
}
.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}
/* Versión compacta en navbar */
.status-pill--nav {
  font-size: 0.78rem;
  padding: 7px 14px;
  gap: 8px;
}
.status-pill--nav .dot { width: 7px; height: 7px; }
@media (max-width: 980px) {
  .status-pill--nav { display: none; }
}

/* Botón estado "Reservas abiertas" - mismo tamaño que los otros botones */
.btn--status {
  background: var(--blanco);
  color: var(--carbon);
  border: 1.5px solid var(--linea);
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.2;
}
.btn--status:hover {
  background: var(--blanco);
  transform: none;
  box-shadow: var(--shadow-sm);
}
.btn--status .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}
.btn--status__txt {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.1;
}
.btn--status__txt small {
  font-size: 0.7rem;
  color: var(--gris);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__top .hero__cta {
  flex-wrap: wrap;
}

/* Banner full-width con las 3 sucursales */
.hero__banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2141 / 734;
  max-height: 540px;
}
.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
}
.hero__banner:hover img { transform: scale(1.02); }

/* Zonas clickeables sobre el banner (1/3 cada sucursal) */
.hero__banner-zone {
  position: absolute;
  top: 0;
  height: 100%;
  width: 33.333%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  text-decoration: none;
  z-index: 3;
  transition: background 0.35s ease;
  cursor: pointer;
}
.hero__banner-zone[data-suc="suc-capitania"] { left: 0; }
.hero__banner-zone[data-suc="suc-vespucio"]  { left: 33.333%; }
.hero__banner-zone[data-suc="suc-nunoa"]     { left: 66.666%; }
.hero__banner-zone span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--carbon);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__banner-zone span::after {
  content: "→";
  font-size: 0.95rem;
  transition: transform 0.3s;
}
.hero__banner-zone:hover {
  background: linear-gradient(180deg, transparent 40%, rgba(168, 133, 74, 0.4) 100%);
}
.hero__banner-zone:hover span {
  opacity: 1;
  transform: translateY(0);
  background: var(--dorado-deep);
  color: var(--blanco);
}
.hero__banner-zone:hover span::after { transform: translateX(4px); }
@media (max-width: 720px) {
  .hero__banner-zone span { font-size: 0.66rem; padding: 6px 12px; opacity: 1; transform: none; }
  .hero__banner-zone { padding-bottom: 14px; }
}

.hero__badge--banner {
  position: absolute !important;
  top: auto !important;
  bottom: 24px;
  right: 24px;
  left: auto !important;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 4;
}

/* Trust indicators centrados debajo del banner */
.hero--stacked .hero__trust {
  justify-content: center;
  gap: 60px;
  padding: 24px 0 0;
  border-top: none;
  text-align: center;
}
.hero--stacked .hero__trust div {
  flex: 0 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.hero__content { position: relative; z-index: 2; }

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: #C18A82;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gris);
  margin-bottom: 38px;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--linea);
}
.hero__trust div {
  font-size: 0.86rem;
  color: var(--gris);
}
.hero__trust strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--carbon);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 500;
}

.hero__visual {
  position: relative;
  height: 620px;
}
.hero__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero__img:hover img { transform: scale(1.03); }

.hero__img--main {
  top: 0; right: 0;
  width: 65%; height: 75%;
  z-index: 2;
}
.hero__img--small {
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  z-index: 3;
  border: 8px solid var(--crema);
}

/* Variante panorámica: una sola imagen ancha mostrando las 3 sucursales */
.hero__visual--panorama {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.hero__img--panorama {
  position: relative;
  inset: auto;
  width: 135%;
  max-width: 135%;
  margin-left: 0;
  margin-right: -35%;
  height: auto;
  aspect-ratio: 2141 / 734;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  transition: transform 0.6s ease;
}
.hero__img--panorama:hover { transform: rotate(0deg) scale(1.01); }

/* Badge debajo de la imagen (no encima) */
.hero__visual--panorama .hero__badge {
  position: relative;
  top: auto; left: auto;
  margin-top: 8px;
  align-self: flex-end;
}

.hero__badge {
  position: absolute;
  top: 30%;
  left: -10px;
  z-index: 4;
  background: var(--blanco);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero__badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}
.hero__badge span {
  font-size: 0.85rem; color: var(--carbon);
  font-weight: 500;
}
.hero__badge small {
  display: block;
  font-size: 0.74rem; color: var(--gris);
  margin-top: 2px;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero__decor--logo {
  position: absolute;
  top: 12%;
  left: -5%;
  width: 280px;
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.1);
  transform: rotate(-8deg);
}
@media (max-width: 980px) {
  .hero__decor--logo { width: 180px; opacity: 0.08; top: auto; bottom: 4%; right: -8%; left: auto; }
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--blanco);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.benefit {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-md);
  background: var(--crema);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.benefit:hover {
  background: var(--rosa-soft);
  border-color: var(--rosa-deep);
  transform: translateY(-6px);
}
.benefit__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa), var(--beige-deep));
  display: grid; place-items: center;
  color: var(--dorado-deep);
}
.benefit__icon svg { width: 28px; height: 28px; }
.benefit h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.benefit p { font-size: 0.86rem; line-height: 1.5; }

/* ===== TABS / SUCURSALES ===== */
.sucursales-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab-btn {
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--blanco);
  color: var(--carbon);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--linea);
  transition: all 0.3s;
}
.tab-btn:hover { border-color: var(--dorado); }
.tab-btn.active {
  background: var(--carbon);
  color: var(--blanco);
  border-color: var(--carbon);
}
.tab-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 2px;
}

.sucursal-panel {
  display: none;
  animation: fadeUp 0.6s ease both;
}
.sucursal-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sucursal-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sucursal-header__text {
  padding: 50px 50px 50px 60px;
}
.sucursal-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-weight: 400;
}
.sucursal-header__addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--carbon);
  margin-bottom: 18px;
}
.sucursal-header__features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--rosa-soft);
  color: var(--dorado-deep);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--rosa-deep);
}
.sucursal-header__img {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.sucursal-header__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.sucursal-header:hover .sucursal-header__img img { transform: scale(1.05); }

/* Habitaciones grid */
.habitaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.hab-card {
  background: var(--blanco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.hab-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.hab-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hab-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hab-card:hover .hab-card__img img { transform: scale(1.08); }
.hab-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--blanco);
  color: var(--carbon);
}
.hab-card__badge--available {
  background: #DAF5E2;
  color: #1f7a3a;
}
.hab-card__badge--occupied {
  background: var(--beige-deep);
  color: var(--gris);
}
.hab-card__count {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(43, 37, 34, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  display: flex; align-items: center; gap: 6px;
}
.hab-card__body {
  padding: 24px 24px 26px;
  flex-grow: 1;
  display: flex; flex-direction: column;
}
.hab-card__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}
.hab-card__title h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hab-card__price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dorado-deep);
  font-weight: 600;
  white-space: nowrap;
}
.hab-card__price small {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--gris);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.hab-card__desc {
  font-size: 0.88rem;
  color: var(--gris);
  margin-bottom: 16px;
  flex-grow: 1;
}
.hab-card__feats {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.hab-card__feats span {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--crema);
  color: var(--gris);
}
.hab-card__cta {
  display: flex; gap: 8px;
}
.hab-card__cta .btn { flex: 1; padding: 12px 18px; font-size: 0.84rem; }

/* Tab address line */
.sucursal-near {
  background: var(--beige);
  padding: 26px 32px;
  border-radius: var(--radius-md);
  margin-top: 40px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.sucursal-near b {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 500;
}

/* ===== MAPA INTERACTIVO ===== */
.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.map-card {
  background: var(--blanco);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--linea);
  transition: all var(--transition);
}
.map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--dorado);
}
.map-card__pin { font-size: 1.8rem; margin-bottom: 10px; }
.map-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.map-card p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 10px;
}
.map-card__metro {
  display: inline-block;
  background: var(--rosa-soft);
  color: var(--dorado-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.map-card .btn { width: 100%; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--blanco);
}
.map-embeds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.map-embeds-grid iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--blanco);
}
@media (max-width: 900px) {
  .map-embeds-grid { grid-template-columns: 1fr; }
  .map-embeds-grid iframe { height: 240px; }
}

/* ===== TABLA COMPARATIVA ===== */
.compare-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--linea);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--linea);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:nth-child(even) { background: var(--crema); }
.compare-row--head {
  background: var(--carbon) !important;
  color: var(--blanco);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 18px 24px;
}
.compare-row--head .compare-us { color: var(--dorado); }
.compare-feat { font-size: 0.95rem; color: var(--carbon); }
.compare-us, .compare-them {
  text-align: center;
  font-size: 0.92rem;
}
.compare-us .check {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #DAF5E2;
  color: #1f7a3a;
  font-weight: 700;
  font-size: 1rem;
}
.compare-them .cross {
  color: var(--gris-soft);
  font-size: 0.86rem;
  font-style: italic;
}

/* ===== CONOCE A VANESSA ===== */
.meet-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.meet-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: var(--rosa-soft);
}
.meet-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 30px;
}
.meet-img__signature {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--carbon);
  text-align: center;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img__quote {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--carbon);
  line-height: 1.5;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--carbon);
}
.about p:last-child { color: var(--gris); }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-value {
  padding: 22px 24px;
  background: var(--rosa-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dorado);
}
.about-value strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 500;
}
.about-value span {
  font-size: 0.86rem;
  color: var(--gris);
}

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testimonio {
  background: var(--blanco);
  border-radius: var(--radius-md);
  padding: 32px 32px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}
.testimonio:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonio::before {
  content: "“";
  position: absolute;
  top: 0; left: 26px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--rosa-deep);
  line-height: 1;
  opacity: 0.55;
}
.testimonio__stars {
  display: flex; gap: 3px;
  color: var(--dorado);
  margin-bottom: 14px;
  font-size: 1rem;
}
.testimonio__text {
  font-size: 0.96rem;
  color: var(--carbon);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonio__author {
  display: flex; align-items: center; gap: 14px;
}
.testimonio__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa-deep), var(--dorado));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.testimonio__author b {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonio__author span {
  font-size: 0.78rem;
  color: var(--gris);
}

/* ===== TESTIMONIOS LOADER ===== */
.testimonios-loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--gris);
  font-family: var(--serif);
  font-style: italic;
}
.testimonios-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px;
  color: var(--gris);
  background: var(--blanco);
  border-radius: var(--radius-md);
  border: 1px dashed var(--rosa-deep);
}

/* ===== EXPERIENCIA FORM ===== */
.experiencia-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--blanco);
  padding: 50px 50px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--linea);
}
.experiencia-form .req {
  color: var(--dorado-deep);
  font-weight: 600;
}

.experiencia-form .form-group { margin-bottom: 22px; }
.experiencia-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--carbon);
}
.experiencia-form input[type="text"],
.experiencia-form input[type="email"],
.experiencia-form select,
.experiencia-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--linea);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--crema);
  color: var(--carbon);
  transition: all 0.3s;
  resize: vertical;
}
.experiencia-form input:focus,
.experiencia-form select:focus,
.experiencia-form textarea:focus {
  outline: none;
  border-color: var(--dorado);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.08);
}
.experiencia-form input.invalid,
.experiencia-form select.invalid,
.experiencia-form textarea.invalid {
  border-color: #e63a4f;
  background: #fff5f6;
}

.experiencia-form .char-count {
  display: block;
  font-size: 0.74rem;
  color: var(--gris-soft);
  text-align: right;
  margin-top: 6px;
}

/* Star rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
}
.star-rating .star {
  font-size: 2rem;
  color: #E4D9C8;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  transition: all 0.2s;
  line-height: 1;
}
.star-rating .star:hover,
.star-rating .star.hover {
  transform: scale(1.15);
}
.star-rating .star.active,
.star-rating.preview .star.hover-state {
  color: var(--dorado);
  text-shadow: 0 2px 8px rgba(201, 166, 107, 0.35);
}
.star-label {
  margin-left: 14px;
  font-size: 0.84rem;
  color: var(--gris);
  font-style: italic;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--rosa-soft);
  border-radius: 12px;
  border: 1px solid var(--rosa-deep);
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-check:hover { background: #fae5df; }
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--dorado);
  flex-shrink: 0;
  cursor: pointer;
}
.form-check span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--carbon);
}
.form-check small {
  display: block;
  font-size: 0.78rem;
  color: var(--gris);
  margin-top: 4px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gris);
  margin-top: 18px;
  line-height: 1.6;
}

/* Success state */
.exp-success {
  max-width: 600px;
  margin: 0 auto;
  background: var(--blanco);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--rosa-deep);
  animation: fadeUp 0.6s ease both;
}
.exp-success__icon {
  font-size: 4rem;
  margin-bottom: 18px;
  animation: pop 0.6s ease both;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.exp-success h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--carbon);
}
.exp-success p {
  font-size: 1rem;
  color: var(--gris);
  margin-bottom: 12px;
  line-height: 1.6;
}
.exp-success .small {
  font-size: 0.82rem;
  color: var(--gris-soft);
  font-style: italic;
  margin-bottom: 26px;
}

/* ===== GALERIA ===== */
.galeria {
  background: var(--carbon);
  color: var(--blanco);
}
.galeria h2 { color: var(--blanco); }
.galeria .section-title p { color: rgba(255,255,255,0.7); }
.galeria .eyebrow { color: var(--dorado); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery-filter {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}
.gallery-filter:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.gallery-filter.active {
  background: var(--dorado);
  color: #fff;
  border-color: var(--dorado);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s;
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}
.gallery-item--tall   { grid-row: span 2; }
.gallery-item--wide   { grid-column: span 2; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--blanco);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.faq-item.open { border-color: var(--dorado); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--carbon);
  font-weight: 500;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--dorado-deep); }
.faq-q .icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--rosa-soft);
  display: grid; place-items: center;
  color: var(--dorado-deep);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  font-size: 1.1rem;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--dorado); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}
.faq-a p {
  padding-bottom: 24px;
  color: var(--gris);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #2B2522 0%, #3a312c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(201, 166, 107, 0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(232, 200, 192, 0.12), transparent 50%);
  pointer-events: none;
}
.cta-final__content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 22px;
  font-weight: 400;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--dorado);
}
.cta-final p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-final .btn--lg {
  background: #25D366;
  color: #fff;
  font-size: 1.05rem;
  padding: 22px 48px;
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.35);
}
.cta-final .btn--lg:hover { background: #1ebd5a; transform: translateY(-3px); }

/* ===== FORMULARIO ===== */
.form-wrap {
  background: var(--blanco);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 8px;
  color: var(--carbon);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--linea);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--crema);
  color: var(--carbon);
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dorado);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.08);
}

/* ===== BRAND BLOCK ===== */
.brand-block {
  text-align: center;
  background: var(--rosa-soft);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.brand-block::before, .brand-block::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--rosa-deep) 0%, transparent 70%);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}
.brand-block::before { top: -80px; left: -80px; }
.brand-block::after  { bottom: -80px; right: -80px; }
.brand-block img {
  position: relative;
  max-width: 380px;
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 6px 18px rgba(168, 133, 74, 0.18));
}
.brand-block .tagline {
  position: relative;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gris);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  background: #1f1a17;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.88rem; }
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--dorado); }
.footer .logo { color: #fff; }
.footer .logo .name { color: #fff; }
.footer__about p { font-size: 0.88rem; line-height: 1.7; margin-top: 18px; }
.footer__social {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: var(--dorado);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ===== SIGNATURE ===== */
.signature {
  text-align: center;
  padding: 32px 20px 0;
  border-top: 1px dashed rgba(255,255,255,0.10);
  margin-top: 28px;
}
.signature__heart {
  font-size: 1.4rem;
  color: var(--rosa-deep);
  display: inline-block;
  animation: beat 2s ease-in-out infinite;
}
@keyframes beat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.2); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.15); }
  80% { transform: scale(1); }
}
.signature__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.signature__name {
  display: inline-block;
  background: linear-gradient(135deg, var(--rosa-deep) 0%, var(--dorado) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: all 0.4s ease;
}
.signature__name::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.signature__name:hover { transform: translateY(-1px); }
.signature__name:hover::after { opacity: 1; }
.signature__small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== POP-UP CAPTURA ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.popup-overlay[hidden] { display: none !important; }
.popup-overlay.show { opacity: 1; }
.popup {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 44px 38px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.popup-overlay.show .popup { transform: scale(1); }
.popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--crema);
  font-size: 1.4rem;
  color: var(--gris);
  display: grid; place-items: center;
}
.popup__close:hover { background: var(--rosa-soft); color: var(--carbon); }
.popup__icon { font-size: 3rem; margin-bottom: 12px; }
.popup h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.popup > p {
  font-size: 0.94rem;
  color: var(--gris);
  margin-bottom: 22px;
}
.popup__form input,
.popup__form select {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--linea);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--crema);
}
.popup__form input:focus,
.popup__form select:focus {
  outline: none;
  border-color: var(--dorado);
  background: #fff;
}
.popup__note {
  font-size: 0.74rem;
  color: var(--gris-soft);
  margin-top: 12px;
}

/* ===== COOKIES BANNER ===== */
.cookies-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--blanco);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 2400;
  border: 1px solid var(--linea);
  max-width: 720px;
  margin: 0 auto;
  animation: slideUp 0.5s ease both;
}
.cookies-banner[hidden] { display: none !important; }
@keyframes slideUp {
  from { transform: translateY(140px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookies-banner__content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookies-banner p {
  flex: 1; min-width: 240px;
  font-size: 0.85rem;
  color: var(--carbon);
  line-height: 1.5;
}
.cookies-banner a { color: var(--dorado-deep); text-decoration: underline; }
.cookies-banner__btns { display: flex; gap: 8px; }

/* ===== WIZARD (Calculadora habitación) ===== */
.wizard {
  max-width: 720px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 50px 50px 44px;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.wizard__step, .wizard__result {
  display: none;
  text-align: center;
  animation: fadeUp 0.5s ease both;
}
.wizard__step.active, .wizard__result.active { display: block; }
.wizard__progress {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dorado-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.wizard__step h3, .wizard__result h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 26px;
  font-weight: 500;
}
.wizard__opts {
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.wizard__opt {
  width: 100%;
  padding: 16px 22px;
  background: var(--crema);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--carbon);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s;
}
.wizard__opt:hover {
  background: var(--rosa-soft);
  border-color: var(--rosa-deep);
  transform: translateX(4px);
}
.wizard__result-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
  animation: pop 0.7s ease both;
}
.wizard__result p {
  font-size: 1.05rem;
  color: var(--gris);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== VIDEO TOUR ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-card {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--beige);
  position: relative;
}
.video-card iframe {
  width: 100%; height: 100%;
  border: none;
}
.video-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--rosa-soft) 0%, var(--beige-deep) 100%);
  color: var(--dorado-deep);
  padding: 30px;
}
.video-card__placeholder p {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-top: 16px;
  color: var(--carbon);
}
.video-card__placeholder small {
  font-size: 0.78rem;
  color: var(--gris);
  margin-top: 6px;
}

/* ===== GARANTÍA ===== */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.warranty-card {
  background: var(--blanco);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  border: 1px solid var(--linea);
  transition: all 0.3s;
}
.warranty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.warranty-card__num {
  width: 50px; height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa-deep), var(--dorado));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.warranty-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.warranty-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gris);
}
.warranty-card b { color: var(--carbon); }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 999;
  display: flex; align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
  font-weight: 500;
  font-size: 0.95rem;
  animation: floatIn 0.6s 1s both;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-float svg { width: 26px; height: 26px; }
@keyframes floatIn {
  from { transform: translateY(80px) scale(0.6); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ===== LIGHTBOX / GALERÍA ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox__stage {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap {
  position: relative;
  max-width: 95vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.25s ease;
}
.lightbox img.fading { opacity: 0.4; }

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* Botones prev/next */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.92); }
.lightbox__nav svg { width: 28px; height: 28px; }
.lightbox__prev { left: 30px; }
.lightbox__next { right: 30px; }
.lightbox__nav[hidden] { display: none; }

/* Header con título e info */
.lightbox__header {
  position: absolute;
  top: 24px; left: 24px;
  color: #fff;
  z-index: 5;
  max-width: 60%;
}
.lightbox__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
.lightbox__subtitle {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

/* Contador */
.lightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* CTA WhatsApp dentro del lightbox */
.lightbox__cta {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.lightbox__cta:hover { transform: translateY(-2px); color: #fff; }
.lightbox__cta svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .lightbox__header { top: 16px; left: 16px; max-width: 70%; }
  .lightbox__title { font-size: 1.05rem; }
  .lightbox__subtitle { font-size: 0.7rem; }
  .lightbox__close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .lightbox__counter { bottom: 16px; padding: 6px 14px; font-size: 0.78rem; }
  .lightbox__cta { display: none; }
  .lightbox img { max-height: 70vh; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .hero__banner { aspect-ratio: 2 / 1; }
}
