@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a1f2e;
  --navy-mid: #242938;
  --gold: #c9a96e;
  --gold-light: #dfc090;
  --cream: #f7f4ef;
  --cream-dark: #ede9e2;
  --white: #ffffff;
  --text-dark: #1a1f2e;
  --text-mid: #4a4f5e;
  --text-light: #8a8f9e;
  --green-wa: #25d366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.6; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 2.5rem; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.28); transition: padding 0.4s ease; }
.nav.solid, .nav.scrolled { padding: 0.7rem 2.5rem; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--gold-light); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; opacity: 1 !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--white); }

/* HERO (home) */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 5rem; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,31,46,0.1) 0%, rgba(26,31,46,0.2) 40%, rgba(26,31,46,0.65) 75%, rgba(26,31,46,0.88) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 1.25rem; max-width: 780px; }
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 0.88rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); margin-bottom: 2rem; display: flex; flex-wrap: wrap; }
.hero-subtitle span { display: inline-flex; align-items: center; }
.hero-subtitle span::after { content: '·'; color: var(--gold); margin: 0 0.5rem; }
.hero-subtitle span:last-child::after { display: none; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-microcopy { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.hero-microcopy span { color: var(--gold); margin: 0 0.4rem; }

/* HERO INNER (subpages) */
.hero-inner { position: relative; min-height: 70vh; display: flex; align-items: flex-end; padding: 8rem 2.5rem 4rem; overflow: hidden; }
.hero-inner-bg { position: absolute; inset: 0; z-index: 0; }
.hero-inner-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-inner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,31,46,0.45) 0%, rgba(26,31,46,0.55) 60%, rgba(26,31,46,0.85) 100%); z-index: 1; }
.hero-inner-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.hero-inner h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 1.25rem; max-width: 820px; }
.hero-inner h1 em { font-style: italic; color: var(--gold-light); }
.hero-inner-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 640px; margin-bottom: 2rem; line-height: 1.7; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--navy); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: 2px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--white); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.4); transition: border-color 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--green-wa); color: var(--white); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2.4rem; border-radius: 999px; transition: background 0.2s, transform 0.2s; }
.btn-whatsapp:hover { background: #1fba58; transform: translateY(-2px); }
.btn-consultar { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--gold, #c9a96e); color: var(--navy, #1a1f2e); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2.2rem; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.2s; font-family: inherit; }
.btn-consultar:hover { background: var(--gold-light, #dfc090); transform: translateY(-2px); }
.btn-email { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.3); transition: color 0.2s; }
.btn-email:hover { color: var(--gold-light); border-color: var(--gold); }

/* TRUST STRIP */
.trust-strip { background: var(--gold); padding: 1rem 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }

/* GENERIC SECTIONS */
.eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-title { margin-bottom: 0; }

.section { padding: 6rem 2.5rem; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-wide { max-width: 1200px; margin: 0 auto; }

.prose { font-size: 1.02rem; font-weight: 300; line-height: 1.85; color: var(--text-mid); }
.prose p { margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 500; }
.prose-center { text-align: center; }

/* WHY / GEO BLOCK */
.why-section { background: var(--white); padding: 5rem 2.5rem; text-align: center; }
.why-text { max-width: 760px; margin: 0 auto; font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: var(--text-mid); }
.why-text p { margin-bottom: 1.25rem; }
.why-text p:last-child { margin-bottom: 0; }
.why-text strong { color: var(--navy); font-weight: 500; }

/* VALUE (navy) */
.value-section { background: var(--navy); padding: 5.5rem 2.5rem; text-align: center; }
.value-section .section-title { color: var(--white); }
.value-section .section-title em, .value-section .eyebrow { color: var(--gold-light); }
.value-section .eyebrow { color: var(--gold); }
.value-text { max-width: 720px; margin: 0 auto 2rem; font-size: 1rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.72); }
.value-text p { margin-bottom: 1.1rem; }
.value-closing { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--gold-light); font-weight: 300; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); padding: 2.5rem; border-top: 3px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,31,46,0.1); }
.card-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--navy); margin-bottom: 1rem; line-height: 1.25; }
.card p { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.5rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: gap 0.2s; }
.card-link:hover { gap: 0.7rem; }

/* APARTMENT / SPLIT */
.split { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.align-start { align-items: start; }
.split-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 1.5rem; }
.split-text p { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.25rem; }
.split-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.spec-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: var(--cream); border-left: 2px solid var(--gold); }
.spec-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--navy); line-height: 1; }
.spec-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-top: 0.2rem; }
.amenities-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.amenities-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 400; color: var(--text-mid); }
.amenities-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* MINI GALLERY (split) */
.mini-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 180px; gap: 0.75rem; }
.mini-gallery .g-main { grid-column: 1 / -1; }
.mini-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* FULL GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; max-width: 1200px; margin: 2rem auto 0; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: opacity 0.3s; cursor: pointer; }
.gallery-grid img:hover { opacity: 0.85; }
.gallery-grid .wide { grid-column: span 2; aspect-ratio: 16/9; }

/* DISTANCES */
.distances-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.distance-item { background: var(--white); padding: 1.5rem; text-align: center; border-bottom: 3px solid transparent; transition: border-color 0.3s; }
.distance-item:hover { border-color: var(--gold); }
.distance-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.distance-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 0.25rem; }
.distance-time { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }

/* HISTORY */
.history { background: var(--navy-mid); padding: 5rem 2.5rem; }
.history-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.history h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 2rem; }
.history p { font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.72); margin-bottom: 1.25rem; }
.history-quote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--gold-light); font-weight: 300; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(201,169,110,0.3); }

/* EVENTS */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.event-card { background: var(--navy); padding: 2.5rem; position: relative; overflow: hidden; transition: transform 0.3s; }
.event-card:hover { transform: translateY(-4px); }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.event-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,0.12); padding: 0.3rem 0.7rem; margin-bottom: 1.25rem; }
.event-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--white); line-height: 1.25; margin-bottom: 1rem; }
.event-card p { font-size: 0.875rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; }
.event-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 2px; transition: gap 0.2s; }
.event-cta:hover { gap: 0.7rem; }

/* TRUST BENEFITS */
.trust-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 3rem auto 0; }
.trust-benefit { display: flex; align-items: flex-start; gap: 1rem; }
.trust-benefit-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.section-white .trust-benefit-icon { background: var(--cream); }
.trust-benefit h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.trust-benefit p { font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--text-mid); }
.platforms-note { max-width: 1000px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--cream-dark); text-align: center; font-size: 0.82rem; color: var(--text-light); }
.platforms-note a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 2px; }
.platforms-note a:hover { color: var(--gold); }

/* FAQ */
.faq-section { background: var(--cream); padding: 6rem 2.5rem; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 0.75rem; border-left: 2px solid var(--gold); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.4rem 1.75rem; font-family: var(--font-body); font-size: 0.98rem; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.75rem; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.75rem 1.4rem; }
.faq-a p { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-mid); }

/* COMPARISON TABLE */
.compare { max-width: 900px; margin: 0 auto; background: var(--white); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 1px solid var(--cream-dark); }
.compare-row.head { background: var(--navy); }
.compare-row.head > div { color: var(--white); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 1.1rem 1.25rem; }
.compare-row.head .col-us { color: var(--gold-light); }
.compare-cell { padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: center; }
.compare-cell.label { font-weight: 500; color: var(--navy); }
.compare-cell.col-us { background: rgba(201,169,110,0.07); font-weight: 500; color: var(--navy); }

/* CTA FINAL */
.cta-final { position: relative; padding: 7rem 2.5rem; text-align: center; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-final-overlay { position: absolute; inset: 0; background: rgba(26,31,46,0.78); z-index: 1; }
.cta-final-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-final h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; }
.cta-final p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-microcopy { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.cta-microcopy span { color: var(--gold); margin: 0 0.3rem; }

/* URGENCY (FIB) */
.urgency { background: var(--gold); padding: 4rem 2.5rem; text-align: center; }
.urgency-inner { max-width: 720px; margin: 0 auto; }
.urgency h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.urgency p { font-size: 1rem; color: rgba(26,31,46,0.8); font-weight: 400; margin-bottom: 2rem; line-height: 1.7; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.step { text-align: center; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 0.75rem; }
.step p { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--text-mid); }

/* FOOTER */
.footer { background: var(--navy); padding: 4rem 2.5rem 2rem; border-top: 1px solid rgba(201,169,110,0.2); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 36px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer-brand .reg { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 58px; height: 58px; background: var(--green-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; animation: wa-pulse 3s infinite; }
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes wa-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .distances-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-benefits { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .events-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding-bottom: 3.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .hero-h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 7rem 1.5rem 3rem; min-height: 60vh; }
  .trust-strip { padding: 1rem; gap: 0.75rem 1.5rem; }
  .section, .why-section, .value-section, .history, .faq-section, .urgency { padding: 4rem 1.5rem; }
  .cards-grid, .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .distances-grid { grid-template-columns: 1fr 1fr; }
  .trust-benefits { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-final { padding: 5rem 1.5rem; }
  .mini-gallery { grid-template-rows: 200px 140px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row.head { display: none; }
  .compare-cell { border-bottom: 1px solid var(--cream-dark); }
  .compare-cell.label { background: var(--cream); font-weight: 600; }
  .section-header { margin-bottom: 2.5rem; }
}

/* ============================================================
   HOME v2 — Continuación del vídeo (luz, calma, Mediterráneo)
   ============================================================ */
:root {
  --sand: #efe9e0;
  --sand-warm: #e8ddcc;
  --terracotta: #c08457;
  --sea: #6f8a8d;
  --ink: #2b2f38;
  --ink-soft: #565b66;
}

/* Hero más luminoso (el vídeo es claro) */
.hero-overlay.light { background: linear-gradient(to bottom, rgba(43,47,56,0.05) 0%, rgba(43,47,56,0.12) 45%, rgba(43,47,56,0.42) 78%, rgba(43,47,56,0.72) 100%); }
.hero-h1.airy { font-weight: 300; letter-spacing: 0.01em; max-width: 820px; }
.hero-h1.airy em { color: var(--gold-light); font-style: italic; }

/* Sección LUGAR: el mar como apertura, mucho aire */
.lugar { background: var(--cream); padding: 7rem 2.5rem; text-align: center; }
.lugar-inner { max-width: 720px; margin: 0 auto; }
.lugar .kicker { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1.5rem; display: block; }
.lugar h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; line-height: 1.25; color: var(--ink); margin-bottom: 1.75rem; }
.lugar h2 em { font-style: italic; color: var(--terracotta); }
.lugar p { font-size: 1.05rem; font-weight: 300; line-height: 1.9; color: var(--ink-soft); }

/* Banda de imagen ancha (respiración entre secciones, como un plano del vídeo) */
.full-bleed { position: relative; height: 60vh; min-height: 380px; overflow: hidden; }
.full-bleed img { width: 100%; height: 100%; object-fit: cover; }
.full-bleed .fb-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 3rem 2.5rem 2.5rem; background: linear-gradient(to top, rgba(43,47,56,0.6), transparent); }
.full-bleed .fb-caption p { max-width: 1200px; margin: 0 auto; font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-weight: 300; font-style: italic; color: #fff; line-height: 1.35; }

/* UMBRAL: cruzar la puerta azul */
.umbral { background: var(--white); padding: 6rem 2.5rem; }
.umbral-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.umbral-img { overflow: hidden; }
.umbral-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.umbral-text { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; background: var(--sand); }
.umbral-text .kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; }
.umbral-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 300; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }
.umbral-text p { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem; }

/* DÍA PERFECTO: narración con horas */
.dia { background: var(--sand); padding: 6.5rem 2.5rem; }
.dia-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.dia-header .kicker { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; display: block; }
.dia-header h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--ink); line-height: 1.2; }
.dia-timeline { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }
.dia-moment { display: grid; grid-template-columns: 90px 1fr; gap: 2rem; align-items: start; }
.dia-time { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--terracotta); line-height: 1.2; padding-top: 0.2rem; }
.dia-moment h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.dia-moment p { font-size: 0.96rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }
.dia-moment.with-img { grid-template-columns: 90px 1fr 1.1fr; }
.dia-moment.with-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* MOMENTOS: galería con emoción */
.moments { background: var(--white); padding: 6.5rem 2.5rem; }
.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.moment { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.moment.tall { grid-row: span 1; }
.moment img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.moment:hover img { transform: scale(1.04); }
.moment span { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.25rem 1.1rem; background: linear-gradient(to top, rgba(43,47,56,0.7), transparent); color: #fff; font-family: var(--font-display); font-size: 1.05rem; font-style: italic; font-weight: 300; line-height: 1.3; }

/* ANFITRIONA */
.host { background: var(--sand); padding: 6.5rem 2.5rem; }
.host-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: center; }
.host-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--sand-warm); display: flex; align-items: center; justify-content: center; }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-photo .ph-note { text-align: center; padding: 1.5rem; color: var(--ink-soft); font-size: 0.8rem; line-height: 1.5; }
.host-text .kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; display: block; }
.host-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.2vw,2.5rem); font-weight: 300; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.25; }
.host-text p { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--ink-soft); margin-bottom: 1rem; }
.host-sign { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--ink); margin-top: 0.5rem; }

/* RESERVAR SIN RIESGO */
.norisk { background: var(--white); padding: 6.5rem 2.5rem; }
.norisk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1100px; margin: 3rem auto 0; }
.norisk-card { text-align: center; padding: 2rem 1.5rem; }
.norisk-icon { width: 52px; height: 52px; margin: 0 auto 1.25rem; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; }
.norisk-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; }
.norisk-card p { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

@media (max-width: 768px) {
  .lugar, .umbral, .dia, .moments, .host, .norisk { padding: 4rem 1.5rem; }
  .umbral-inner { grid-template-columns: 1fr; }
  .umbral-text { padding: 2.5rem 1.5rem; }
  .dia-moment, .dia-moment.with-img { grid-template-columns: 70px 1fr; }
  .dia-moment.with-img img { display: none; }
  .moments-grid { grid-template-columns: 1fr 1fr; }
  .host-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .host-photo { max-width: 220px; margin: 0 auto; }
  .norisk-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .full-bleed { height: 45vh; }
}

/* ============================================================
   ANIMACIONES SUAVES (estilo Framer Motion, en CSS puro)
   ============================================================ */
/* Aparición al hacer scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
/* Retardos escalonados para elementos en serie */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Ken Burns: zoom lento en imágenes grandes (como un plano de vídeo) */
.kenburns { animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Hero slides: leve zoom continuo en el pase de fotos */
.hero-slide.active img { animation: kenburns 8s ease-in-out infinite alternate; }

/* Accesibilidad: si el usuario pide reducir movimiento, lo respetamos */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .kenburns, .hero-slide.active img { animation: none !important; }
}

/* Tagline bajo el titular de portada */
.hero-tagline { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; max-width: 600px; }

/* ============================================================
   RESERVA DONDE PREFIERAS — directa + plataformas (equilibrio)
   ============================================================ */
.booking-choice { max-width: 760px; margin: 3.5rem auto 0; text-align: center; }
.booking-choice .bc-direct { background: var(--sand); border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid var(--terracotta); }
.booking-choice .bc-tag { display:inline-block; font-size:0.66rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#fff; background:var(--terracotta); padding:0.3rem 0.8rem; border-radius:20px; margin-bottom:1rem; }
.booking-choice .bc-direct h3 { font-family:var(--font-display); font-size:1.5rem; font-weight:400; color:var(--ink); margin-bottom:0.5rem; }
.booking-choice .bc-direct p { font-size:0.9rem; font-weight:300; color:var(--ink-soft); margin-bottom:1.5rem; }
.booking-choice .bc-or { font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-light); margin:1.75rem 0 1.25rem; position:relative; }
.booking-choice .bc-or::before, .booking-choice .bc-or::after { content:''; position:absolute; top:50%; width:28%; height:1px; background:var(--cream-dark); }
.booking-choice .bc-or::before { left:0; } .booking-choice .bc-or::after { right:0; }
.brand-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.brand-btn { display:inline-flex; align-items:center; justify-content:center; gap:0.6rem; padding:0.95rem 1.8rem; border-radius:10px; font-weight:600; font-size:0.92rem; letter-spacing:0.01em; transition:transform 0.2s, box-shadow 0.2s; min-width:200px; }
.brand-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
.brand-btn small { display:block; font-size:0.68rem; font-weight:400; opacity:0.85; letter-spacing:0.04em; }
.brand-airbnb { background:#FF5A5F; color:#fff; }
.brand-booking { background:#003580; color:#fff; }
.brand-ico { font-weight:700; font-size:1.1rem; }
@media (max-width:768px){ .brand-btn{ width:100%; } .booking-choice .bc-or::before,.booking-choice .bc-or::after{ width:18%; } }

/* ============================================================
   BOTONES FLOTANTES APILADOS (WhatsApp + Airbnb + Booking)
   ============================================================ */
.float-stack { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 200; display: flex; flex-direction: column; gap: 0.7rem; align-items: center; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform 0.25s; font-weight: 700; color: #fff; position: relative; }
.float-btn:hover { transform: scale(1.1); }
.float-btn.wa { background: var(--green-wa); animation: wa-pulse 3s infinite; }
.float-btn.wa:hover { animation: none; }
.float-btn.airbnb { background: #FF5A5F; font-size: 1.5rem; }
.float-btn.booking { background: #003580; font-size: 1.05rem; letter-spacing: -0.02em; }
.float-btn.instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
/* Etiqueta al pasar el ratón */
.float-btn .fb-label { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.03em; padding: 0.4rem 0.7rem; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.float-btn:hover .fb-label { opacity: 1; }
@media (max-width: 768px) { .float-stack { bottom: 1rem; right: 1rem; gap: 0.55rem; } .float-btn { width: 50px; height: 50px; } }

/* ============================================================
   CAPA "LUJO SERENO" (Aman / Mediterráneo) — refinamiento Home
   Filosofía: menos pero mejor · aire · tipografía serena · 1 color
   ============================================================ */
:root { --lux-space: clamp(2.75rem, 5vw, 5rem); }

/* Tipografía más grande, fina y con más interletraje en titulares display */
body.lux .section-title,
body.lux .lugar h2,
body.lux .dia-header h2,
body.lux .umbral-text h2,
body.lux .host-text h2 { font-weight: 300; letter-spacing: -0.01em; line-height: 1.12; }
body.lux .lugar h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
body.lux .section-header .section-title,
body.lux .dia-header h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }

/* Más aire entre secciones (el vacío es el lujo) */
body.lux .lugar,
body.lux .umbral,
body.lux .dia,
body.lux .moments,
body.lux .host,
body.lux .norisk,
body.lux .section { padding-top: var(--lux-space); padding-bottom: var(--lux-space); }

/* Eyebrows / kickers más discretos y espaciados */
body.lux .eyebrow, body.lux .lugar .kicker, body.lux .dia-header .kicker,
body.lux .umbral-text .kicker, body.lux .host-text .kicker {
  font-size: 0.66rem; letter-spacing: 0.42em; font-weight: 500; opacity: 0.9;
}

/* Hero: tipografía aún más grande y aireada, overlay más sutil */
body.lux .hero-h1.airy { font-size: clamp(2.6rem, 7vw, 6rem); line-height: 1.04; letter-spacing: -0.015em; }
body.lux .hero-overlay.light { background: linear-gradient(to bottom, rgba(43,47,56,0.04) 0%, rgba(43,47,56,0.08) 50%, rgba(43,47,56,0.38) 80%, rgba(43,47,56,0.66) 100%); }
body.lux .hero-eyebrow { letter-spacing: 0.4em; font-size: 0.66rem; }
body.lux .hero-tagline { font-size: clamp(1.15rem, 2.2vw, 1.7rem); opacity: 0.92; }

/* Full-bleed más alto y cinematográfico, cita más grande y fina */
body.lux .full-bleed { height: 50vh; min-height: 340px; }
body.lux .full-bleed .fb-caption { padding: 5rem 2.5rem 4rem; background: linear-gradient(to top, rgba(43,47,56,0.55), transparent 75%); }
body.lux .full-bleed .fb-caption p { font-size: clamp(1.6rem, 3.4vw, 3rem); font-weight: 300; line-height: 1.28; max-width: 1100px; }

/* Lugar: texto más grande y respirado, una sola columna estrecha */
body.lux .lugar-inner { max-width: 760px; }
body.lux .lugar p { font-size: 1.18rem; line-height: 2; color: var(--ink-soft); }

/* Día perfecto: más separación, líneas finas entre momentos */
body.lux .dia-timeline { gap: 4rem; max-width: 1040px; }
body.lux .dia-moment.with-img { gap: 2.5rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(43,47,56,0.08); }
body.lux .dia-moment.with-img:last-child { border-bottom: none; padding-bottom: 0; }
body.lux .dia-time { font-size: 1.9rem; }
body.lux .dia-moment h3 { font-size: 1.7rem; font-weight: 300; }
body.lux .dia-moment p { font-size: 1.02rem; line-height: 1.9; }

/* Momentos: a pantalla más amplia, sin tanto borde, hover lento */
body.lux .moments-grid { gap: 1.25rem; }
body.lux .moment { aspect-ratio: 4/5; }
body.lux .moment span { font-size: 1.15rem; padding: 2.5rem 1.5rem 1.4rem; }

/* Umbral: imagen más protagonista, texto con más aire */
body.lux .umbral-inner { gap: 0; }
body.lux .umbral-img img { min-height: 360px; }
body.lux .umbral-text { padding: 4.5rem; }
body.lux .umbral-text h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
body.lux .umbral-text p { font-size: 1.05rem; line-height: 1.95; }

/* Botones más sobrios (lujo = discreción): menos llamativos, más finos */
body.lux .btn-primary { letter-spacing: 0.16em; font-weight: 500; padding: 1.05rem 2.4rem; border-radius: 0; }
body.lux .btn-secondary { letter-spacing: 0.16em; }
body.lux .nav-cta { border-radius: 0; font-weight: 500; letter-spacing: 0.14em; }

/* Trust strip más silenciosa (en lujo, los iconos chillones sobran) */
body.lux .trust-strip { background: var(--ink); }
body.lux .trust-item { color: rgba(255,255,255,0.85); font-weight: 400; letter-spacing: 0.14em; }

/* Distancias: tarjetas sin caja, más editoriales */
body.lux .distance-item { background: transparent; border-bottom: 1px solid rgba(43,47,56,0.1); }
body.lux .distance-item:hover { border-color: var(--terracotta); }

/* Animación de revelado un poco más lenta y elegante */
body.lux .reveal { transition: opacity 1.15s cubic-bezier(0.22,1,0.36,1), transform 1.15s cubic-bezier(0.22,1,0.36,1); transform: translateY(36px); }

@media (max-width: 768px) {
  body.lux .umbral-text { padding: 2.5rem 1.5rem; }
  body.lux .full-bleed { height: 46vh; }
}

/* ============================================================
   HISTORIA — "Una casa con tradición" (lujo, fondo oscuro)
   ============================================================ */
.historia { position: relative; background: var(--navy); overflow: hidden; padding: var(--lux-space, 7rem) 2.5rem; }
.historia-word { position: absolute; top: 50%; right: -2%; transform: translateY(-50%); font-family: var(--font-display); font-size: clamp(14rem, 34vw, 38rem); font-weight: 400; color: rgba(255,255,255,0.025); line-height: 0.8; letter-spacing: -0.02em; pointer-events: none; user-select: none; z-index: 0; }
.historia-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 4.5rem; align-items: center; }
.historia-photo { position: relative; }
.historia-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.historia-photo .ph-hist { width: 100%; aspect-ratio: 4/3; background: #11151f; border: 1px solid rgba(201,169,110,0.25); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.historia-photo .ph-hist span { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; }
.historia-caption { margin-top: 0.9rem; text-align: center; font-size: 0.74rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }
.historia-caption b { color: var(--gold); font-weight: 500; }
.historia-text .kicker { display: inline-flex; align-items: center; gap: 1rem; font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.historia-text .kicker::before { content: ''; width: 40px; height: 1px; background: var(--gold); display: inline-block; }
.historia-text h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.8rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.historia-text h2 em { display: block; font-style: italic; color: var(--gold-light); }
.historia-divider { width: 56px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.historia-text p { font-size: 1rem; font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.72); margin-bottom: 1.4rem; }
.historia-text p .lead { color: #fff; font-weight: 500; }
.historia-text p strong { color: var(--gold-light); font-weight: 500; }
.historia-quote { margin-top: 2.5rem; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.historia-quote p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; font-weight: 300; line-height: 1.5; color: var(--gold-light); margin: 0; }
@media (max-width: 900px) {
  .historia-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .historia-word { font-size: 9rem; opacity: 0.7; }
}

/* ============================================================
   LEGIBILIDAD DEL TEXTO SOBRE EL HERO (mejora de contraste)
   ============================================================ */
/* Capa oscura más marcada abajo, donde está el texto, sin tapar la foto */
body.lux .hero-overlay.light {
  background:
    linear-gradient(to bottom, rgba(20,24,33,0) 0%, rgba(20,24,33,0) 35%, rgba(20,24,33,0.55) 72%, rgba(20,24,33,0.85) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(20,24,33,0.45) 0%, rgba(20,24,33,0) 60%);
}
/* Sombra suave en todo el bloque de texto del hero para despegarlo del fondo */
.hero-content { text-shadow: 0 2px 24px rgba(15,18,26,0.55), 0 1px 4px rgba(15,18,26,0.4); }
/* Titular: un punto más de cuerpo y peso para que destaque */
body.lux .hero-h1.airy { font-weight: 400; text-shadow: 0 4px 30px rgba(15,18,26,0.6), 0 2px 6px rgba(15,18,26,0.5); }
/* Eyebrow y subtítulo más legibles */
.hero-eyebrow { color: var(--gold-light); text-shadow: 0 1px 8px rgba(15,18,26,0.7); font-weight: 600; }
body.lux .hero-tagline { color: #fff; opacity: 1; text-shadow: 0 2px 14px rgba(15,18,26,0.65); }
.hero-subtitle { color: #fff !important; font-weight: 500; }
.hero-subtitle span { color: rgba(255,255,255,0.95); }
.hero-microcopy { color: rgba(255,255,255,0.85); text-shadow: 0 1px 6px rgba(15,18,26,0.6); }

/* Pase de fotos más cinematográfico: zoom lento continuo + transición más suave */
.hero-slide { transition: opacity 1.8s ease; }
/* heroZoom sustituido por heroPan */
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce){ .hero-slide img { animation: none; } }

/* ============================================================
   SECCIÓN DE VÍDEO (pieza cinematográfica, no fondo del hero)
   ============================================================ */
.videosec { background: var(--cream); padding: var(--lux-space, 7rem) 2.5rem; text-align: center; }
.videosec .kicker { font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; display: block; }
.videosec h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 2.5rem; }
.videosec h2 em { font-style: italic; color: var(--terracotta); }
.video-frame { max-width: 1040px; margin: 0 auto; position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; box-shadow: 0 30px 80px rgba(43,47,56,0.22); background: #11151f; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame .vf-note { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; color: rgba(255,255,255,0.85); background: linear-gradient(rgba(43,47,56,0.35), rgba(43,47,56,0.55)); font-size: 0.9rem; }
@media (max-width: 768px){ .videosec { padding: 4rem 1.5rem; } }

/* ============================================================
   SLIDE PRINCIPAL CON EFECTO VÍDEO (zoom + paneo cinematográfico)
   ============================================================ */
.hero-slide { transition: opacity 1s ease-in-out; }
.hero-slide img { will-change: transform; }
/* Cada slide activo hace un lento zoom + paneo, como un plano de cámara */
.hero-slide.active img { animation: heroPan 5s ease-out forwards; }
@keyframes heroPan {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.16) translate3d(-1.5%, -1.2%, 0); }
}
@media (prefers-reduced-motion: reduce){ .hero-slide.active img { animation: none; } }

/* ============================================================
   RESEÑAS / TESTIMONIOS (prueba social, estilo lujo)
   ============================================================ */
.resenas { background: var(--sand-warm, #efe9df); padding: var(--lux-space, 7rem) 2.5rem; }
.resenas-head { text-align: center; max-width: 720px; margin: 0 auto 2.4rem; }
.resenas-head .kicker { font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; display: block; }
.resenas-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 1.25rem; }
.resenas-head h2 em { font-style: italic; color: var(--terracotta); }
.resenas-rating { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--ink); }
.resenas-rating .stars { color: #e6b800; letter-spacing: 2px; font-size: 1.1rem; }
.resenas-rating b { font-weight: 600; }
.resenas-rating .gmark { color: var(--text-soft, #6b7280); }
.resenas-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.resena { background: #fff; border-radius: 6px; padding: 1.35rem 1.3rem; box-shadow: 0 12px 40px rgba(43,47,56,0.07); display: flex; flex-direction: column; }
.resena .stars { color: #e6b800; letter-spacing: 2px; font-size: 1rem; margin-bottom: 1rem; }
.resena p { font-size: 0.95rem; line-height: 1.65; color: var(--ink); font-weight: 300; margin: 0 0 1.1rem; flex-grow: 1; }
.resena .author { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid rgba(43,47,56,0.08); padding-top: 1.1rem; }
.resena .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; flex-shrink: 0; }
.resena .who { display: flex; flex-direction: column; }
.resena .who b { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.resena .who span { font-size: 0.78rem; color: var(--text-soft, #6b7280); }
.resenas-cta { text-align: center; margin-top: 2.5rem; font-size: 0.85rem; color: var(--text-soft, #6b7280); }
.resenas-cta a { color: var(--terracotta); text-decoration: none; font-weight: 500; border-bottom: 1px solid currentColor; }
@media (max-width: 900px){ .resenas-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ============================================================
   PÁGINA RESERVAR — conversión y confianza (scoped rsv-)
   ============================================================ */
.rsv-claudia { background: var(--cream); padding: var(--lux-space, 7rem) 2.5rem; }
.rsv-claudia-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; }
.rsv-claudia-photo { position: relative; }
.rsv-claudia-photo img { width: 100%; max-width: 280px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin: 0 auto; display: block; box-shadow: 0 20px 60px rgba(43,47,56,0.15); }
.rsv-claudia-text .eyebrow { color: var(--terracotta); }
.rsv-claudia-text h2 { font-family: var(--font-display); font-size: clamp(1.9rem,3.6vw,2.9rem); font-weight: 300; color: var(--ink); line-height: 1.15; margin: 0.8rem 0 0.5rem; }
.rsv-claudia-text h3 { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--terracotta); font-size: 1.25rem; margin: 0 0 1.4rem; }
.rsv-claudia-text p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 1.1rem; }
.rsv-claudia-quote { border-left: 2px solid var(--gold); padding-left: 1.2rem; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); margin: 1.6rem 0; }
.rsv-claudia-text .btn-primary { margin-top: 0.5rem; }
@media (max-width: 880px){ .rsv-claudia-inner { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; } .rsv-claudia-quote { text-align: left; } }

/* Motor de reservas (placeholder listo para Smoobu/Lodgify) */
.rsv-engine-sec { background: var(--white); padding: var(--lux-space, 7rem) 2.5rem; }
.rsv-engine-wrap { max-width: 820px; margin: 0 auto; text-align: center; }
.rsv-engine { margin: 2.5rem auto 0; border: 1px solid var(--sand); border-radius: 8px; background: var(--cream); padding: 3rem 2rem; }
/* Cuando se integre Smoobu, el iframe sustituye a .rsv-engine-ph */
.rsv-engine-ph { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--text-mid); }
.rsv-engine-ph svg { color: var(--gold); }
.rsv-engine-ph .soon { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.rsv-engine-ph p { font-size: 1rem; line-height: 1.7; max-width: 460px; margin: 0; }
.rsv-engine-cta { margin-top: 2rem; }

/* Señales de tranquilidad */
.rsv-trust { background: var(--navy); padding: var(--lux-space, 7rem) 2.5rem; }
.rsv-trust .section-header h2, .rsv-trust .eyebrow { color: #fff; }
.rsv-trust .eyebrow { color: var(--gold-light); }
.rsv-trust-grid { max-width: 1000px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }

/* La casa en imágenes (strip de conversión, no galería) */
.rsv-casa { background: var(--cream); padding: var(--lux-space, 7rem) 2.5rem; }
.rsv-casa-strip { max-width: 1100px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 0.9rem; }
.rsv-casa-strip figure { margin: 0; }
.rsv-casa-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 5px; box-shadow: 0 12px 36px rgba(43,47,56,0.10); }
.rsv-casa-strip figcaption { font-size: 0.78rem; color: var(--text-mid); text-align: center; margin-top: 0.6rem; letter-spacing: 0.04em; }
@media (max-width: 760px){ .rsv-casa-strip { grid-template-columns: 1fr 1fr; } }
.rsv-trust-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 2rem 1.4rem; text-align: center; }
.rsv-trust-item .ico { margin-bottom: 0.9rem; display:flex; justify-content:center; }
.rsv-trust-item .ico svg { width: 34px; height: 34px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.rsv-trust-item .stars { color: #e6b800; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 0.4rem; }
.rsv-trust-item h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.rsv-trust-item p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.55; margin: 0; }
.rsv-trust-item a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid currentColor; }
@media (max-width: 880px){ .rsv-trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .rsv-trust-grid { grid-template-columns: 1fr; } }

/* ============================================================
   IMÁGENES PÁGINA SANT PERE (apoyo visual, no galería)
   ============================================================ */
.sp-figure { max-width: 960px; margin: 0 auto; }
.sp-figure img { width: 100%; border-radius: 6px; box-shadow: 0 18px 50px rgba(43,47,56,0.12); display: block; }
.sp-figure figcaption { text-align: center; font-size: 0.8rem; color: var(--text-mid); margin-top: 0.8rem; letter-spacing: 0.03em; font-style: italic; }
.sp-band { padding: 3.5rem 2.5rem; }
.sp-duo { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-duo figure { margin: 0; }
.sp-duo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 6px; box-shadow: 0 14px 40px rgba(43,47,56,0.12); }
.sp-duo figcaption { text-align: center; font-size: 0.78rem; color: var(--text-mid); margin-top: 0.6rem; font-style: italic; }
@media (max-width: 760px){ .sp-duo { grid-template-columns: 1fr; } }


/* ============================================================
   MODAL "Consultar disponibilidad" con selector de fechas
   ============================================================ */
.rsv-modal-overlay {
  position: fixed; inset: 0; z-index: 400; background: rgba(43,47,56,0.55);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center;
  padding: 1.2rem; opacity: 0; transition: opacity 0.25s;
}
.rsv-modal-overlay.open { display: flex; opacity: 1; }
.rsv-modal {
  background: #fff; border-radius: 14px; max-width: 420px; width: 100%;
  padding: 2rem 1.8rem; box-shadow: 0 30px 80px rgba(43,47,56,0.3);
  transform: translateY(20px); transition: transform 0.3s; position: relative;
}
.rsv-modal-overlay.open .rsv-modal { transform: translateY(0); }
.rsv-modal h3 { font-size: 1.4rem; margin: 0 0 0.4rem; color: var(--ink, #2b2f38); font-weight: 600; }
.rsv-modal p.sub { font-size: 0.9rem; color: var(--text-mid, #6b7280); margin: 0 0 1.4rem; }
.rsv-modal label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-mid, #6b7280); margin: 0 0 0.4rem; }
.rsv-modal .rsv-field { margin-bottom: 1.1rem; }
.rsv-modal input, .rsv-modal select, .rsv-modal textarea {
  width: 100%; padding: 0.8rem 0.9rem; border: 1.5px solid rgba(43,47,56,0.15);
  border-radius: 8px; font-size: 1rem; color: var(--ink, #2b2f38); background: #fff;
  font-family: inherit; transition: border-color 0.2s;
}
.rsv-modal textarea { resize: vertical; min-height: 2.6rem; line-height: 1.5; }
.rsv-modal input:focus, .rsv-modal select:focus, .rsv-modal textarea:focus { outline: none; border-color: var(--green-wa, #25D366); }
.rsv-modal .rsv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.rsv-modal .rsv-send {
  width: 100%; margin-top: 0.5rem; background: var(--green-wa, #25D366); color: #fff; /*kept*/
  border: none; padding: 0.95rem; border-radius: 999px; font-size: 1.02rem; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.rsv-modal .rsv-send:hover { transform: translateY(-2px); box-shadow: 0 9px 26px rgba(37,211,102,0.5); }
.rsv-modal .rsv-close {
  position: absolute; top: 0.9rem; right: 1rem; background: none; border: none;
  font-size: 1.6rem; line-height: 1; color: var(--text-mid, #6b7280); cursor: pointer; padding: 0.2rem;
}
.rsv-modal .rsv-err { color: #d9534f; font-size: 0.82rem; margin: -0.6rem 0 0.8rem; display: none; }
.rsv-modal .rsv-note { font-size: 0.74rem; color: var(--text-mid, #6b7280); text-align: center; margin: 0.9rem 0 0; }




@media (max-width: 768px) { .nav-logo img { height: 36px; } }

/* ============================================================
   LOGO integrado en la barra oscura fija (sin caja extra)
   ============================================================ */

/* ============================================================
   PÍLDORA FLOTANTE "Consultar disponibilidad" — dorado de marca
   Transmite reserva elegante (calendario), no chat. Página reservar.
   ============================================================ */
.rsv-float-pill {
  position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 300; display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--gold, #c9a96e); color: var(--navy, #1a1f2e);
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem;
  padding: 1rem 2.2rem; border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 10px 34px rgba(26,31,46,0.28); white-space: nowrap; opacity: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: rsv-pill-in 0.6s ease;
}
.rsv-float-pill:hover { background: var(--gold-light, #dfc090); transform: translateX(-50%) translateY(-3px); box-shadow: 0 14px 40px rgba(26,31,46,0.34); }
.rsv-float-pill svg { width: 19px; height: 19px; }
@keyframes rsv-pill-in { from { transform: translateX(-50%) translateY(24px); } to { transform: translateX(-50%) translateY(0); } }
/* leve respiro cada cierto tiempo para llamar la atención con elegancia */
@keyframes rsv-pill-breathe { 0%,92%,100% { box-shadow: 0 10px 34px rgba(26,31,46,0.28); } 96% { box-shadow: 0 10px 34px rgba(201,169,110,0.55), 0 0 0 6px rgba(201,169,110,0.12); } }
.rsv-float-pill { animation: rsv-pill-in 0.6s ease, rsv-pill-breathe 6s ease-in-out 1.5s infinite; }
.rsv-float-pill:hover { animation: none; }
/* WhatsApp, Airbnb y Booking SIEMPRE visibles a la derecha, en todas las páginas */
@media (max-width: 600px) {
  .rsv-float-pill { bottom: 1rem; width: calc(100% - 2rem); justify-content: center; padding: 0.95rem 1.4rem; font-size: 0.78rem; }
  /* En móvil la píldora ocupa el ancho completo abajo: subimos el stack para que no se solapen */
  .float-stack { bottom: 5.5rem; right: 1rem; }
}

/* (el stack flotante WhatsApp/Airbnb/Booking se muestra también en reservar.html) */

/* La píldora flotante "Consultar disponibilidad" no debe tapar el pie:
   reservamos espacio extra abajo, en el mismo color oscuro del footer. */
body.has-pill .footer,
body.has-sticky-bar .footer { padding-bottom: 6rem; }
@media (max-width: 600px) {
  body.has-pill .footer,
  body.has-sticky-bar .footer { padding-bottom: 7.5rem; }
}

/* ============================================================
   LOGO PREMIUM (Propuesta A): ELCANO protagonista + LIVING firma
   con línea dorada de joyería. Texto puro, nítido. No afecta SEO.
   ============================================================ */
.nav-logo { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; text-decoration: none; }
.footer-logo { align-items: flex-start; width: max-content; max-width: 100%; margin-bottom: 1.25rem; }
.footer-logo .lg-elcano { font-size: 1.35rem; }
.nav-logo .lg-elcano { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; letter-spacing: 0.3em; color: var(--cream); text-indent: 0.3em; }
.nav-logo .lg-living-wrap { display: flex; align-items: center; gap: 0.5rem; width: 100%; margin-top: 0.5rem; }
.nav-logo .lg-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.nav-logo .lg-line.right { background: linear-gradient(90deg, var(--gold), transparent); }
.nav-logo .lg-living { font-family: var(--font-body); font-weight: 400; font-size: 0.56rem; letter-spacing: 0.4em; color: var(--gold); text-indent: 0.4em; white-space: nowrap; }
@media (max-width: 768px) {
  .nav-logo .lg-elcano { font-size: 1.25rem; letter-spacing: 0.26em; text-indent: 0.26em; }
  .nav-logo .lg-living { font-size: 0.5rem; letter-spacing: 0.32em; text-indent: 0.32em; }
  .nav-logo .lg-living-wrap { gap: 0.4rem; margin-top: 0.4rem; }
}

/* ============================================================
   PÁGINA PLAYAS: sección oscura, prosa clara y banda de iconos
   ============================================================ */
.section-dark { background: var(--navy); }
.section-dark .eyebrow { color: var(--gold-light); }
.prose-light { color: rgba(255,255,255,0.86); }
.prose-light .section-title { color: var(--cream); }
.prose-light p { color: rgba(255,255,255,0.82); }
.prose-light strong { color: #fff; }
.rsv-trust-band { max-width: 920px; margin: 2.6rem auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.rsv-trust-band .rsv-trust-item { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: 8px; padding: 1.6rem 1rem; text-align: center; }
.rsv-trust-band .rsv-trust-item svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 0.7rem; display: block; }
.rsv-trust-band .rsv-trust-item h3 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--navy); margin: 0 0 0.3rem; }
.rsv-trust-band .rsv-trust-item p { font-size: 0.8rem; color: var(--text-mid); margin: 0; line-height: 1.4; }
@media (max-width: 760px){ .rsv-trust-band { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px){ .rsv-trust-band { grid-template-columns: 1fr; } }

/* ===== VÍDEO con botón de play (CTA) ===== */
.video-frame{position:relative;overflow:hidden;border-radius:8px;background:#1a1f2e;aspect-ratio:16/9;}
.video-frame video{width:100%;height:100%;display:block;object-fit:cover;border-radius:8px;}
.video-poster{position:absolute;inset:0;background:url('1-97.jpg') center/cover no-repeat;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;cursor:pointer;z-index:2;border-radius:8px;}
.video-poster::after{content:"";position:absolute;inset:0;background:rgba(26,31,46,0.30);border-radius:8px;}
.video-play-btn{position:relative;z-index:3;width:88px;height:88px;border:2px solid #c9a96e;border-radius:50%;background:rgba(26,31,46,0.55);color:#c9a96e;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease;padding:0;}
.video-play-btn svg{width:36px;height:36px;margin-left:4px;}
.video-play-btn:hover{background:#c9a96e;color:#1a1f2e;transform:scale(1.07);}
.video-play-label{position:relative;z-index:3;font-family:'Cormorant Garamond',serif;font-size:1.4rem;letter-spacing:.08em;color:#fff;text-shadow:0 1px 8px rgba(0,0,0,.5);}
.video-frame.playing .video-poster{display:none;}

/* Texto visible para SEO/buscadores pero oculto a la vista */
.sr-only{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ===== HERO centrado premium ===== */
.hero{ align-items:center !important; padding-bottom:0 !important; }
.hero-content{ text-align:center; max-width:900px; display:flex; flex-direction:column; align-items:center; }
.hero-h1.airy{ margin-left:auto; margin-right:auto; }
.hero-tagline{ max-width:640px; margin-left:auto; margin-right:auto; margin-bottom:2.2rem; }
.hero-subtitle{ justify-content:center; }
