/* Torre Palmas — Global Styles */

:root {
  /* Primario */
  --green:        #14994b;
  --green-dark:   #0e7a3b;
  --green-light:  #1db85a;
  --green-bg:     rgba(20,153,75,0.06);
  --green-border: rgba(20,153,75,0.18);

  /* Olivo — acento cálido */
  --olive:        #6b7c5c;
  --olive-light:  #8a9e78;
  --olive-pale:   #f1f4ee;
  --olive-mid:    rgba(107,124,92,0.15);
  --olive-border: rgba(107,124,92,0.22);

  /* Blancos y superficie */
  --white:        #ffffff;
  --surface:      #f8f9f7;
  --surface2:     #f2f5f0;
  --surface3:     #eaefe6;

  /* Texto oscuro */
  --ink:          #1a1f18;
  --ink-mid:      #4a5446;
  --ink-low:      #7a8574;

  /* Nav oscuro */
  --nav-bg:       rgba(26,31,24,0.50);

  /* Azul Coworking */
  --blue:         #1e90b8;
  --blue-light:   #4fb3d4;
  --blue-bg:      rgba(30,144,184,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
/* Sin transition en transform: el punto debe pegarse al mouse sin retraso.
   La estela suave la produce el anillo con su interpolación en JS. */
.cursor {
  width: 9px; height: 9px; background: var(--green);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  will-change: transform;
  transition: background 0.18s;
}
.cursor-ring {
  width: 30px; height: 30px; border: 1px solid var(--green);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998; opacity: 0.45;
  will-change: transform;
  /* Nunca 'all': incluir transform aquí duplicaba la animación del JS y
     era la causa principal del arrastre. */
  transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.18s;
}
/* Sobre verde u oscuro el cursor verde no se lee: se vuelve blanco. */
.cursor.on-dark { background: var(--white); }
.cursor-ring.on-dark { border-color: var(--white); opacity: 0.75; }

/* ══════════════ NAV ══════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  padding: 0 56px; height: 96px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
/* Logo bigger globally */
.nav-logo img { height: 72px !important; width: auto; transition: height 0.3s; }
@media (max-width: 768px) {
  nav { height: 80px; padding: 0 22px; }
  .nav-logo img { height: 56px !important; }
}

/* Compensar la altura del nav fijo en los heros de páginas internas
   y en el hero del home. El nav mide 96px (desktop) / 80px (móvil). */
.product-page-hero { padding-top: 128px !important; }
.product-page-hero .hero-eyebrow { margin-top: 0; }

/* Hero del home: contenido a ~40% desde arriba (en vez de ~30%).
   Como usa justify-content: flex-end, reducir padding-bottom baja el contenido. */
#hero {
  padding-top: 128px !important;
  padding-bottom: 4vh !important;
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .product-page-hero { padding-top: 104px !important; }
  #hero { padding-top: 104px !important; padding-bottom: 6vh !important; }
}
nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(107,124,92,0.15);
}
nav.light { background: var(--white); box-shadow: 0 1px 0 var(--olive-border); }
nav.light .nav-logo { color: var(--ink); }
nav.light .nav-links > li > a,
nav.light .nav-links > li > button.nav-drop-btn { color: var(--ink-mid); }
nav.light .nav-links > li > a:hover,
nav.light .nav-links > li > button.nav-drop-btn:hover,
nav.light .nav-links > li > a.active,
nav.light .nav-links > li > button.nav-drop-btn.active { color: var(--green); }
nav.light .hamburger span { background: var(--ink); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.07em;
  color: var(--white); text-decoration: none; cursor: none;
  transition: color 0.3s;
}
.nav-logo span { color: var(--green); }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button.nav-drop-btn {
  font-size: 11.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-decoration: none; background: none; border: none;
  padding: 8px 13px; cursor: none; font-family: 'DM Sans', sans-serif;
  transition: color 0.2s; display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > button.nav-drop-btn:hover,
.nav-links > li > a.active,
.nav-links > li > button.nav-drop-btn.active { color: var(--green); }
.nav-drop-btn .caret {
  width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  transition: transform 0.25s; flex-shrink: 0;
}
.nav-links > li.open .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 210px; background: var(--white);
  box-shadow: 0 8px 32px rgba(26,31,24,0.1), 0 1px 0 var(--olive-border);
  border: 1px solid var(--olive-border); padding: 6px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity 0.22s, transform 0.22s;
}
.nav-links > li.open .nav-dropdown { opacity: 1; pointer-events: all; transform: none; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 18px; font-size: 12px; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none; cursor: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover { color: var(--green); background: var(--olive-pale); }
.nav-dropdown a .dd-icon { font-size: 14px; }
.nav-dropdown-divider { height: 1px; background: var(--olive-border); margin: 4px 0; }

.nav-cta {
  background: var(--green); color: var(--white);
  padding: 10px 22px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  border: none; cursor: none; font-family: 'DM Sans', sans-serif;
  transition: background 0.25s; margin-left: 10px;
}
.nav-cta:hover { background: var(--green-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 15px 34px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: none; font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, transform 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 15px 34px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--white); cursor: none;
  font-family: 'DM Sans', sans-serif; transition: border-color 0.25s, color 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); opacity: 0.8; }

.btn-outline-dark {
  background: transparent; color: var(--ink);
  padding: 15px 34px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(26,31,24,0.25); cursor: none;
  font-family: 'DM Sans', sans-serif; transition: border-color 0.25s, color 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn-outline-olive {
  background: transparent; color: var(--olive);
  padding: 15px 34px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--olive-border); cursor: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-outline-olive:hover { border-color: var(--olive); background: var(--olive-pale); }

/* ── SECTIONS ── */
.section-light { padding: 120px 56px; background: var(--white); }
.section-surface { padding: 120px 56px; background: var(--surface); }
.section-surface2 { padding: 120px 56px; background: var(--surface2); }
.section-olive { padding: 120px 56px; background: var(--olive-pale); }
.section-dark { padding: 120px 56px; background: var(--ink); }

.section-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.section-label::before { content:''; display:block; width:34px; height:2px; background:var(--green); }
.section-label.on-dark { color: var(--green-light); }
.section-label.on-dark::before { background: var(--green-light); }
.section-label.olive { color: var(--olive); }
.section-label.olive::before { background: var(--olive); }
.section-label.blue { color: var(--blue); }
.section-label.blue::before { background: var(--blue); }

/* ── TITLE STYLES WITH EM ── */
.section-title, .product-page-hero .hero-h1, .cta-title, .hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.section-title em, .product-page-hero .hero-h1 em, .cta-title em, .hero-h1 em {
  font-style: italic;
  color: var(--green);
}

.section-title {
  font-size: clamp(40px, 4.6vw, 68px); line-height: 1.06; color: var(--ink); max-width: 760px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.green { color: var(--green); }
.section-title.green em { color: var(--green-dark); }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--green); }
/* Subtítulo destacado (h3 / etiquetas grandes verdes) */
.subtitle-green { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(22px, 2.4vw, 32px); color: var(--green); line-height: 1.2; margin-bottom: 14px; }

.section-body { font-size: 16px; font-weight: 300; color: var(--ink-mid); line-height: 1.75; max-width: 560px; margin-top: 18px; }
.section-body.on-dark { color: rgba(255,255,255,0.5); }

/* ── FOOTER ── */
footer { padding:80px 56px 44px; background: linear-gradient(135deg, var(--green) 0%, var(--ink) 50%, #000 100%); border-top:2px solid rgba(107,124,92,0.2); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-brand-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; color:var(--white); margin-bottom:7px; }
.footer-brand-name img { height: 75px; object-fit: contain; }
.footer-tagline { font-size:12px; font-weight:300; color:var(--white); line-height:1.6; margin-bottom:22px; }
.footer-social { display:flex; gap:10px; }
.social-btn { width:34px; height:34px; border:1px solid rgba(107,124,92,0.3); display:flex; align-items:center; justify-content:center; font-size:11px; color:rgba(255,255,255,0.3); cursor:none; text-decoration:none; transition:all 0.25s; }
.social-btn:hover { border-color:var(--olive-light); color:var(--olive-light); }
.footer-col-title { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive-light); margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-links a { font-size:13px; font-weight:300; color:var(--white); text-decoration:none; cursor:none; transition:color 0.25s; }
.footer-links a:hover { color:var(--olive-light); }
.footer-contact-item { display:flex; gap:10px; margin-bottom:10px; font-size:13px; font-weight:300; color:var(--white); }
.footer-bottom { padding-top:28px; border-top:1px solid rgba(107,124,92,0.12); display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:11px; color:var(--white); }

/* ── MOBILE NAV ── */
.mobile-nav { display:flex; position:fixed; inset:0; background:rgba(26,31,24,0.99); backdrop-filter:blur(0px); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px; overflow-y:auto; opacity:0; visibility:hidden; pointer-events:none; transform:scale(1.06); transition:opacity 0.4s ease, visibility 0.4s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1), backdrop-filter 0.5s ease; }
.mobile-nav.open { opacity:1; visibility:visible; pointer-events:auto; transform:scale(1); backdrop-filter:blur(20px); }
.mobile-nav > * { opacity:0; transform:translateY(26px); transition:opacity 0.5s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.mobile-nav.open > * { opacity:1; transform:translateY(0); }
.mobile-nav.open > *:nth-child(1) { transition-delay:0.10s; }
.mobile-nav.open > *:nth-child(2) { transition-delay:0.16s; }
.mobile-nav.open > *:nth-child(3) { transition-delay:0.22s; }
.mobile-nav.open > *:nth-child(4) { transition-delay:0.28s; }
.mobile-nav.open > *:nth-child(5) { transition-delay:0.34s; }
.mobile-nav.open > *:nth-child(6) { transition-delay:0.40s; }
.mobile-nav.open > *:nth-child(7) { transition-delay:0.46s; }
.mobile-nav-close { position:absolute; top:22px; right:24px; width:44px; height:44px; display:flex; align-items:center; justify-content:center; background:none; border:none; color:var(--white); font-size:40px; line-height:1; cursor:none; transition:color 0.25s, transform 0.25s; }
.mobile-nav-close:hover { color:var(--green); transform:rotate(90deg); }
.mobile-nav a { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:300; color:var(--white); text-decoration:none; cursor:none; transition:color 0.25s; }
.mobile-nav a:hover { color:var(--green); }
.mobile-nav-section { position:relative; }
.mobile-nav-toggle { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:300; color:var(--white); background:none; border:none; cursor:none; transition:color 0.25s; padding:0; display:flex; align-items:center; gap:8px; }
.mobile-nav-toggle:hover { color:var(--green); }
.mobile-nav-submenu { display:none; flex-direction:column; gap:16px; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.2); }
.mobile-nav-submenu.open { display:flex; }
.mobile-nav-submenu a { font-size:22px; color:rgba(255,255,255,0.8); }
.mobile-nav-submenu a:hover { color:var(--green); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity:0; transform:translateY(22px); transition:opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity:1; transform:none; }

/* Entrada de los heros de página (igual que el hero de inicio) */
.product-page-hero .hero-eyebrow,
.product-page-hero .hero-h1,
.product-page-hero .hero-sub,
.product-page-hero .hero-actions { opacity:0; animation:fadeUp 0.8s ease forwards; }
.product-page-hero .hero-eyebrow { animation-delay:0.15s; }
.product-page-hero .hero-h1 { animation-delay:0.30s; }
.product-page-hero .hero-sub { animation-delay:0.45s; }
.product-page-hero .hero-actions { animation-delay:0.60s; }

/* Aparición al hacer scroll (activada por JS con .reveal-in).
   Usa animation (no transition) para no contaminar los hovers con el
   delay escalonado — el delay se pasa vía CSS variable --reveal-delay. */
.reveal { opacity:0; transform:translateY(28px); }
.reveal.reveal-in {
  animation: revealIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes revealIn {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:none; }
}

@media (prefers-reduced-motion: reduce) {
  .product-page-hero .hero-eyebrow,
  .product-page-hero .hero-h1,
  .product-page-hero .hero-sub,
  .product-page-hero .hero-actions { animation:none; opacity:1; }
  .reveal { opacity:1; transform:none; }
  .reveal.reveal-in { animation:none; }
}

/* ── NOSOTROS SECTION ── */
.numbers-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--olive-border); margin-top:44px; }
.num-item { background:var(--olive-pale); padding:38px 30px; }
.num-big { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:600; color:var(--olive); line-height:1; }
.num-text { font-size:12px; font-weight:400; color:var(--ink-low); margin-top:7px; }
.valor-items { display:flex; flex-direction:column; gap:18px; margin-top:44px; }
.valor-item { padding:22px 26px; border:1px solid var(--olive-border); background:var(--white); transition:border-color 0.3s, background 0.3s, color 0.3s; }
.valor-item:hover { border-color:var(--green); background:var(--green); }
.valor-item:hover .valor-title { color: var(--white); }
.valor-item:hover .valor-text { color: var(--white); }
.valor-title { font-family:'Cormorant Garamond',serif; font-size:19px; font-weight:600; color:var(--ink); margin-bottom:7px; }
.valor-text { font-size:13px; font-weight:400; color:var(--ink-low); line-height:1.6; }

/* ── SERVICES & OFFICE ── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--olive-border); margin-top: 44px; }
.service-item { background: var(--white); padding: 28px 22px; display: flex; align-items: flex-start; gap: 12px; transition: background 0.25s; }
.service-item:hover { background: var(--olive-pale); }
.service-icon { font-size: 17px; flex-shrink: 0; }
.service-text { font-size:13px; font-weight:400; color:var(--ink-mid); line-height:1.5; }

.office-table { width:100%; border-collapse:collapse; margin-top:44px; }
.office-table th { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive); padding:14px 22px; text-align:left; border-bottom:1px solid var(--olive-border); }
.office-table td { padding:18px 22px; font-size:14px; font-weight:300; color:var(--ink-mid); border-bottom:1px solid var(--surface3); transition:background 0.2s; }
.office-table tr:hover td { background:var(--olive-pale); }
.office-table td:first-child { font-family:'Cormorant Garamond',serif; font-size:18px; color:var(--ink); }
.status-dot { width:8px; height:8px; background:var(--green); border-radius:50%; display:inline-block; margin-right:7px; }
.status-dot.yellow { background:#d97706; }

/* ── LOCATION CARDS ── */
.surround-card { padding:40px; background:var(--white); border:1px solid var(--olive-border); transition:border-color 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s; cursor:none; }
.surround-card:hover { border-color:var(--green); box-shadow:0 12px 32px rgba(20,153,75,0.06); background: var(--green); }
.surround-card:hover .surround-title { color: var(--white); }
.surround-card:hover .surround-text { color: var(--white); }
.surround-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.surround-title { font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.surround-text { font-size:12px; color:var(--ink-low); line-height:1.65; }

/* ── PRICE HIGHLIGHT ── */
.price-highlight { padding:88px 56px; background:var(--ink); border-top:1px solid rgba(107,124,92,0.2); text-align:center; position:relative; overflow:hidden; }
.price-highlight::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:480px; height:480px; background:radial-gradient(circle, rgba(20,153,75,0.1) 0%, transparent 70%); }
.price-highlight > * { position:relative; z-index:2; }
.price-main { font-family:'Cormorant Garamond',serif; font-size:clamp(56px, 9vw, 112px); font-weight:600; color:var(--green); line-height:1; }
.price-label { font-size:14px; font-weight:300; color:rgba(255,255,255,0.45); margin-top:10px; }
.price-note { font-size:11px; color:rgba(107,124,92,0.6); margin-top:7px; letter-spacing:0.08em; }

/* ── CTA DARK ── */
.cta-section { padding:100px 56px; background:var(--ink); text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:520px; height:520px; background:radial-gradient(circle, rgba(20,153,75,0.1) 0%, transparent 70%); }
.cta-section > * { position:relative; z-index:2; }
.cta-title { font-family:'Cormorant Garamond',serif; font-size:clamp(30px, 4.5vw, 66px); font-weight:600; color:var(--white); margin-bottom:14px; }
.cta-title em { font-style:italic; color:var(--green); }
.cta-text { font-size:15px; font-weight:300; color:rgba(255,255,255,0.45); margin-bottom:44px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── WHY CHOOSE & AMENITIES ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.why-item { padding: 28px; border: 1px solid var(--olive-border); background: var(--white); transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s; }
.why-item:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(20,153,75,0.07); background: var(--green); }
.why-item:hover .why-item-title { color: var(--white); }
.why-item:hover .why-item-text { color: var(--white); }
.why-icon { font-size: 20px; margin-bottom: 10px; }
.why-item-title { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.why-item-text { font-size:12px; font-weight:400; color:var(--ink-low); line-height:1.6; }

.amenidades-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--olive-border); margin-top: 64px; }
.amenidad-item { background: var(--white); padding: 40px 32px; transition: background 0.3s, color 0.3s; cursor: none; }
.amenidad-item:hover { background: var(--green); color: var(--white); }
.amenidad-item:hover .amenidad-title { color: var(--white); }
.amenidad-item:hover .amenidad-desc { color: var(--white); }
.amenidad-icon { font-size: 28px; margin-bottom: 14px; }
.amenidad-title { font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.amenidad-desc { font-size:12px; font-weight:400; color:var(--ink-low); line-height:1.65; }

.olive-band { background: var(--olive-pale); border-top: 1px solid var(--olive-border); border-bottom: 1px solid var(--olive-border); padding: 72px 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.olive-band-item { padding: 0 32px; border-right: 1px solid var(--olive-border); text-align: center; }
.olive-band-item:first-child { padding-left: 0; }
.olive-band-item:last-child { border-right: none; padding-right: 0; }
.olive-band-num { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:600; color:var(--olive); line-height:1; }
.olive-band-label { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-low); margin-top:8px; }

/* ── FILTERS & RESULTS ── */
.filters-bar { padding:60px 56px; background:var(--surface); border-bottom:1px solid var(--olive-border); }
.filters-row { display:flex; gap:14px; align-items:flex-end; flex-wrap:wrap; }
.filter-group { display:flex; flex-direction:column; gap:7px; flex:1; min-width:150px; }
.filter-label { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive); }
.filter-select { background:var(--white); border:1px solid var(--olive-border); color:var(--ink); padding:11px 14px; font-size:13px; font-family:'DM Sans',sans-serif; cursor:none; appearance:none; outline:none; transition:border-color 0.25s; }
.filter-select:focus { border-color:var(--green); }
.filter-btn { background:var(--green); color:var(--white); padding:11px 28px; font-size:11px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; border:none; cursor:none; font-family:'DM Sans',sans-serif; transition:background 0.25s; height:44px; }
.filter-btn:hover { background:var(--green-dark); }

.results-section { padding: 72px 56px; }
.results-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:40px; }
.results-count { font-size:12px; font-weight:300; color:var(--ink-low); letter-spacing:0.1em; }
.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.result-card { background:var(--white); border:1px solid var(--olive-border); padding:36px 30px; transition:border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s; cursor:none; }
.result-card:hover { border-color:var(--green); transform:translateY(-4px); box-shadow:0 20px 48px rgba(20,153,75,0.07); background: var(--green); }
.result-card:hover .result-card-tag { color: var(--white); }
.result-card:hover .result-card-title { color: var(--white); }
.result-card:hover .result-card-size { color: var(--white); }
.result-card:hover .result-features li { color: var(--white); }
.result-card:hover .result-card-price { color: var(--white); }
.result-card:hover .result-card-price-label { color: var(--white); }
.result-card:hover .btn-sm-green { border-color: var(--white); color: var(--white); background: transparent; }
.result-card:hover .btn-sm-olive { border-color: var(--white); color: var(--white); background: transparent; }
.result-card-tag { font-size:9px; letter-spacing:0.28em; text-transform:uppercase; color:var(--olive); margin-bottom:10px; }
.avail-badge { display:inline-flex; align-items:center; gap:6px; padding:4px 10px; font-size:9px; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:18px; }
.avail-badge.green { border:1px solid var(--green); color:var(--green); }
.avail-badge.yellow { border:1px solid #d97706; color:#d97706; }
.result-card-title { font-family:'Cormorant Garamond',serif; font-size:25px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.result-card-size { font-size:12px; font-weight:400; color:var(--ink-low); margin-bottom:22px; }
.result-features { list-style:none; margin-bottom:28px; }
.result-features li { font-size:12px; font-weight:400; color:var(--ink-mid); padding:5px 0; border-bottom:1px solid var(--surface3); display:flex; gap:8px; }
.result-features li::before { content:'·'; color:var(--olive); }
.result-card-price { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; color:var(--green); margin-bottom:3px; }
.result-card-price-label { font-size:11px; color:var(--ink-low); margin-bottom:22px; }
.result-actions { display:flex; gap:8px; flex-wrap:wrap; }
.btn-sm-green { padding:9px 18px; font-size:10px; letter-spacing:0.12em; text-transform:uppercase; border:1px solid var(--green); color:var(--green); background:transparent; cursor:none; font-family:'DM Sans',sans-serif; transition:all 0.25s; }
.btn-sm-green:hover { background:var(--green); color:var(--white); }
.btn-sm-olive { padding:9px 18px; font-size:10px; letter-spacing:0.12em; text-transform:uppercase; border:1px solid var(--olive-border); color:var(--ink-mid); background:transparent; cursor:none; font-family:'DM Sans',sans-serif; transition:all 0.25s; }
.btn-sm-olive:hover { border-color:var(--olive); color:var(--olive); }

/* ── CONTACT SECTION ── */
.contact-section { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.contact-channels { display:flex; flex-direction:column; gap:16px; margin-top:44px; }
.channel-card { border:1px solid var(--olive-border); padding:22px 26px; display:flex; align-items:center; gap:18px; transition:border-color 0.3s, background 0.3s, color 0.3s; cursor:none; text-decoration:none; }
.channel-card:hover { border-color:var(--green); background:var(--green); }
.channel-card:hover .channel-type { color: var(--white); }
.channel-card:hover .channel-value { color: var(--white); }
.channel-card:hover .channel-hours { color: var(--white); }
.channel-icon { font-size:22px; }
.channel-info { flex:1; }
.channel-type { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive); margin-bottom:3px; }
.channel-value { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:600; color:var(--ink); }
.channel-hours { font-size:11px; color:var(--ink-low); margin-top:2px; }
.channel-arrow { color:var(--green); opacity:0; transition:opacity 0.3s; }
.channel-card:hover .channel-arrow { opacity:1; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-label { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive); }
.form-input, .form-select, .form-textarea { background:var(--surface); border:1px solid var(--olive-border); color:var(--ink); padding:13px 16px; font-size:14px; font-family:'DM Sans',sans-serif; outline:none; transition:border-color 0.3s; cursor:none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--green); background:var(--white); }
.form-input::placeholder, .form-textarea::placeholder { color:var(--ink-low); }
.form-select option { background:var(--white); color:var(--ink); }
.form-textarea { resize:vertical; min-height:116px; }
.form-submit { background:var(--green); color:var(--white); padding:17px; font-size:12px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; border:none; cursor:none; font-family:'DM Sans',sans-serif; transition:background 0.25s; margin-top:6px; }
.form-submit:hover { background:var(--green-dark); }

/* ── RESPONSIVE ── */
@media (max-width:768px) {
  nav { padding:0 22px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .section-light, .section-surface, .section-surface2, .section-olive, .section-dark { padding:80px 22px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  /* Mobile grid conversions */
  .why-grid { grid-template-columns:1fr; }
  .amenidades-grid { grid-template-columns:1fr; }
  .olive-band { grid-template-columns:1fr; padding:48px 22px; }
  .olive-band-item { padding:24px 0 !important; border-right:none !important; border-bottom:1px solid var(--olive-border); text-align:left; }
  .olive-band-item:last-child { border-bottom:none; }
  .services-grid { grid-template-columns:1fr; }
  .results-grid { grid-template-columns:1fr; }
  .contact-section { grid-template-columns:1fr; gap:40px; }
  .form-row { grid-template-columns:1fr; }
  .price-highlight { padding:60px 22px; }
}

/* ── SPACING HELPERS ── */
.mt-64 { margin-top: 64px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── GALERÍA DE FOTOS ── */
.gallery-section { padding: 100px 56px; background: var(--surface); }
.gallery-header { max-width: 1200px; margin: 0 auto 48px; text-align: left; }
.gallery-header .section-label { margin-bottom: 14px; }
.gallery-header .section-title { margin-bottom: 16px; max-width: 720px; }
.gallery-header .section-body { color: var(--ink-mid); font-size: 15px; line-height: 1.7; max-width: 620px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1200px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; background: var(--ink); border-radius: 2px; box-shadow: 0 4px 16px rgba(26,31,24,0.08); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(26,31,24,0.18); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.4s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.92); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(26,31,24,0.45) 100%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-zoom { position: absolute; bottom: 14px; right: 14px; width: 38px; height: 38px; background: rgba(255,255,255,0.92); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; backdrop-filter: blur(8px); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }

/* Variante "mosaic" — imágenes con diferentes alturas para look editorial */
.gallery-mosaic { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-mosaic .gallery-item { aspect-ratio: auto; }
.gallery-mosaic .gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-mosaic .gallery-item:nth-child(4) { grid-column: span 2; }

/* Lightbox */
.gallery-lightbox { position: fixed; inset: 0; background: rgba(15,18,14,0.94); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(6px); }
.gallery-lightbox.open { display: flex; opacity: 1; }
.gallery-lightbox img { max-width: 92%; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: lbIn 0.4s cubic-bezier(0.22,1,0.36,1); }
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.gallery-lightbox-close { position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; transition: background 0.25s, transform 0.25s; }
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.gallery-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; transition: background 0.25s, transform 0.25s; user-select: none; }
.gallery-lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.gallery-lightbox-nav.prev { left: 28px; }
.gallery-lightbox-nav.next { right: 28px; }
.gallery-lightbox-nav.prev:hover { transform: translateY(-50%) translateX(-3px); }
.gallery-lightbox-nav.next:hover { transform: translateY(-50%) translateX(3px); }
.gallery-lightbox-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .gallery-mosaic .gallery-item:nth-child(1) { grid-row: span 2; grid-column: span 2; }
  .gallery-mosaic .gallery-item:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 768px) {
  .gallery-section { padding: 70px 22px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: 240px 240px 240px 240px; gap: 12px; }
  .gallery-mosaic .gallery-item:nth-child(n) { grid-row: auto; grid-column: auto; }
  .gallery-lightbox { padding: 20px; }
  .gallery-lightbox-nav { width: 42px; height: 42px; font-size: 18px; }
  .gallery-lightbox-nav.prev { left: 10px; }
  .gallery-lightbox-nav.next { right: 10px; }
  .gallery-lightbox-close { top: 14px; right: 14px; }
}


/* ── Acceso a la plataforma de gestión (web app) ─────────────────────────
   Botón discreto junto a "Agendar visita". Sobre el hero oscuro va en blanco
   y sobre las páginas claras (.light) toma el color de tinta. */
/* Los dos botones del extremo derecho viajan juntos: si fueran hijos
   sueltos del nav, el space-between les abriría un hueco en medio. */
.nav-acciones { display: flex; align-items: center; gap: 10px; }
.nav-acciones .nav-login, .nav-acciones .nav-cta { margin-left: 0; }
@media (max-width: 768px) { .nav-acciones { display: none; } }

.nav-login {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white); text-decoration: none; padding: 9px 16px; margin-left: 10px;
  border: 1px solid rgba(255,255,255,0.45); cursor: none; font-family: 'DM Sans', sans-serif;
  transition: color 0.25s, border-color 0.25s, background 0.25s; white-space: nowrap;
}
.nav-login:hover { color: var(--green-light); border-color: var(--green-light); }
/* OJO: al bajar, el nav NO se vuelve blanco — toma --nav-bg, que es oscuro
   translúcido. Por eso el botón se queda en blanco igual que los demás
   enlaces; solo la barra blanca (nav.light) lleva texto oscuro. */
nav.light .nav-login { color: var(--ink); border-color: rgba(107,124,92,0.45); }
nav.light .nav-login:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 768px) { .nav-login { display: none; } }

.mobile-nav-login {
  font-family: 'DM Sans', sans-serif !important; font-size: 13px !important; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); padding: 14px 26px; margin-top: 8px;
}
.mobile-nav-login:hover { border-color: var(--green); }
