:root {
  --bg:       #FAF9F6;
  --surface:  #F2F1EC;
  --dark:     #111111;
  --dark-2:   #333333;
  --muted:    #888888;
  --accent:   #B8966E;
  --navy:     #1B3A6B;
  --navy-dk:  #142D55;
  --border:   #E4E2DA;
  --white:    #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:   4px;
  --radius-lg:12px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden; overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
#header.scrolled {
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 1rem 0;
}
#header .container {
  max-width: none;
  padding-left:  clamp(1.25rem, 3vw, 3.5rem);
  padding-right: clamp(1.25rem, 3vw, 3.5rem);
}
.container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 3.5rem); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
  width: 34px; height: 34px;
  color: var(--navy);
  transition: color 0.4s var(--ease);
}
.logo-text {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--navy); line-height: 1.2;
  transition: color 0.4s var(--ease);
}
.logo-text small {
  display: block; font-size: 0.62rem; font-family: var(--font-sans);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 400;
  transition: color 0.4s var(--ease);
}

#header:not(.scrolled) .logo-icon   { color: rgba(255,255,255,0.92); }
#header:not(.scrolled) .logo-text   { color: rgba(255,255,255,0.92); }
#header:not(.scrolled) .logo-text small { color: rgba(255,255,255,0.42); }
#header:not(.scrolled) .btn-primary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
#header:not(.scrolled) .btn-primary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; background: var(--navy); color: var(--white);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid transparent;
  border-radius: var(--radius); text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--navy-dk); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,58,107,0.55);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; background: transparent; color: var(--white);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.45); border-radius: var(--radius);
  text-decoration: none; transition: border-color 0.3s, background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 28px rgba(255,255,255,0.1), inset 0 0 20px rgba(255,255,255,0.04);
  transform: translateY(-3px);
}
.eyebrow {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}

/* ── HERO ── */
#hero {
  position: relative; min-height: 130dvh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(34vh,36vh,38vh); overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 1s ease;
}
.hero-video.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(8,8,8,0.88) 6%,
    rgba(8,8,8,0.32) 45%,
    rgba(8,8,8,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; color: var(--white); max-width: 780px;
  margin-left: 0;
  margin-right: auto;
  padding-right: clamp(1.25rem, 3vw, 3.5rem);
}
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.38rem 0.85rem; margin-bottom: 1.75rem;
  border: 1px solid rgba(255,255,255,0.32); border-radius: 3px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.88); letter-spacing: 0.18em;
}
.hero-content .eyebrow::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem,5.5vw,5.5rem);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: clamp(0.95rem,1.4vw,1.15rem); font-weight: 300;
  color: rgba(255,255,255,0.68); line-height: 1.75; max-width: 640px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── STATS ── */
#stats { padding: clamp(6rem,12vh,10rem) 0; background: var(--bg); }
.stats-slogan { text-align: center; margin-bottom: clamp(4rem,8vh,6rem); }
.stats-slogan .eyebrow { margin-bottom: 1.5rem; }
.stats-slogan h2 {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.02em;
}
.stats-slogan h2 em { font-style: italic; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item {
  padding: clamp(2rem,5vh,3.5rem) clamp(1.5rem,3vw,2.5rem);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.stat-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 300; color: var(--dark); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }

/* ── IMAGE PARALLAX SECTION ── */
#scroll-video-section { position: relative; height: 200vh; }
.scroll-video-sticky {
  position: sticky; top: 0; height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #080808;
}
.scroll-video-sticky::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 22vh; z-index: 3; pointer-events: none;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.scroll-video-sticky::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 35vh; z-index: 3; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
#scroll-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }
.scroll-video-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; pointer-events: none;
  background: rgba(0,0,0,0.5);
}
.sv-label {
  font-family: var(--font-serif); font-size: clamp(1.6rem,4vw,3.4rem);
  font-weight: 300; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95); white-space: nowrap;
  opacity: 1; min-height: 1.2em;
}
.sv-cursor {
  display: inline-block; width: 2px; height: .9em;
  background: rgba(255,255,255,0.85); margin-left: 3px;
  vertical-align: text-bottom;
  animation: sv-blink 0.7s step-end infinite;
}
@keyframes sv-blink { 50% { opacity: 0; } }

/* ── SERVICES ── */
#services { padding: clamp(6rem,12vh,10rem) 0 clamp(4rem,8vh,6rem); background: var(--bg); }
.section-header { margin-bottom: clamp(3rem,6vh,5rem); }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; max-width: 560px;
}
.section-header h2 em { font-style: italic; }
.services-scroll-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem clamp(1.25rem,3vw,3.5rem) 2rem;
  cursor: grab;
}
.services-scroll-outer::-webkit-scrollbar { display: none; }
.services-scroll-outer.is-grabbing { cursor: grabbing; user-select: none; }
.services-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}
.service-card {
  flex: 0 0 clamp(260px, 29vw, 380px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.75rem,3.5vw,2.5rem);
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  background: var(--bg);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.service-icon { width: 40px; height: 40px; color: var(--accent); flex-shrink: 0; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; line-height: 1.25; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.service-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: auto; transition: gap 0.25s ease;
}
.service-link:hover { gap: 0.7rem; }
@media (max-width: 767px) {
  .service-card { flex: 0 0 260px; }
}

/* ── WHY US ── */
#why-us { padding: clamp(6rem,12vh,10rem) 0; background: var(--dark); color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(3rem,6vh,5rem) clamp(4rem,8vw,8rem);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.why-left .eyebrow { color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.why-left h2 {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.why-left h2 em { font-style: italic; }
.why-left p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 2.5rem; }
.why-items { display: flex; flex-direction: column; }
.why-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0; transform: translateX(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-item.visible { opacity: 1; transform: translateX(0); }
.why-num { font-family: var(--font-serif); font-size: 0.85rem; color: var(--accent); min-width: 2rem; padding-top: 0.1rem; }
.why-text h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.35rem; }
.why-text p { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* ── BOOKING ── */
#booking { padding: clamp(6rem,12vh,10rem) 0; background: var(--bg); }
.booking-inner {
  display: grid; grid-template-columns: 1fr; gap: clamp(3rem,6vh,5rem);
}
@media (min-width: 768px) { .booking-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.booking-left .eyebrow { margin-bottom: 1.5rem; }
.booking-left h2 {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.booking-left h2 em { font-style: italic; }
.booking-left p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea {
  padding: 0.875rem 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color 0.25s; appearance: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 96px; }
.btn-submit {
  padding: 1rem 2rem; background: var(--navy); color: var(--white);
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.3s, transform 0.2s; margin-top: 0.25rem;
}
.btn-submit:hover { background: var(--navy-dk); transform: translateY(-1px); }
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; }

.booking-call-alt {
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
}
.bca-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2.5rem;
}
.bca-inner.reveal { opacity: 1; transform: none; }
.bca-or {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic; font-weight: 300;
  color: var(--dark); line-height: 0.85;
  opacity: 0; transform: translateY(-20px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bca-inner.visible .bca-or { opacity: 1; transform: translateY(0); }
.bca-cta {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.bca-inner.visible .bca-cta { opacity: 1; transform: translateY(0); }
.bca-label {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300; color: var(--muted);
  letter-spacing: 0.01em; margin: 0;
}
.bca-phone {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1rem 2.2rem;
  background: var(--navy); color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300; letter-spacing: 0.01em;
  text-decoration: none; border-radius: var(--radius);
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bca-phone:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,58,107,0.35);
}
.bca-phone svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
#testimonials { padding: clamp(6rem,12vh,10rem) 0; background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  margin-top: clamp(3rem,6vh,4rem);
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4,1fr); } }
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.tcard.visible { opacity: 1; transform: translateY(0); }
.stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }
.tcard blockquote {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  line-height: 1.65; color: var(--dark-2); flex: 1;
}
.tcard-author strong { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.15rem; }
.tcard-author span { font-size: 0.75rem; color: var(--muted); }

/* ── FOOTER ── */
#footer { background: var(--dark); color: var(--white); padding: clamp(4rem,8vh,6rem) 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--white);
  margin-bottom: 1rem; display: block;
}
.footer-brand-name small {
  display: block; font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-contact a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.25s; }
.footer-contact a:hover { color: var(--white); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); }
.footer-social { display: flex; gap: 0.6rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42); text-decoration: none;
  font-size: 0.7rem; font-weight: 600; transition: border-color 0.25s, color 0.25s;
}
.social-link:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .desktop-only { display: none; }
  #scroll-video-section { height: 100vh; }

  /* Header: ocultar subtítulo del logo */
  .logo-text small { display: none; }

  /* Hero móvil: vídeo arriba (ratio 16:9 exacto) + texto debajo, sin hueco */
  #hero {
    min-height: auto;
    display: block;
    padding-bottom: 0;
    background: linear-gradient(to bottom, #080808, #080808 calc(100% - 5rem), #FAF9F6 100%);
    overflow: hidden;
  }
  .hero-video {
    position: relative;
    inset: auto;
    width: 100%;
    height: 55vh; /* ← ajusta este valor: más alto = más vídeo, más bajo = menos */
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Fade del borde inferior del vídeo hacia el fondo oscuro */
    -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  }
  /* Overlay: solo oscurece ligeramente la parte superior (para que el header se lea) */
  .hero-overlay {
    top: 0;
    left: 0; right: 0;
    bottom: auto;
    height: 7rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
  }
  .hero-content {
    padding: 1.5rem 1.25rem 3rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-content .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-sub { font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.75rem; justify-content: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-white {
    padding: 0.875rem 1.4rem;
    min-height: 44px;
  }
}

/* Pantallas muy pequeñas (≤ 420px): ajuste extra del logo */
@media (max-width: 420px) {
  .logo-text { font-size: 0.88rem; }
  .hero-content .eyebrow { font-size: 0.6rem; letter-spacing: 0.14em; }
}
