/* ============================================
   ALMA ECOSYSTEM — HOME-PAGE.CSS v2.0
   Editorial redesign. Prefijo: hm-*
   No modifica styles.css ni main.js
   Fecha: 2026-03-08
============================================ */

/* ============================================
   FONTS
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ============================================
   TOKENS EXTRAS
============================================ */
:root {
  --hm-bebas: 'Bebas Neue', sans-serif;
  --hm-syne: 'Syne', sans-serif;
  --hm-body: 'DM Sans', sans-serif;
  --hm-systems: #00C2A8;
  --hm-studio:  #FF2D55;
  --hm-sound:   #7B61FF;
  --hm-surface: #0F0F0F;
  --hm-surface2: #161616;
  --hm-border:  rgba(255,255,255,0.07);
  --hm-text:    #F0F0F0;
  --hm-muted:   rgba(240,240,240,0.42);
  --hm-ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--hm-body);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}

.nav {
  padding: 16px 48px;
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
}

/* ============================================
   HERO — layout fix
   Waves y video son position:absolute para no
   empujar heroContent fuera de pantalla
============================================ */

/* Hero: altura controlada, flex centrado */
.hero {
  position: relative !important;
  min-height: 100vh;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100vw;
  touch-action: pan-y;
}

/* Waves: saca del flujo — no empuja heroContent */
.waves-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100vw;
  pointer-events: none;
  z-index: 1;
}

.waves-canvas {
  width: 100% !important;
  height: 100% !important;
}

/* heroContent: en el flujo flex del hero, encima de waves y video */
#heroContent {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px 80px;
}

/* rollingIntro: solo z-index, NO position override
   main.js asigna su propio position (fixed/absolute) */
#rollingIntro {
  z-index: 10;
}

/* wavesContainer z-index confirmado */
#wavesContainer {
  z-index: 1;
}

/* ============================================
   HERO — brand enorme + line reveal
============================================ */
.hero-brand {
  font-family: var(--hm-syne) !important;
  font-weight: 800 !important;
  font-size: clamp(38px, 8vw, 96px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  margin: 0 0 28px !important;
  animation: none !important;
  opacity: 1 !important;
}

/* Wrapper: overflow hidden para el mask-reveal */
.hm-line-wrap {
  display: block;
  overflow: hidden;
}

.hm-line-wrap + .hm-line-wrap {
  margin-top: 0.04em;
}

/* El texto real: empieza debajo, sube cuando se revela */
.hm-line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.hm-line-inner.hm-revealed {
  transform: translateY(0);
  transition: transform 1s var(--hm-ease);
}

/* Badge: Agencia creativa en Venezuela */
.hm-badge {
  display: inline-block;
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--hm-ease), transform 0.6s var(--hm-ease);
}

.hm-badge.hm-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Sub tagline */
.hm-hero-sub {
  font-family: var(--hm-body);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 300;
  color: var(--hm-muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hm-ease), transform 0.7s var(--hm-ease);
}

.hm-hero-sub.hm-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* CTAs */
.hm-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hm-ease), transform 0.7s var(--hm-ease);
}

.hm-hero-ctas.hm-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hm-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--hm-text);
  color: #080808;
  font-family: var(--hm-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hm-cta-primary:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.hm-cta-primary:focus-visible {
  outline: 2px solid var(--hm-sound);
  outline-offset: 3px;
}

.hm-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--hm-text);
  font-family: var(--hm-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hm-cta-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.hm-cta-ghost:focus-visible {
  outline: 2px solid var(--hm-sound);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .hm-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hm-cta-primary,
  .hm-cta-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================
   STATS STRIP
============================================ */
.hm-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border);
}

.hm-stat {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--hm-ease), transform 0.6s var(--hm-ease);
}

.hm-stat.hm-in {
  opacity: 1;
  transform: translateY(0);
}

.hm-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--hm-border);
}

.hm-stat-num {
  display: block;
  font-family: var(--hm-syne);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--hm-text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hm-stat-label {
  display: block;
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hm-muted);
}

@media (max-width: 520px) {
  .hm-stats {
    grid-template-columns: 1fr;
  }
  .hm-stat:not(:last-child)::after {
    right: 20%;
    left: 20%;
    width: auto;
    top: auto;
    bottom: 0;
    height: 1px;
  }
}

/* ============================================
   ECOSYSTEM — 3-col asimétrico
============================================ */
.hm-ecosystem {
  padding: 100px 48px;
  max-width: 1360px;
  margin: 0 auto;
}

.hm-eco-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hm-border);
  gap: 24px;
  flex-wrap: wrap;
}

.hm-eco-eyebrow {
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-muted);
}

.hm-eco-title {
  font-family: var(--hm-syne);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--hm-text);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

.hm-eco-sub {
  font-family: var(--hm-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--hm-muted);
  max-width: 360px;
  line-height: 1.65;
  text-align: right;
}

/* Grid: proporciones distintas */
.hm-cards {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: 14px;
  align-items: stretch;
}

/* Card */
.hm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--hm-surface);
  border: 1px solid var(--hm-border);
  border-radius: 3px;
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    border-color 0.35s ease,
    transform 0.4s var(--hm-ease),
    opacity 0.6s var(--hm-ease);
}

.hm-card.hm-in {
  opacity: 1;
  transform: translateY(0);
}

/* Número como textura de fondo */
.hm-card::before {
  content: attr(data-num);
  position: absolute;
  right: -4px;
  bottom: -16px;
  font-family: var(--hm-syne);
  font-size: 148px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.hm-card:hover::before {
  color: rgba(255,255,255,0.058);
}

/* Border-top de color */
.hm-card--systems { border-top: 2px solid var(--hm-systems); }
.hm-card--studio  { border-top: 2px solid var(--hm-studio);  }
.hm-card--sound   { border-top: 2px solid var(--hm-sound);   }

/* Hover */
.hm-card:hover {
  transform: translateY(-6px);
}

.hm-card.hm-in:hover {
  transform: translateY(-6px);
}

.hm-card--systems:hover { border-color: rgba(0,194,168,0.3); border-top-color: var(--hm-systems); }
.hm-card--studio:hover  { border-color: rgba(255,45,85,0.3);  border-top-color: var(--hm-studio);  }
.hm-card--sound:hover   { border-color: rgba(123,97,255,0.3); border-top-color: var(--hm-sound);   }

/* Contenido del card */
.hm-card-num {
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--hm-muted);
  margin-bottom: 36px;
}

.hm-card-title {
  font-family: var(--hm-syne);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--hm-text);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.hm-card-tagline {
  font-family: var(--hm-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px;
}

.hm-card--systems .hm-card-tagline { color: var(--hm-systems); }
.hm-card--studio  .hm-card-tagline { color: var(--hm-studio);  }
.hm-card--sound   .hm-card-tagline { color: var(--hm-sound);   }

.hm-card-desc {
  font-family: var(--hm-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--hm-muted);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.hm-card-cta {
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hm-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  opacity: 0.5;
  transition: opacity 0.25s ease, gap 0.25s ease;
}

.hm-card:hover .hm-card-cta {
  opacity: 1;
  gap: 14px;
}

@media (max-width: 1024px) {
  .hm-cards {
    grid-template-columns: 1fr 1fr;
  }
  .hm-card:last-child {
    grid-column: span 2;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hm-ecosystem {
    padding: 72px 20px 60px;
  }
  .hm-cards {
    grid-template-columns: 1fr;
  }
  .hm-card:last-child {
    grid-column: auto;
  }
  .hm-card {
    min-height: auto;
    padding: 32px 24px 28px;
  }
  .hm-card::before {
    font-size: 100px;
  }
  .hm-eco-sub {
    text-align: left;
  }
  .hm-eco-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================
   TAGLINES — color accent con .active de main.js
============================================ */
.tagline-item {
  position: relative;
  padding-left: 20px;
}

.tagline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 72px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background 0.4s ease, transform 0.3s ease;
}

.tagline-item[data-color="#00C2A8"]::before { background: rgba(0,194,168,0.2); }
.tagline-item[data-color="#FF2D55"]::before  { background: rgba(255,45,85,0.2);  }
.tagline-item[data-color="#7B61FF"]::before  { background: rgba(123,97,255,0.2); }

.tagline-item[data-color="#00C2A8"].active::before { background: var(--hm-systems); transform: scale(1.5); }
.tagline-item[data-color="#FF2D55"].active::before  { background: var(--hm-studio);  transform: scale(1.5); }
.tagline-item[data-color="#7B61FF"].active::before  { background: var(--hm-sound);   transform: scale(1.5); }

.tagline-item h3 {
  font-family: var(--hm-syne);
  letter-spacing: -0.01em;
  transition: color 0.45s ease;
}

.tagline-item[data-color="#00C2A8"].active h3 { color: var(--hm-systems); }
.tagline-item[data-color="#FF2D55"].active h3  { color: var(--hm-studio);  }
.tagline-item[data-color="#7B61FF"].active h3  { color: var(--hm-sound);   }

/* ============================================
   ABOUT — 2 columnas editorial
   Override del .about de styles.css
============================================ */
.hm-about {
  display: grid !important;
  grid-template-columns: 5fr 7fr !important;
  gap: 80px !important;
  align-items: start !important;
  text-align: left !important;
  padding: 120px 48px !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
}

/* Eliminar ::before de styles.css */
.hm-about::before {
  display: none !important;
}

.hm-about-left {
  position: sticky;
  top: 100px;
}

.hm-manifesto {
  font-family: var(--hm-body);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(240,240,240,0.7);
  margin: 0 0 36px;
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.hm-about .process-line {
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  padding: 14px 20px !important;
  border-radius: 4px !important;
  margin: 0 !important;
}

.hm-about-right {}

.hm-about-title {
  font-family: var(--hm-syne) !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 44px !important;
  color: var(--hm-text) !important;
}

/* Lista de valores */
.hm-values {
  display: flex;
  flex-direction: column;
}

.hm-value {
  padding: 28px 0;
  border-bottom: 1px solid var(--hm-border);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s var(--hm-ease), transform 0.55s var(--hm-ease);
}

.hm-value:first-child {
  border-top: 1px solid var(--hm-border);
}

.hm-value.hm-in {
  opacity: 1;
  transform: translateX(0);
}

.hm-value h4 {
  font-family: var(--hm-syne);
  font-size: 16px;
  font-weight: 700;
  color: var(--hm-text);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.hm-value p {
  font-family: var(--hm-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--hm-muted);
  line-height: 1.75;
  margin: 0;
  max-width: 54ch;
}

@media (max-width: 900px) {
  .hm-about {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    padding: 80px 24px !important;
  }
  .hm-about-left {
    position: static;
  }
}

@media (max-width: 640px) {
  .hm-about {
    padding: 60px 20px !important;
  }
}

/* ============================================
   CONTACT — fricción mínima
============================================ */
.hm-contact-inner {
  max-width: 540px;
  margin: 0 auto;
}

.contact .contact-title {
  font-family: var(--hm-syne) !important;
  font-size: clamp(38px, 6.3vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 0.9 !important;
  margin-bottom: 16px !important;
}

.contact .contact-description {
  font-family: var(--hm-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--hm-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact .form-group label {
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hm-muted);
}

.contact .form-group input,
.contact .form-group textarea {
  font-family: var(--hm-body);
  font-size: 15px;
  font-weight: 300;
  background: var(--hm-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--hm-text);
  transition: border-color 0.25s ease;
}

.contact .form-group input:focus,
.contact .form-group textarea:focus {
  border-color: rgba(255,255,255,0.28);
  background: var(--hm-surface2);
  outline: none;
}

.contact .form-group input:focus-visible,
.contact .form-group textarea:focus-visible {
  outline: 2px solid var(--hm-sound);
  outline-offset: 2px;
}

.contact .form-submit {
  font-family: var(--hm-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 4px;
  background: var(--hm-text);
  color: #080808;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact .form-submit:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.hm-form-email-note {
  font-family: var(--hm-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--hm-muted);
  text-align: center;
  margin-top: 16px;
}

.hm-form-email-note a {
  color: rgba(240,240,240,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hm-form-email-note a:hover {
  color: var(--hm-text);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
  .contact .contact-title {
    font-size: clamp(18px, 6vw, 27px) !important;
    white-space: normal !important;
    overflow: visible !important;
    width: 100% !important;
    display: block !important;
  }
  .hm-contact-inner {
    overflow: visible;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.contact .contact-info a {
  font-family: var(--hm-body);
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border-color: rgba(255,255,255,0.1);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  font-family: var(--hm-body);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--hm-systems);
  color: #FAFAFA;
}

/* ============================================
   VIDEO BACKGROUNDS
============================================ */

/* Hero video — capa base, debajo de waves y contenido */
.hm-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

/* Ecosystem video — fondo muy sutil detrás de las cards */
.hm-section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

#ecosystem {
  position: relative;
  overflow: hidden;
}

#ecosystem .hm-ecosystem {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hm-hero-video    { opacity: 0.22; }
  .hm-section-video { opacity: 0.06; }
}

/* ============================================
   CONTACT FORM — select (asunto)
============================================ */

.contact .form-group select {
  font-family: var(--hm-body);
  font-size: 15px;
  font-weight: 300;
  background: var(--hm-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--hm-text);
  transition: border-color 0.25s ease;
  width: 100%;
  padding: 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact .form-group select:focus {
  border-color: rgba(255,255,255,0.28);
  background-color: var(--hm-surface2);
  outline: none;
}

.contact .form-group select:focus-visible {
  outline: 2px solid var(--hm-sound);
  outline-offset: 2px;
}

.contact .form-group select option {
  background: #161616;
  color: var(--hm-text);
}

.contact .form-group select option:disabled {
  color: var(--hm-muted);
}

/* ============================================
   MOBILE — hero font-size fix para 480px y menos
   clamp(56px, 13vw, 148px) a 390px = ~50px
   pero Bebas es condensada — caben bien las palabras
============================================ */

@media (max-width: 480px) {
  .hero-brand {
    font-size: clamp(21px, 4.7vw, 72px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.06em !important;
  }
}


/* ============================================
   NOSOTROS — visual presence
   Re-habilitar ::before de styles.css con fondo
   diferenciado. ::after = textura tipográfica ALMA
============================================ */
.hm-about::before {
  display: block !important;
  background: #0F0F0F !important;
}

.hm-about-right {
  position: relative;
  overflow: hidden;
}

.hm-about-right::after {
  content: 'ALMA';
  position: absolute;
  right: -16px;
  bottom: -48px;
  font-family: var(--hm-syne);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.028);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}

.hm-about-title,
.hm-values {
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACTO — visual presence
   Fondo ligeramente más oscuro + glow radial
   detrás del título
============================================ */
.contact {
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #080808;
  z-index: -1;
  pointer-events: none;
}

.hm-contact-inner {
  position: relative;
}

.hm-contact-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(123,97,255,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hm-contact-inner > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   FRECUENCIA ALMA — banda sutil
   Entre taglines y about. Acento Sound purple.
============================================ */
.hm-frecuencia-band {
  border-top: 1px solid rgba(123,97,255,0.15);
  border-bottom: 1px solid rgba(123,97,255,0.15);
  background: rgba(123,97,255,0.04);
}

.hm-frecuencia-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hm-frecuencia-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hm-frecuencia-label {
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hm-sound);
  white-space: nowrap;
}

.hm-frecuencia-desc {
  font-family: var(--hm-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--hm-muted);
  margin: 0;
}

.hm-frecuencia-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(123,97,255,0.35);
  border-radius: 100px;
  color: var(--hm-sound);
  font-family: var(--hm-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hm-frecuencia-cta:hover {
  background: rgba(123,97,255,0.1);
  border-color: rgba(123,97,255,0.55);
}

.hm-frecuencia-cta:focus-visible {
  outline: 2px solid var(--hm-sound);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .hm-frecuencia-inner {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hm-frecuencia-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-hero-video,
  .hm-section-video {
    display: none;
  }

  .hm-line-inner,
  .hm-badge,
  .hm-hero-sub,
  .hm-hero-ctas,
  .hm-stat,
  .hm-card,
  .hm-value {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
