/* SECTION SHELL — responsive override; base .section lives in components.css */
@media (max-width: 600px) {
  .section { padding: 56px 1.25rem; }
}


/* NAV */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.1; }
.nav-logo-text span { display: block; font-style: italic; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.4); }
.nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center;
}
.nav-link {
  font-family: var(--font-sans); font-size: 16px; font-weight: 500;
  color: var(--white); text-decoration: none; letter-spacing: 0.2px;
  transition: color .15s; cursor: pointer; background: none; border: none; padding: 0;
}
.nav-link:hover { color: rgba(255,255,255,0.7); }
.nav-cta {
  /* Brand gold rather than white: this is the primary call to action in the
     header and needs to read as one. Black text on --gold measures 12.3:1,
     comfortably past WCAG AA. */
  background: var(--gold); color: var(--black);
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  border: none; padding: 9px 22px; cursor: pointer; letter-spacing: 0.5px;
  transition: background .15s, transform .1s;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }
@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 0 1.25rem; }
}


/* HERO */
.hero { background: var(--black); display: grid; grid-template-columns: 55% 45%; min-height: 100vh; }
.hero-left {
  padding: 52px 2.5rem 52px 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  max-width: none;
}
.hero-left h1, .hero-left .hero-sub { max-width: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.55); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 24px; width: fit-content;
}
.hero-badge i { font-size: 12px; }
.hero h1 {
  font-family: var(--font-serif); font-weight: 900; font-size: 58px;
  line-height: 1.05; color: var(--white); letter-spacing: -1.5px; margin-bottom: 8px;
}
.hero h1 .italic { font-style: italic; font-weight: 400; color: var(--white); display: block; }
.hero-rule { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.hero-sub { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.hero-sub strong { color: var(--white); font-weight: 500; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 56px 1.5rem; border-right: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
}


/* HERO RIGHT */
.hero-right {
  padding: 20px 2rem 20px; display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/img/espacios/fachada.webp');
  background-size: cover; background-position: center center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 5%, black 35%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 5%, black 35%, black 100%);
  opacity: 0.28;
}
.hero-right > * { position: relative; z-index: 1; }
.hero-numbers { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-num { padding: 20px 20px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 2px; }
.hero-num:last-child { border-right: none; }
.hero-num-n { font-family: var(--font-serif); font-size: 56px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -2px; }
.hero-num-suffix { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-num-l { font-size: 10px; color: var(--gray-mid); letter-spacing: 0.5px; margin-top: 4px; text-transform: uppercase; }
.hero-benefits {
  display: grid; grid-template-columns: 1fr 1fr; flex: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-benefit:nth-last-child(-n+2) { padding-bottom: 88px; }
.hero-benefit {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background .15s;
}
.hero-benefit:nth-child(even) { border-right: none; }
.hero-benefit:nth-last-child(-n+2) { border-bottom: none; }
.hero-benefit:hover { background: rgba(255,255,255,0.04); }
.hb-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hb-icon i { font-size: 17px; color: var(--white); }
.hb-text { line-height: 1.4; }
.hb-text strong { font-size: 15px; color: var(--white); font-weight: 600; display: block; margin-bottom: 3px; }
.hb-text span { font-size: 12px; color: var(--gray-mid); }
@media (max-width: 900px) {
  .hero-right { border-top: 1px solid rgba(255,255,255,0.08); padding: 36px 1.5rem; }
}
@media (max-width: 600px) {
  .hero-num-n { font-size: 44px; }
}


/* URGENCY BAND */
.urgency { background: var(--white); padding: 18px 2.5rem; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.urgency-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.urgency-text { font-family: var(--font-serif); font-size: 17px; font-style: italic; color: var(--black); max-width: 560px; }
.urgency-btn {
  background: var(--black); color: var(--white);
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  border: 2px solid var(--black); padding: 11px 24px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; letter-spacing: 0.5px; text-transform: uppercase;
  transition: background .15s, color .15s;
}
.urgency-btn:hover { background: var(--white); color: var(--black); }
@media (max-width: 900px) {
  .urgency-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .urgency { padding: 18px 1.25rem; }
}


/* FILOSOFÍA */
/* Base rules are for dark sections; the light-section override sits directly below them. */
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.philosophy-quote { font-family: var(--font-serif); font-size: 22px; font-style: italic; line-height: 1.55; color: var(--white); padding-left: 24px; border-left: 2px solid rgba(255,255,255,0.4); }
.philosophy-text { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }
.philosophy-text p+p { margin-top: 14px; }
.s-offwhite .philosophy-quote { color: var(--black); border-left-color: var(--black); }
.s-offwhite .philosophy-text { color: #555; }
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* GALERÍA */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--gray-light); margin-top: 40px; }
.gallery-ph { aspect-ratio: 4/3; background: var(--gray-light); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--gray-mid); font-size: 12px; border: 1px solid var(--gray-light); }
.gallery-ph i { font-size: 24px; }
.gallery-ph.large { grid-column: span 2; aspect-ratio: unset; min-height: 240px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-ph.large { grid-column: span 2; }
}
/* REAL PHOTO GALLERY */
.foto-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 3px; margin-top: 40px; }
.foto-item { overflow: hidden; position: relative; }
.foto-item.tall { grid-row: span 2; }
.foto-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter .4s, transform .4s;
  min-height: 260px;
}
.foto-item.tall img { min-height: 523px; }
.foto-item:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.02); }
.foto-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 20px 16px 12px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8);
  opacity: 0; transition: opacity .3s;
}
.foto-item:hover .foto-label { opacity: 1; }
@media (max-width: 600px) {
  .foto-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .foto-item.tall { grid-row: span 1; }
  .foto-item.tall img { min-height: 240px; }
}


/* MENTORES */
.mentors-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 900px; margin: 40px auto 0; border-top: 1px solid var(--gray-light); border-left: 1px solid var(--gray-light); }
.mentor { border-right: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); padding: 24px 16px; text-align: center; }
.mentor-av { width: 52px; height: 52px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--white); margin: 0 auto 12px; }
.mentor-n { font-family: var(--font-serif); font-size: 14px; font-weight: 700; }
.mentor-r { font-size: 11px; color: var(--gray-mid); margin-top: 4px; }
@media (max-width: 900px) {
  /* Four mentors: two rows of two reads better than 3+1 on a narrow screen. */
  .mentors-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .mentors-grid { grid-template-columns: repeat(2,1fr); }
}


/* CTA BAND */
.cta-band { background: var(--black); padding: 80px 2.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-band-tag { font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray-mid); }
.cta-band h2 { font-family: var(--font-serif); font-weight: 900; font-size: 36px; color: var(--white); max-width: 520px; line-height: 1.15; letter-spacing: -0.5px; }
.cta-band h2 em { font-style: italic; color: var(--white); }
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 420px; line-height: 1.7; }
@media (max-width: 600px) {
  .cta-band { padding: 56px 1.25rem; }
  .cta-band h2 { font-size: 26px; }
}

/* UBICACIÓN */
.loc-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start;
}
/* The 340px address column plus a 40px gap needs 380px, but the section's own
   2.5rem side padding leaves only viewport-80. Below this width the two would
   not fit and the grid pushed the page ~12px wider than the viewport, showing a
   sliver of background down the right edge on every phone. This was an inline
   style, so no media query could reach it. */
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; gap: 28px; }
}
.map-ph { background: var(--gray-light); height: 220px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--gray-mid); margin-top: 32px; }
.map-ph i { font-size: 30px; }
.loc-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; font-size: 14px; color: #555; }
.loc-row i { font-size: 18px; color: var(--black); margin-top: 2px; }


/* FOOTER */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding: 48px 2.5rem 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 12px; max-width: 220px; }
.footer-col-title { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col address a { display: inline; font-size: 13px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2.5rem; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.3px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-logo { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--white); }
.footer-logo span { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.3px; }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}


/* URGENCY LIGHT VARIANT (before dark filosofia) */
.urgency-dark { background: var(--offwhite); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.urgency-text-dark { color: var(--black); }
.urgency-btn-dark {
  background: var(--black); color: var(--white);
  border: 2px solid var(--black);
}
.urgency-btn-dark:hover { background: var(--white); color: var(--black); }
/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none; border: none;
  transition: transform .15s, box-shadow .15s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.15); }
.wa-float:active { transform: translateY(0); }
.wa-float svg { width: 26px; height: 26px; }
.wa-tooltip {
  position: fixed; bottom: 36px; right: 92px; z-index: 998;
  background: var(--black); color: var(--white);
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  padding: 6px 12px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.wa-float:hover ~ .wa-tooltip { opacity: 1; }



/* OFICINAS */
.oficina-bloque {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 56px; margin-top: 56px;
}
.oficina-header {
  display: grid; grid-template-columns: 1fr 280px; gap: 40px;
  align-items: start; margin-bottom: 20px;
}
.oficina-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray-mid); margin-bottom: 8px;
}
.oficina-nombre {
  font-family: var(--font-serif); font-size: 32px; font-weight: 700;
  color: var(--white); letter-spacing: -0.5px; margin-bottom: 12px;
}
.oficina-desc {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5);
}
.oficina-specs {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
}
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--gray-mid); }
.spec-row strong { color: var(--white); font-weight: 600; text-align:right; }
.oficina-tags-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.otag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15); padding: 4px 10px;
}
.oficina-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  margin-bottom: 24px;
}
.oficina-img-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.oficina-img-card.main-img { grid-column: span 3; }
.oficina-img-card img {
  width: 100%; display: block;
  height: 220px; object-fit: cover;
  transition: transform .4s, opacity .3s;
}
.oficina-img-card.main-img img { height: 340px; }
.oficina-img-card:hover img { transform: scale(1.03); opacity: .9; }
.img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 16px 14px 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.oficina-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); padding: 12px 20px; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.oficina-cta:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .oficina-header { grid-template-columns: 1fr; }
  .oficina-specs { max-width: 100%; }
  .oficina-grid { grid-template-columns: repeat(2, 1fr); }
  .oficina-img-card.main-img { grid-column: span 2; }
}
@media (max-width: 600px) {
  .oficina-grid { grid-template-columns: 1fr; }
  .oficina-img-card.main-img { grid-column: span 1; }
  .oficina-nombre { font-size: 24px; }
}


/* FOTOS GENERALES DEL ESPACIO
   Was an inline style attribute, which no media query can reach — the same
   defect that put a 12px white gutter down the right of every phone. */
.espacios-photos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  /* One per row: at two columns each card is ~180px wide with a 280px-tall
     object-fit:cover image, which crops the rooms down to a detail. */
  .espacios-photos { grid-template-columns: 1fr; }
}


/* MODELOS DE OFICINA — banner replacing the per-office sections */
.modelos-head { max-width: 620px; margin: 64px 0 28px; }
.modelos-t {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.modelos-d { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }

.modelos-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
}
.modelos-banner .oficina-img-card img { height: 200px; }

.modelos-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
}
/* Gold, matching the header CTA: downloading the inventory is the second real
   action on this page after the form. */
.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black); text-decoration: none;
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 2px solid var(--gold); padding: 13px 24px;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn-download:hover {
  background: var(--gold-deep); border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-download i { font-size: 16px; }
.modelos-note { font-size: 12px; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) {
  .modelos-banner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .modelos-banner { grid-template-columns: repeat(2, 1fr); }
  .modelos-banner .oficina-img-card img { height: 150px; }
  .modelos-head { margin-top: 48px; }
}


/* PLANOS Y MEDIDAS — full width, no height restriction */
.planos-card {
  grid-column: span 3;
  background: #f5f4f0;
}
/* These overrides MUST come after the rule above, not in the earlier
   .oficina-* media blocks: at equal specificity the later declaration wins, and
   the unconditional `span 3` is declared further down the file than those
   blocks — so overriding it up there silently does nothing.
   Spanning 3 columns in the 2-column (<=900) or 1-column (<=600) grid makes the
   browser create implicit auto tracks, which resolve to 0px. Every card landing
   in one renders at zero width and vanishes: this hid 9 of the 22 photos on a
   phone, including the first image of all three offices. */
@media (max-width: 900px) {
  .planos-card { grid-column: span 2; }
}
@media (max-width: 600px) {
  .planos-card { grid-column: span 1; }
}
.planos-card .planos-img {
  display: block;
  width: auto; height: auto;
  max-width: 100%;
  max-height: 380px;
  margin: 0 auto;
  object-fit: contain;
  background: #f5f4f0;
}
.planos-card .img-label {
  background: var(--black); color: rgba(255,255,255,0.7);
}
/* OFFWHITE SECTION */
.s-offwhite { background: var(--offwhite); color: var(--black); }
.s-offwhite .section-tag { color: var(--gray-mid); }
.s-offwhite .section-rule { background: var(--black); }
.s-offwhite .section-body { color: #666; }


/* TIPOS DE ESPACIO */
/* Two modalidades since Suite Ejecutiva was folded away. */
.tipos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 48px; border: 1px solid var(--gray-light); }
.tipo-card {
  padding: 36px 28px; border-right: 1px solid var(--gray-light);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.tipo-card:last-child { border-right: none; }
.tipo-featured { background: var(--black); color: var(--white); }
.tipo-badge-top {
  position: absolute; top: 20px; right: 20px;
  background: var(--white); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px;
}
.tipo-featured .tipo-badge-top { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.tipo-num { font-family: var(--font-serif); font-size: 13px; color: var(--gray-mid); }
.tipo-featured .tipo-num { color: rgba(255,255,255,0.4); }
.tipo-icon { font-size: 28px; color: var(--black); }
.tipo-featured .tipo-icon { color: var(--white); }
.tipo-n { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.2; }
.tipo-featured .tipo-n { color: var(--white); }
.tipo-d { font-size: 13px; line-height: 1.7; color: #555; flex: 1; }
.tipo-featured .tipo-d { color: rgba(255,255,255,0.55); }
.tipo-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
.tipo-list li { font-size: 12px; color: #555; display: flex; align-items: center; gap: 8px; }
.tipo-list li::before { content: '—'; color: var(--gray-mid); flex-shrink: 0; }
.tipo-featured .tipo-list li { color: rgba(255,255,255,0.5); }
.tipo-featured .tipo-list li::before { color: rgba(255,255,255,0.25); }
.tipo-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 2px solid var(--black); padding: 11px 18px; cursor: pointer;
  margin-top: 4px; transition: background .15s, color .15s; width: fit-content;
}
.tipo-cta:hover { background: var(--white); color: var(--black); }
.tipo-cta-inv {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.tipo-cta-inv:hover { background: transparent; color: var(--white); }
@media (max-width: 900px) {
  .tipos-grid { grid-template-columns: 1fr; }
  .tipo-card { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .tipo-card:last-child { border-bottom: none; }
}


/* ESPACIOS GRID */
.espacios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.espacio-card {
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; cursor: pointer;
  transition: opacity .15s;
}
.espacio-card:hover { opacity: .85; }
.espacio-card-wide { grid-column: span 3; }
.espacio-ph {
  background: rgba(255,255,255,0.06);
  height: 180px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 28px;
}
.espacio-card-wide .espacio-ph { height: 220px; }
.espacio-img {
  width: 100%; display: block;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: opacity .3s;
}
.espacio-card:hover .espacio-img { opacity: .85; }
.espacio-info {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.espacio-num { font-family: var(--font-serif); font-size: 14px; font-weight: 700; color: var(--white); }
.espacio-tipo { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.5px; }
@media (max-width: 900px) {
  .espacios-grid { grid-template-columns: repeat(2, 1fr); }
  .espacio-card-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .espacios-grid { grid-template-columns: 1fr; }
  .espacio-card-wide { grid-column: span 1; }
}


/* PATROCINIO */
.patrocinio-inner { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: center; }
.patrocinio-list { list-style: none; padding: 0; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.patrocinio-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.patrocinio-list li i { font-size: 16px; color: var(--white); flex-shrink: 0; }
.patrocinio-right { text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); padding: 36px 24px; }
.patrocinio-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 20px; line-height: 1.5; }
@media (max-width: 900px) {
  .patrocinio-inner { grid-template-columns: 1fr; gap: 32px; }
  .patrocinio-right { max-width: 240px; }
}
