/* ==========================================================================
   Tipografía: Centra No2
   ========================================================================== */

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Centra No2';
  src: url('../fonts/Centra No2/CentraNo2-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   Cursor personalizado
   ========================================================================== */

/* Ocultar cursor nativo en desktop */
@media (pointer: fine) {
  html, body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}

.hl-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.30),
    0 0 8px  3px rgba(233, 202, 54, 0.70),
    0 0 22px 6px rgba(233, 202, 54, 0.35);
  transform: translate(-50%, -50%) scale(1);
  transition:
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s ease,
    opacity 0.3s ease;
  z-index: 9999;
  will-change: transform, left, top;
  mix-blend-mode: screen;
}

.hl-cursor.is-hovering {
  transform: translate(-50%, -50%) scale(1.9);
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.25),
    0 0 14px 5px  rgba(233, 202, 54, 0.80),
    0 0 40px 12px rgba(233, 202, 54, 0.40);
}

.hl-cursor.is-hidden {
  opacity: 0;
}

/* ==========================================================================
   Variables & Reset
   ========================================================================== */

:root {
  --gold:        #E9CA36;
  --gold-light:  #D4B464;
  --dark:        #111111;
  --dark-mid:    #2A2A2A;
  --dark-section:#2E3133;
  --light-bg:    #F2F2EF;
  --font-main:   'Centra No2', 'Inter', sans-serif;
  --topbar-height: 34px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body {
  font-family: var(--font-main);
  background-color: #fff;
  overflow-x: hidden;
}

/* ==========================================================================
   Utility
   ========================================================================== */

.hl-text-gold      { color: var(--gold); }
.letter-spacing-wide { letter-spacing: .12em; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */

.hl-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 201;
  background: var(--gold);
  text-align: center;
  padding: .45rem 1rem;
  height: var(--topbar-height);
}

.hl-topbar-link {
  color: var(--dark);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  transition: opacity .2s;
}
.hl-topbar-link:hover { opacity: .7; color: var(--dark); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.hl-navbar {
  z-index: 200;
  top: var(--topbar-height);
  background: transparent;
  transition: background .4s ease;
}

.hl-navbar.is-scrolled {
  background: linear-gradient(
    to bottom,
    #2E3133 0%,
    transparent 100%
  );
}

.hl-nav-link {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  transition: color .2s;
}
.hl-nav-link:hover { color: var(--gold); }

/* Brand logo */
.hl-brand { 
  line-height: 1; 
  top: 25px;
}

.hl-brand-haus {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .15em;
}
.hl-brand-leon {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .25em;
  border-top: 1px solid var(--gold);
  padding-top: 2px;
  margin-top: 2px;
}

/* Circular arrow button (navbar) */
.hl-btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.hl-btn-circle:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hl-hero {
  min-height: 100vh;
  overflow: hidden;
}

.hl-hero-bg {
  z-index: 0;
  top: -15% !important;
  height: 130% !important;
}

/* Contenedor parallax para imagen de sección */
.hl-img-rellax-wrap {
  overflow: hidden;
  height: 400px;
  width: 400px;
  margin-top: 30px;
  margin-left: 30px;
}

.hl-img-rellax-wrap img {
  height: 100%;
  width: 100%;
}

.hl-hero-overlay {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.75) 100%
  );
}

/* Línea decorativa derecha */
.hl-deco-line-right {
  z-index: 2;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hl-deco-circle {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
}
.hl-deco-vline {
  display: block;
  width: 1px;
  height: 80px;
  background: var(--gold);
}

/* Redes sociales izquierda */
.hl-social-left {
  z-index: 2;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.hl-social-left a { opacity: .8; transition: opacity .2s; }
.hl-social-left a:hover { opacity: 1; }

/* Contenido hero centrado */
.hl-hero-content {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  padding-top: calc(5rem + var(--topbar-height)); /* compensa navbar + topbar */
}

/* Botón scroll down */
.hl-btn-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: border-color .2s, background .2s;
}
.hl-btn-scroll:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.bottom-100 {
  bottom: 160% !important;
}

/* Cards inferiores hero */
.hl-hero-bottom-left,
.hl-hero-bottom-right {
  z-index: 2;
  will-change: transform;
}

/* Capas de parallax cursor */
.hl-hero-bg          { will-change: transform; }
.hl-hero-title-layer { will-change: transform; }

/* Iconos sociales en círculos glassmorphism */
.hl-social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: background .2s, border-color .2s, color .2s;
}
.hl-social-circle:hover {
  background: rgba(233, 202, 54, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Glassmorphism card */
.hl-glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hl-glass-card--link {
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.hl-glass-card--link:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(233, 202, 54, 0.5);
  box-shadow: 0 4px 28px rgba(233, 202, 54, 0.18);
}

/* Línea separadora hero */
.hl-hero-divider {
  height: 3px;
  width: 220px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #E9CA36 50%,
    transparent 100%
  );
  border: none;
}

/* ==========================================================================
   SECCIÓN: DESARROLLAMOS (light)
   ========================================================================== */

.hl-section-light { background-color: var(--light-bg); overflow-x: hidden !important; }

/* Números FAQ */
.hl-faq-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #212529;
  line-height: 1;
  min-width: 2.5rem;
  display: inline-block;
}

/* Líneas separadoras FAQ con glow + círculo derecho */
.hl-faq-item {
  position: relative;
}

.hl-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 2px;
  background: #E9CA36;
  box-shadow: 0 0 5px 0 rgba(233, 202, 54, 0.80);
}

.hl-faq-item::after {
  content: '';
  position: absolute;
  top: -38px;
  right: -85px;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  border: 2px solid #E9CA36;
  box-shadow: 0 0 5px 0 rgba(233, 202, 54, 0.80);
  background: var(--light-bg);
  z-index: 10;
}

/* Línea inferior tras el último FAQ item */

/* Ocultar círculo en ítems 2, 3… (cualquier faq-item precedido por otro) */
.hl-faq-item + .hl-faq-item::after {
  display: none;
}

/* Líneas 2 y 3 más anchas */
.hl-faq-item + .hl-faq-item::before {
  width: 120%;
}

.hl-faq-divider {
  position: relative;
  height: 0;
  width: 100%;
}

.hl-faq-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E9CA36;
  box-shadow: 0 0 5px 0 rgba(233, 202, 54, 0.80);
}

.hl-faq-divider::after {
  content: '';
  position: absolute;
  top: -38px;
  right: 0;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  border: 2px solid #E9CA36;
  box-shadow: 0 0 5px 0 rgba(233, 202, 54, 0.80);
  background: var(--light-bg);
  z-index: 10;
}

/* Círculos decorativos sobre imagen */
.hl-deco-circle-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  z-index: 2;
}
.hl-deco-circle-img.top-circle {
  top: -20px;
  right: -20px;
}
.hl-deco-circle-img.bottom-circle {
  bottom: -20px;
  right: -20px;
}

/* ==========================================================================
   SECCIÓN: CTA OSCURA
   ========================================================================== */

.hl-section-dark { background-color: var(--dark-section); }

/* Botón CTA (texto + icono circulo) */
.hl-btn-cta {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  padding: .6rem 1rem .6rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.hl-btn-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hl-btn-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SECCIÓN: PARTNERSHIP
   ========================================================================== */

/* Tarjeta central oscura */
.hl-partnership-line {
  position: absolute;
  top: 30px;
  left: 0;
  width: 80%;
  height: 2px;
  background-color: #E9CA36;
  box-shadow: 0 5px 10px #E9CA36;
}

.hl-partnership-card {
  background-image: url('../img/concrete-texture.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 80px !important;
  padding-bottom: 40px !important;
}

/* Botón outline oscuro */
.hl-btn-outline {
  display: inline-block;
  padding: .65rem 2rem;
  border: 1.5px solid #222;
  border-radius: 100px;
  color: #222;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.hl-btn-outline:hover {
  background: #222;
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.hl-footer {
  background-color: var(--dark);
  overflow: hidden;
  position: relative;
}

/* Línea separadora superior del footer */
.hl-footer-divider {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    #E9CA36 50%,
    transparent 100%
  );
  border: none;
}

.hl-footer-link {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 1rem;
  font-style: italic;
  transition: color .2s;
}
.hl-footer-link:hover { color: var(--gold); }

/* Marca de agua — marquesina infinita */
.hl-watermark {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  line-height: .85;
  /* sangra por debajo; el overflow:hidden del footer recorta */
  margin-bottom: -1.5rem;
}

.hl-watermark-track {
  display: inline-flex;
  white-space: nowrap;
  animation: hl-marquee 50s linear infinite;
  will-change: transform;
}

.hl-watermark-item {
  font-size: clamp(7rem, 20vw, 16rem);
  color: rgba(255,255,255,.04);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.hl-watermark-item strong {
  font-weight: 900;
  font-style: normal;
}

.hl-watermark-item em {
  font-weight: 300;
  font-style: italic;
}

@keyframes hl-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Floating Video Button
   ========================================================================== */

.hl-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 100px;
  padding: .65rem 1.1rem .65rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hl-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  color: #111;
}

.hl-float-btn-icon {
  width: 2rem;
  height: 2rem;
  background: #111;
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* Pulse ring */
.hl-float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--gold);
  opacity: .45;
  animation: hl-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes hl-pulse {
  0%   { transform: scale(1);   opacity: .45; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Video modal */
.hl-video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}

.hl-video-modal .modal-header {
  border-bottom: none;
  padding: .6rem 1rem;
}

.hl-video-modal .btn-close {
  filter: invert(1);
  opacity: .7;
}

.hl-video-modal .ratio {
  border-radius: 0 0 1rem 1rem;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   RESPONSIVE — Al final para garantizar la cascada correcta
   ========================================================================== */

/* ── Desktop: ≥ 1200px ── */
@media (min-width: 1200px) {
  .display-3 {
    font-size: 3rem;
    font-weight: bold;
  }
}

/* ── Desktop: ≥ 992px ── */
@media (min-width: 992px) {
  .hl-topbar          { display: none; }
  .hl-navbar          { top: 0; }
  .hl-faq-divider     { width: 175%; }
}

/* ── Tablet: ≤ 991px (Bootstrap lg breakpoint) ── */
@media (max-width: 991.98px) {

  /* Navbar */
  .hl-nav-link:not(:last-of-type) { display: none; }
  .hl-navbar .py-4 { padding-top: 60px !important; padding-bottom: 1.5rem !important; }

  /* Hero */
  .hl-deco-line-right { display: none; }
  .hl-hero-content {
    align-content: flex-start;
    padding-top: calc(5rem + var(--topbar-height));
    padding-bottom: 3rem;
    padding-top: 17rem;
  }

  /* FAQ */
  .hl-faq-item::before { width: 100%; }
  .hl-faq-item::after  { right: 0; }
  .hl-faq-divider      { width: 100%; }
  .hl-deco-circle-img  { display: none; }

  /* Footer */
  .hl-footer .row > .col-lg-5 { text-align: center; margin-bottom: 2rem; }
  .hl-footer .row > .col-lg-7 .row { justify-content: center; text-align: center; }
}

/* ── Mobile: ≤ 767px (Bootstrap md breakpoint) ── */
@media (max-width: 767.98px) {

  .hl-brand{
    top: 60px !important;
  }
  
  /* Navbar */
  .hl-navbar .d-flex.gap-4 { display: none !important; }
  .hl-nav-link             { display: none !important; }
  .hl-navbar > .container-xl > .d-flex { justify-content: space-between; }

  /* Hero */
  .hl-hero-content { padding-top: 17rem; padding-bottom: 3rem; }
  .hl-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hl-hero-content .hl-btn-scroll { margin-top: 1.5rem; }

  /* FAQ */
  .hl-faq-item::before { width: 100%; }
  .hl-faq-item::after  { right: 0; }
  .hl-faq-divider      { width: 100%; }
  .hl-section-light .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .hl-section-light h2    { font-size: 1.25rem !important; }
  .hl-faq-num             { font-size: 1.2rem; min-width: 2rem; }

  /* CTA */
  .hl-section-dark .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .hl-section-dark h2    { font-size: clamp(1.5rem, 6vw, 2rem) !important; }

  /* Partnership */
  #nosotros h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  .hl-partnership-card { margin: 0 auto; max-width: 320px; }

  /* Footer */
  .hl-footer .row > .col-lg-7 .row > [class^="col-"] { margin-bottom: 1.5rem; }

  /* Watermark */
  .hl-watermark-item { font-size: clamp(5rem, 16vw, 12rem); }
}

/* ── Mobile pequeño: ≤ 575px (Bootstrap sm breakpoint) ── */
@media (max-width: 575.98px) {

  /* Navbar */
  .hl-navbar .hl-nav-link { display: none !important; }

  /* Sociales */
  .hl-social-left { display: none !important; }

  /* Hero */
  .hl-hero-content h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); }

  /* FAQ */
  .hl-faq-item::before { width: 100%; }
  .hl-faq-item::after  { right: 0; }
  .hl-faq-divider      { width: 100% !important; }
  .hl-faq-item.py-4    { padding-top: 1rem !important; padding-bottom: 1rem !important; }

  /* Partnership */
  .hl-partnership-card .bg-danger { width: 90px !important; height: 45px !important; }

  /* Footer */
  .hl-footer .row > .col-lg-7 .row { flex-direction: column; align-items: center; }
  .hl-footer .row > .col-lg-7 .row > [class^="col-"] { width: 100%; text-align: center; }
}

