@charset "UTF-8";
.navbar-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .navbar-container {
    top: 12px;
  }
}

/* ── Burger button (solo visible en móvil) ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pill-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn--open span:nth-child(2) {
  opacity: 0;
}
.burger-btn--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }
}

.navbar-pill {
  --pill-bg: #f3f4f6;
  --pill-text: #1f2937;
  --pill-border: rgba(0, 0, 0, 0.05);
  --pill-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--pill-bg);
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--pill-border);
  box-shadow: var(--pill-shadow);
  transition: background-color 0.3s ease, border-color 0.3s ease, border-radius 0.3s ease;
}
@media (max-width: 768px) {
  .navbar-pill {
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    position: relative;
  }
  .navbar-pill--open {
    border-radius: 20px;
  }
}
.navbar-pill .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .navbar-pill .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 16px;
    padding: 0.75rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: menuSlideIn 0.2s ease;
  }
  .navbar-pill .nav-links--open {
    display: flex;
  }
  .navbar-pill .nav-links li {
    border-bottom: 1px solid var(--pill-border);
  }
  .navbar-pill .nav-links li:last-child {
    border-bottom: none;
  }
}
.navbar-pill .nav-item {
  color: var(--pill-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: var(--font-primary, "Inter", sans-serif);
}
.navbar-pill .nav-item:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .navbar-pill .nav-item {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
  }
}
.navbar-pill .theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--pill-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar-pill .theme-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .navbar-pill .theme-toggle-btn {
    margin-left: auto;
  }
}
.navbar-pill .lang-dropdown {
  position: relative;
  border-left: 1px solid var(--pill-border);
  padding-left: 0.75rem;
}
@media (max-width: 768px) {
  .navbar-pill .lang-dropdown {
    padding-left: 0.5rem;
  }
}
.navbar-pill .lang-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--pill-text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar-pill .lang-dropdown__trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-pill .lang-dropdown__current {
  font-family: var(--font-primary, "Inter", sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
}
.navbar-pill .lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px;
  background-color: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 140px;
  animation: langDropdownIn 0.15s ease;
}
.navbar-pill .lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--pill-text);
  font-family: var(--font-primary, "Inter", sans-serif);
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.navbar-pill .lang-dropdown__item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-pill .lang-dropdown__item--active {
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.06);
}
.navbar-pill .lang-dropdown__label {
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.5;
}
.navbar-pill .lang-dropdown__name {
  font-weight: 500;
}

/* TEMA OSCURO */
:root[data-theme=dark] .navbar-pill {
  --pill-bg: #4b5563;
  --pill-text: #ffffff;
  --pill-border: rgba(255, 255, 255, 0.1);
  --pill-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
:root[data-theme=dark] .navbar-pill .theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
:root[data-theme=dark] .navbar-pill .lang-dropdown__trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
:root[data-theme=dark] .navbar-pill .lang-dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
:root[data-theme=dark] .navbar-pill .lang-dropdown__item--active {
  background-color: rgba(255, 255, 255, 0.12);
}
:root[data-theme=dark] .navbar-pill .lang-dropdown__menu {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@keyframes langDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ═══════════════════════════════════════════════════════════
   HeroSection — Immersive two-column hero
   Reference: image bleeds right, fades left into text
   ═══════════════════════════════════════════════════════════ */
.hf-hero {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: calc(100vh - 70px);
  padding: 40px var(--hf-section-px) 3rem;
  background: var(--hf-bg-base);
  overflow: hidden;
  box-sizing: border-box;
  /* ── Desktop: 2 columns, image bleeds right ── */
}
@media (min-width: 768px) {
  .hf-hero {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .hf-hero {
    min-height: auto;
    padding: 0 0 2rem;
    text-align: center;
    gap: 0;
    justify-content: flex-start;
    overflow: hidden;
    flex-direction: column-reverse;
  }
}
.hf-hero {
  /* ═══ Text column ═══ */
}
.hf-hero__text {
  flex: 1 1 50%;
  max-width: 620px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 768px) {
  .hf-hero__text {
    text-align: left;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .hf-hero__text {
    margin-top: -20vh;
    position: relative;
    z-index: 3;
    padding: 0 1.5rem;
    text-align: center;
  }
}
.hf-hero {
  /* ── H1 ── */
}
.hf-hero__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(2.2rem, 10vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--hf-text-main);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 767px) {
  .hf-hero__headline {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-align: center;
    word-break: keep-all;
    hyphens: none;
  }
}
.hf-hero__headline--accent {
  color: var(--hf-neon);
  text-shadow: 0 0 30px var(--hf-neon-glow);
}
.hf-hero {
  /* ── Subheadline ── */
}
.hf-hero__subheadline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--hf-text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: none;
}
@media (max-width: 767px) {
  .hf-hero__subheadline {
    margin-inline: auto;
    padding: 0 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}
.hf-hero {
  /* ── CTA ── */
}
.hf-hero__cta {
  position: relative;
  display: inline-block;
  padding: 1.15rem 2.8rem;
  font-family: var(--hf-font-hero);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hf-cta-text);
  background: linear-gradient(135deg, #FF7D4A 0%, #ff9b70 100%);
  border: none;
  border-radius: var(--hf-radius-md);
  box-shadow: 0 0 30px var(--hf-accent-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--hf-transition);
  overflow: hidden;
  animation: none;
  /* Shimmer */
}
.hf-hero__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 55%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
.hf-hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px var(--hf-accent-glow), 0 8px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff9b70 0%, #FF7D4A 100%);
}
.hf-hero__cta:active {
  transform: translateY(-1px) scale(0.99);
}
@media (max-width: 767px) {
  .hf-hero__cta {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.hf-hero {
  /* ═══ Visual column — large, bleeds right ═══ */
}
.hf-hero__visual {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  animation: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .hf-hero__visual {
    /* La imagen ocupa toda la mitad derecha y sangra al borde */
    height: calc(100vh - 60px);
    align-self: flex-end;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .hf-hero__visual {
    width: 100%;
    max-width: 100%;
    height: 55vh;
    min-height: 300px;
    max-height: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0;
  }
  .hf-hero__visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0) 0%, var(--hf-bg-base) 100%);
    pointer-events: none;
    z-index: 2;
  }
}
.hf-hero {
  /* ── Tech-grid background behind the person ── */
}
.hf-hero__tech-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 420px 420px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.5;
  animation: none;
  /* Fade out towards edges */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 75%);
}
@media (max-width: 767px) {
  .hf-hero__tech-grid {
    background-size: 300px 300px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 70%);
  }
}
.hf-hero {
  /* ── Círculo gradiente — réplica fiel del hero.svg (3 capas radiales) ── */
}
.hf-hero__circle {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  right: 8%;
  top: 50%;
  transform: translateY(-48%);
  z-index: 0;
  animation: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hf-hero__circle {
    width: 95%;
    right: 2%;
    top: 45%;
  }
}
.hf-hero {
  /* ── Glow sutil detrás de la imagen ── */
}
.hf-hero__glow {
  position: absolute;
  width: 80%;
  height: 80%;
  right: 10%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 242, 243, 0.1) 0%, rgba(89, 251, 113, 0.06) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}
.hf-hero {
  /* ── Hero image: fade en izquierda y abajo ── */
}
.hf-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  border: none;
  border-radius: 0;
  /* Fade izquierda + abajo para fundirse con el fondo */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%), linear-gradient(to top, transparent 0%, black 20%, black 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%), linear-gradient(to top, transparent 0%, black 20%, black 100%);
  mask-composite: intersect;
}
@media (min-width: 768px) {
  .hf-hero__image {
    max-height: calc(100vh - 60px);
    object-position: center bottom;
  }
}
@media (max-width: 767px) {
  .hf-hero__image {
    width: 100%;
    max-width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
    margin-inline: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ═══ Animations ═══ */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
/* ═══════════════════════════════════════════════════════════════
   AboutMe — predica.svg como fondo + panel oscuro con texto
   ═══════════════════════════════════════════════════════════════ */
.hf-aboutme {
  position: relative;
  width: calc(100% - 2 * var(--hf-section-px));
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* ── Card wrapper glassmorphism ── */
  margin: var(--hf-section-py) auto;
  max-width: 1100px;
  border-radius: var(--hf-radius-lg);
  border: 1px solid var(--hf-border);
  box-shadow: var(--hf-shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color var(--hf-transition), box-shadow var(--hf-transition);
}
.hf-aboutme:hover {
  border-color: var(--hf-border-accent);
  box-shadow: var(--hf-shadow-card), var(--hf-glow-accent);
}
@media (max-width: 768px) {
  .hf-aboutme {
    flex-direction: column;
    align-items: center;
    border-radius: var(--hf-radius-md);
    margin: 2rem 1rem;
    width: calc(100% - 2rem);
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--hf-bg-base);
  }
}
.hf-aboutme {
  /* ── Fondo predica.svg ── */
}
.hf-aboutme__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 85%;
  background-position: right center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hf-aboutme__bg {
    display: none;
  }
}
.hf-aboutme__bg {
  /* Overlay: oscuro a la izquierda (texto), transparente a la derecha (imagen visible) */
}
.hf-aboutme__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 5, 27, 0.95) 0%, rgba(2, 5, 27, 0.9) 35%, rgba(2, 5, 27, 0.45) 60%, rgba(2, 5, 27, 0) 80%);
}
@media (max-width: 768px) {
  .hf-aboutme__bg::after {
    background: linear-gradient(to bottom, rgba(2, 5, 27, 0.95) 0%, rgba(2, 5, 27, 0.8) 40%, rgba(2, 5, 27, 0.35) 65%, rgba(2, 5, 27, 0.15) 85%, rgba(2, 5, 27, 0.4) 100%);
  }
}
.hf-aboutme {
  /* ── Contenedor interno ── */
}
.hf-aboutme__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--hf-section-py) var(--hf-section-px);
}
@media (max-width: 768px) {
  .hf-aboutme__inner {
    padding: 2.5rem 1.5rem 2rem;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
  }
}
.hf-aboutme {
  /* ── Panel de texto ── */
}
.hf-aboutme__panel {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .hf-aboutme__panel {
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 1.25rem;
    box-sizing: border-box;
  }
}
.hf-aboutme {
  /* Etiqueta superior verde */
}
.hf-aboutme__label {
  font-family: var(--hf-font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hf-neon);
  position: relative;
  padding-bottom: 0.5rem;
}
.hf-aboutme__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--hf-neon);
}
@media (max-width: 768px) {
  .hf-aboutme__label::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hf-aboutme {
  /* Headline potente */
}
.hf-aboutme__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hf-text-main);
  margin: 0;
}
@media (max-width: 768px) {
  .hf-aboutme__headline {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
.hf-aboutme {
  /* Body persuasivo */
}
.hf-aboutme__body {
  font-family: var(--hf-font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--hf-text-muted);
  margin: 0;
  max-width: 580px;
}
@media (max-width: 768px) {
  .hf-aboutme__body {
    width: 100%;
    max-width: 100%;
  }
}
.hf-aboutme {
  /* CTA suave */
}
.hf-aboutme__cta {
  display: inline-block;
  font-family: var(--hf-font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hf-cta-bg);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
  border-bottom: 2px solid transparent;
}
@media (max-width: 768px) {
  .hf-aboutme__cta {
    margin-top: 1.5rem;
  }
}
.hf-aboutme__cta:hover {
  color: var(--hf-cta-hover);
  border-bottom-color: var(--hf-cta-bg);
  transform: translateX(4px);
}
.hf-aboutme {
  /* ── Imagen mobile (oculta en desktop) ── */
}
.hf-aboutme__mobile-img {
  display: none;
}
@media (max-width: 768px) {
  .hf-aboutme__mobile-img {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 1rem auto;
    border-radius: var(--hf-radius-md);
  }
}
/* ═══════════════════════════════════════════════════════════════
   MethodologyApp — app-mockup fondo + panel glassmorphism
   ═══════════════════════════════════════════════════════════════ */
.hf-method {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hf-method {
    min-height: auto;
    overflow: hidden;
    background: var(--hf-bg-base);
  }
}
.hf-method {
  /* ── Fondo: app-mockup.svg ── */
}
.hf-method__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: var(--hf-bg-base);
}
@media (max-width: 768px) {
  .hf-method__bg {
    display: none;
  }
}
.hf-method {
  /* ── Contenedor interno ── */
}
.hf-method__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--hf-section-py) var(--hf-section-px);
}
@media (max-width: 768px) {
  .hf-method__inner {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    box-sizing: border-box;
    max-width: 100vw;
  }
}
.hf-method {
  /* ── Panel Glassmorphism (texto izquierda) ── */
}
.hf-method__panel {
  max-width: 600px;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: var(--hf-radius-lg);
  background: rgba(2, 5, 27, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hf-method__panel {
    max-width: 100%;
    width: 100%;
    padding: 0;
    text-align: center;
    align-items: center;
    box-sizing: border-box;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
}
.hf-method {
  /* Etiqueta superior — acento naranja */
}
.hf-method__label {
  font-family: var(--hf-font-body);
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hf-accent);
  position: relative;
  padding-bottom: 0.5rem;
}
.hf-method__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--hf-accent);
}
@media (max-width: 768px) {
  .hf-method__label::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hf-method {
  /* Headline */
}
.hf-method__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hf-text-main);
  margin: 0;
}
.hf-method {
  /* Body */
}
.hf-method__body {
  font-family: var(--hf-font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: var(--hf-text-muted);
  margin: 0;
}
.hf-method {
  /* Lista de beneficios */
}
.hf-method__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hf-method__list-item {
  font-family: var(--hf-font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
  color: var(--hf-text-light);
  padding-left: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}
.hf-method__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hf-neon);
  font-weight: 700;
}
.hf-method__list-item:hover {
  color: var(--hf-neon);
}
@media (max-width: 768px) {
  .hf-method__list-item {
    text-align: left;
  }
}
.hf-method {
  /* ── Imagen mobile (oculta en desktop) ── */
}
.hf-method__mobile-img {
  display: none;
}
@media (max-width: 768px) {
  .hf-method__mobile-img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    margin: 2rem auto 0;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  }
}
/* ═══════════════════════════════════════════════════════════════
   RecipesGallery — Cuadrícula de recetas con hover premium
   Dark Tech Fitness · Variables --hf-* exclusivamente
   ═══════════════════════════════════════════════════════════════ */
.hf-recipes {
  padding: var(--hf-section-py) var(--hf-section-px);
  text-align: center;
  background: var(--hf-bg-base);
}
@media (max-width: 768px) {
  .hf-recipes {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
}
.hf-recipes {
  /* ── Header ── */
}
.hf-recipes__label {
  display: inline-block;
  font-family: var(--hf-font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hf-accent);
  margin-bottom: 1rem;
}
.hf-recipes__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--hf-text-main);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hf-recipes__headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
.hf-recipes__subheadline {
  font-family: var(--hf-font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: var(--hf-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .hf-recipes__subheadline {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}
.hf-recipes {
  /* ── Grid ── */
}
.hf-recipes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hf-recipes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }
}
.hf-recipes {
  /* ── Card ── */
}
.hf-recipes__card {
  position: relative;
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--hf-bg-card);
  border: 1px solid var(--hf-border);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.hf-recipes__card:hover {
  box-shadow: 0 8px 24px var(--hf-accent-glow);
  border-color: var(--hf-border-accent);
}
.hf-recipes__card:hover .hf-recipes__img {
  transform: scale(1.08);
  filter: blur(3px) brightness(0.55);
}
.hf-recipes__card:hover .hf-recipes__name {
  opacity: 1;
  transform: translateY(0);
}
.hf-recipes {
  /* ── Image ── */
}
.hf-recipes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.hf-recipes {
  /* ── Recipe name overlay ── */
}
.hf-recipes__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hf-font-hero);
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--hf-text-main);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
  padding: 0.5rem;
  text-align: center;
}
/* ═══════════════════════════════════════════════════════════
   Transformations — Carrusel Horizontal · CSS Scroll Snap
   ═══════════════════════════════════════════════════════════ */
.hf-tf {
  padding: var(--hf-section-py) var(--hf-section-px);
  text-align: center;
  background: radial-gradient(ellipse at 30% 0%, var(--hf-neon-glow) 0%, transparent 45%), radial-gradient(ellipse at 70% 100%, var(--hf-accent-glow) 0%, transparent 45%), var(--hf-bg-base);
  /* ── Header ── */
}
.hf-tf__label {
  display: inline-block;
  font-family: var(--hf-font-hero);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hf-accent);
  margin-bottom: 0.75rem;
}
.hf-tf__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--hf-text-main);
  margin-bottom: 0.75rem;
}
.hf-tf__subheadline {
  font-size: 1.1rem;
  color: var(--hf-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}
.hf-tf {
  /* ── Carousel wrapper ── */
}
.hf-tf__carousel {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}
.hf-tf {
  /* ── Track — Scroll Snap ── */
}
.hf-tf__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0.5rem 2rem;
  /* Ocultar scrollbar nativa */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hf-tf__track::-webkit-scrollbar {
  display: none;
}
.hf-tf {
  /* ── Arrow buttons ── */
}
.hf-tf__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hf-border);
  background: rgba(2, 5, 27, 0.85);
  backdrop-filter: blur(8px);
  color: var(--hf-text-main);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hf-tf__arrow:hover {
  border-color: var(--hf-accent);
  box-shadow: 0 0 16px var(--hf-accent-glow);
  color: var(--hf-accent);
}
.hf-tf__arrow--left {
  left: -22px;
}
@media (max-width: 768px) {
  .hf-tf__arrow--left {
    left: -6px;
  }
}
.hf-tf__arrow--right {
  right: -22px;
}
@media (max-width: 768px) {
  .hf-tf__arrow--right {
    right: -6px;
  }
}
.hf-tf {
  /* ── Card — Glassmorphism oscuro ── */
}
.hf-tf__card {
  flex: 0 0 350px;
  scroll-snap-align: center;
  background: rgba(20, 20, 20, 0.8);
  background-image: linear-gradient(180deg, rgba(34, 39, 77, 0.3882352941) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 1.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hf-tf__card:hover {
  border-color: var(--hf-accent);
  box-shadow: 0 0 30px var(--hf-accent-glow), var(--hf-shadow-card);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .hf-tf__card {
    flex: 0 0 85vw;
  }
}
.hf-tf {
  /* ── Before / After images ── */
}
.hf-tf__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--hf-radius-md);
  overflow: hidden;
}
.hf-tf__img-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--hf-radius-sm);
}
.hf-tf__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hf-tf {
  /* ── Before / After tags ── */
}
.hf-tf__img-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: var(--hf-font-hero);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hf-text-main);
  background: rgba(2, 5, 27, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.hf-tf__img-tag--after {
  color: var(--hf-neon);
}
.hf-tf {
  /* ── Metric — gancho visual grande ── */
}
.hf-tf__metric {
  font-family: var(--hf-font-hero);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--hf-accent);
  text-shadow: 0 0 20px var(--hf-accent-glow);
  letter-spacing: -0.02em;
}
.hf-tf {
  /* ── Name ── */
}
.hf-tf__name {
  font-family: var(--hf-font-hero);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hf-text-main);
}
.hf-tf {
  /* ── Review ── */
}
.hf-tf__review-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hf-tf__review {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--hf-text-muted);
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
}
.hf-tf__review--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hf-tf__read-more {
  background: none;
  border: none;
  color: var(--hf-accent);
  font-family: var(--hf-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.hf-tf__read-more:hover {
  color: var(--hf-text-main);
}
/* ═══════════════════════════════════════════════════════════
   AboutCoach — Authority Closure · Premium Dark
   ═══════════════════════════════════════════════════════════ */
.hf-coach {
  padding: var(--hf-section-py) var(--hf-section-px);
  background: radial-gradient(ellipse at 20% 50%, var(--hf-accent-glow) 0%, transparent 50%), var(--hf-bg-base);
}
@media (max-width: 768px) {
  .hf-coach {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0.5rem 3rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
}
.hf-coach__content {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  max-width: 1050px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .hf-coach__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    z-index: 2;
  }
}
.hf-coach {
  /* ── Imagen wrapper (con glow + badge) ── */
}
.hf-coach__image-wrapper {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hf-coach__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    z-index: 0;
  }
  .hf-coach__image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.75) 0%, var(--hf-bg-base) 95%);
    z-index: 1;
  }
}
.hf-coach__image {
  width: 340px;
  height: 420px;
  border-radius: var(--hf-radius-lg);
  border: 1px solid var(--hf-border);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.12), 0 0 100px rgba(0, 229, 255, 0.05);
}
.hf-coach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hf-coach__image {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .hf-coach__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
  }
}
.hf-coach {
  /* ── Badge flotante ── */
}
.hf-coach__badge {
  position: absolute;
  bottom: 16px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(2, 5, 27, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hf-border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-family: var(--hf-font-hero);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--hf-text-main);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hf-coach__badge {
    position: relative;
    display: inline-flex;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    z-index: 2;
    margin: 0 auto 2rem;
    background: var(--hf-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
}
.hf-coach__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-neon);
  box-shadow: 0 0 8px var(--hf-accent);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hf-coach {
  /* ── Texto ── */
}
.hf-coach__text {
  flex: 1;
}
@media (max-width: 768px) {
  .hf-coach__text {
    text-align: center;
    width: 90%;
    position: relative;
    z-index: 2;
    color: #fff;
  }
}
.hf-coach__title {
  font-family: var(--hf-font-hero);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--hf-text-main);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hf-coach__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
.hf-coach__title-accent {
  color: var(--hf-accent);
}
.hf-coach__subtitle {
  font-size: 1.05rem;
  color: var(--hf-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hf-coach {
  /* ── Bullets ── */
}
.hf-coach__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (max-width: 768px) {
  .hf-coach__bullets {
    max-width: 100%;
    text-align: left;
    margin: 1.5rem auto;
  }
}
.hf-coach__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .hf-coach__bullets li {
    text-align: left;
  }
}
.hf-coach__check {
  color: var(--hf-neon);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.hf-coach {
  /* ── CTA agresivo ── */
}
.hf-coach__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: var(--hf-font-hero);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--hf-cta-text);
  background: linear-gradient(135deg, #FF7D4A 0%, #e06030 100%);
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(255, 125, 74, 0.25), var(--hf-glow-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hf-coach__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 125, 74, 0.3), 0 0 40px rgba(255, 125, 74, 0.12);
  filter: brightness(1.08);
}
@media (max-width: 768px) {
  .hf-coach__cta {
    width: 100%;
  }
}
/* ═══════════════════════════════════════════════════════════
   PricingSection — Planes de precio con anclaje psicológico
   ═══════════════════════════════════════════════════════════ */
.hf-pricing {
  padding: var(--hf-section-py) var(--hf-section-px);
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, var(--hf-accent-glow) 0%, transparent 50%), var(--hf-bg-base);
  /* ── Header ── */
}
.hf-pricing__label {
  display: inline-block;
  font-family: var(--hf-font-hero);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hf-accent);
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .hf-pricing__label {
    display: none;
  }
}
.hf-pricing__headline {
  font-family: var(--hf-font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--hf-text-main);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .hf-pricing__headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }
}
.hf-pricing {
  /* ── Bloque de autoridad ── */
}
.hf-pricing__why {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--hf-text-muted);
  font-style: italic;
}
@media (max-width: 767px) {
  .hf-pricing__why {
    display: none;
  }
}
.hf-pricing {
  /* ── Urgencia ── */
}
.hf-pricing__urgency {
  display: block;
  width: fit-content;
  margin: 0 auto 3rem;
  font-family: var(--hf-font-hero);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.4);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  animation: urgency-pulse 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .hf-pricing__urgency {
    margin-bottom: 1.5rem;
    font-size: 0.65rem;
    padding: 0.3rem 1rem;
  }
}
@keyframes urgency-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.hf-pricing {
  /* ── Toggle de facturación ── */
}
.hf-pricing__toggle {
  display: inline-flex;
  background: var(--hf-bg-surface);
  border: 1px solid var(--hf-border);
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .hf-pricing__toggle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 2rem;
    padding: 0.3rem;
    border-radius: 50px;
    scrollbar-width: none;
  }
  .hf-pricing__toggle::-webkit-scrollbar {
    display: none;
  }
}
.hf-pricing__toggle-btn {
  font-family: var(--hf-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hf-text-muted);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.hf-pricing__toggle-btn:hover:not(.hf-pricing__toggle-btn--active) {
  color: var(--hf-text-main);
}
.hf-pricing__toggle-btn--active {
  background: var(--hf-accent);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 12px var(--hf-accent-glow);
}
@media (max-width: 768px) {
  .hf-pricing__toggle-btn {
    flex: 0 0 auto;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }
}
@keyframes price-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hf-pricing {
  /* ── Swipe hint (solo móvil) ── */
}
.hf-pricing__swipe-hint {
  display: none;
}
@media (max-width: 767px) {
  .hf-pricing__swipe-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--hf-text-muted);
    margin: 0 auto 0.75rem;
    opacity: 0.6;
    animation: swipeHintPulse 2s ease-in-out infinite;
  }
}
@keyframes swipeHintPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}
.hf-pricing {
  /* ── Grid de tarjetas ── */
}
.hf-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  align-items: center;
}
@media (max-width: 767px) {
  .hf-pricing__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 7vw;
    scroll-padding: 0 7vw;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .hf-pricing__grid::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  .hf-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.hf-pricing {
  /* ── Card base ── */
}
.hf-pricing__card {
  position: relative;
  background: var(--hf-bg-card);
  background-image: linear-gradient(180deg, rgba(34, 39, 77, 0.3882352941) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .hf-pricing__card {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: center;
    margin: 0;
  }
}
.hf-pricing__card:hover {
  border-color: var(--hf-accent);
  box-shadow: 0 0 24px var(--hf-accent-glow);
  transform: translateY(-4px);
}
.hf-pricing__card {
  /* ── Featured / Recomendado ── */
}
.hf-pricing__card--featured {
  border-color: var(--hf-accent);
  box-shadow: 0 0 30px var(--hf-accent-glow), var(--hf-shadow-card);
}
@media (max-width: 767px) {
  .hf-pricing__card--featured {
    order: -1;
  }
}
@media (min-width: 768px) {
  .hf-pricing__card--featured {
    transform: scale(1.05);
    z-index: 1;
  }
  .hf-pricing__card--featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
}
.hf-pricing {
  /* ── Badge RECOMENDADO ── */
}
.hf-pricing__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hf-font-hero);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-cta-text);
  background: var(--hf-cta-bg);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.hf-pricing {
  /* ── Plan name ── */
}
.hf-pricing__plan-name {
  font-family: var(--hf-font-hero);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hf-text-main);
  letter-spacing: 0.04em;
}
.hf-pricing {
  /* ── Precio ── */
}
.hf-pricing__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.hf-pricing__old-price {
  font-family: var(--hf-font-hero);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.hf-pricing__price {
  font-family: var(--hf-font-hero);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--hf-accent);
  line-height: 1;
  text-shadow: 0 0 20px var(--hf-accent-glow);
}
.hf-pricing__price--animate {
  animation: price-fade 0.35s ease-out;
}
.hf-pricing__currency {
  font-size: 0.5em;
  opacity: 0.8;
}
.hf-pricing__period {
  font-size: 0.5em;
  color: var(--hf-text-muted);
  font-weight: 500;
  opacity: 0.8;
}
.hf-pricing {
  /* ── Features list ── */
}
.hf-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}
.hf-pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--hf-text-muted);
  line-height: 1.4;
}
.hf-pricing__check {
  color: var(--hf-neon);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hf-pricing {
  /* ── CTA button ── */
}
.hf-pricing__cta {
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: auto;
  font-family: var(--hf-font-hero);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hf-cta-text);
  background: var(--hf-cta-bg);
  border: none;
  border-radius: var(--hf-radius-md);
  box-shadow: var(--hf-glow-accent);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hf-pricing__cta:hover {
  background: var(--hf-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--hf-accent-glow);
}
.hf-contact {
  padding: var(--hf-section-py) var(--hf-section-px);
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, var(--hf-neon-glow) 0%, transparent 50%), var(--hf-bg-base);
}
@media (max-width: 767px) {
  .hf-contact {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem;
    margin-top: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hf-contact__title {
  font-family: var(--hf-font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--hf-text-main);
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .hf-contact__title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
}
.hf-contact__subtitle {
  font-size: 1.15rem;
  color: var(--hf-text-muted);
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .hf-contact__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.hf-contact {
  /* ── Error banner ── */
}
.hf-contact__error {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 67, 62, 0.15);
  border: 1px solid var(--hf-danger);
  border-radius: var(--hf-radius-sm);
}
.hf-contact {
  /* ── Form layout ── */
}
.hf-contact__form {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .hf-contact__form {
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
  }
}
.hf-contact {
  /* ── Fields ── */
}
.hf-contact__field {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hf-contact__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hf-text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hf-contact__field input, .hf-contact__field select, .hf-contact__field textarea {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: var(--hf-font-body);
  color: var(--hf-text-main);
  background: var(--hf-bg-card);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  outline: none;
  transition: border-color var(--hf-transition), box-shadow var(--hf-transition);
}
@media (max-width: 767px) {
  .hf-contact__field input, .hf-contact__field select, .hf-contact__field textarea {
    min-height: 50px;
    font-size: 16px !important;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hf-contact__field input:focus, .hf-contact__field select:focus, .hf-contact__field textarea:focus {
    background-color: rgba(255, 255, 255, 0.08);
  }
}
.hf-contact__field input::placeholder, .hf-contact__field select::placeholder, .hf-contact__field textarea::placeholder {
  color: var(--hf-text-muted);
  opacity: 0.5;
}
.hf-contact__field input, .hf-contact__field select, .hf-contact__field textarea {
  /* ── Neon focus ── */
}
.hf-contact__field input:focus, .hf-contact__field select:focus, .hf-contact__field textarea:focus {
  border-color: var(--hf-neon);
  box-shadow: 0 0 0 3px var(--hf-neon-glow), 0 0 20px var(--hf-neon-glow);
}
.hf-contact__field input:disabled, .hf-contact__field select:disabled, .hf-contact__field textarea:disabled {
  opacity: 0.5;
}
.hf-contact__field textarea {
  resize: vertical;
  min-height: 80px;
}
@media (max-width: 767px) {
  .hf-contact__field textarea {
    min-height: 120px;
  }
}
.hf-contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b8faa'><polygon points='0,0 12,0 6,8'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.hf-contact {
  /* ── CTA GIGANTE ── */
}
.hf-contact__submit {
  position: relative;
  padding: 1.25rem 2rem;
  margin-top: 0.75rem;
  font-family: var(--hf-font-hero);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hf-cta-text);
  background: linear-gradient(135deg, #FF7D4A 0%, #ff9b70 100%);
  border: none;
  border-radius: var(--hf-radius-md);
  box-shadow: 0 0 30px var(--hf-accent-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--hf-transition);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hf-contact__submit {
    width: 100%;
    min-height: 60px;
    margin-top: 1rem;
    border-radius: 8px;
  }
}
.hf-contact__submit {
  /* Shimmer effect */
}
.hf-contact__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 55%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmerCTA 3s ease-in-out infinite;
}
.hf-contact__submit:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px var(--hf-accent-glow), 0 8px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff9b70 0%, #FF7D4A 100%);
}
.hf-contact__submit:active:not(:disabled) {
  transform: translateY(-1px) scale(0.99);
}
.hf-contact__submit--loading {
  opacity: 0.7;
  pointer-events: none;
}
.hf-contact__submit--loading::after {
  animation: none;
}
.hf-contact__submit:disabled {
  cursor: not-allowed;
}
.hf-contact__privacy {
  font-size: 0.8rem;
  color: var(--hf-text-muted);
  margin-top: 0.5rem;
}
.hf-contact {
  /* ── Success state ── */
}
.hf-contact--success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.hf-contact__success {
  animation: fadeInUp 0.6s ease-out;
}
.hf-contact__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--hf-bg-base);
  background: var(--hf-neon);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 50px var(--hf-neon-glow);
}
.hf-contact__success-title {
  font-family: var(--hf-font-hero);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--hf-neon);
  margin-bottom: 0.75rem;
}
.hf-contact__success-body {
  font-size: 1.1rem;
  color: var(--hf-text-muted);
  max-width: 450px;
  line-height: 1.7;
}

/* ── Animations ── */
@keyframes shimmerCTA {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ═══════════════════════════════════════════════════════════════
   Footer — Barra inferior mínima
   ═══════════════════════════════════════════════════════════════ */
.hf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--hf-section-px);
  border-top: 1px solid var(--hf-border);
  background: var(--hf-bg-base);
  font-family: var(--hf-font-body);
  font-size: 0.85rem;
  color: var(--hf-text-muted);
}
.hf-footer__copy {
  white-space: nowrap;
}
.hf-footer__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hf-footer__link {
  color: var(--hf-text-muted);
  text-decoration: none;
  transition: color var(--hf-transition);
}
.hf-footer__link:hover {
  color: var(--hf-accent);
}
.hf-footer__sep {
  color: var(--hf-border);
  margin: 0 0.4rem;
}
@media (max-width: 768px) {
  .hf-footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.25rem 1rem;
  }
}
/* ═══════════════════════════════════════════════════════════════
   HUBERFIT — Landing Page Variables
   Dark Tech Fitness · Regla 60-30-10
   60% Azul casi negro · 30% Azul oscuro · 10% Cyan + Naranja CTA
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Primary Accent — Cyan (10%) — iconos, checks, métricas ── */
  --hf-accent: var(--color-accent, #00f0ff);
  --hf-accent-glow: var(--color-accent-glow, rgba(0, 240, 255, 0.2));
  /* ── Neon Green (secondary highlight) ── */
  --hf-neon: #09E1C0;
  --hf-neon-glow: rgba(0, 255, 65, 0.18);
  /* ── Cyan highlights ── */
  --hf-cyan: #00f0ff;
  --hf-cyan-glow: rgba(0, 240, 255, 0.15);
  /* ── Danger / Urgency ── */
  --hf-danger: #FF433E;
  /* ── Dark surfaces (60% azul casi negro) ── */
  --hf-bg-base: #02051B;
  --hf-bg-surface: #151c2c;
  --hf-bg-card: #151c2c;
  --hf-bg-card-hover: #1c2438;
  /* ── Borders (30% — ultra sutiles) ── */
  --hf-border: rgba(255, 255, 255, 0.06);
  --hf-border-accent: rgba(0, 240, 255, 0.25);
  /* ── Typography ── */
  --hf-text-main: #ffffff;
  --hf-text-muted: #94a3b8;
  --hf-text-light: #cbd5e1;
  --hf-text-warm: #ffffff;
  --hf-text-accent: var(--hf-accent);
  --hf-font-hero: var(--font-hero, 'Roboto Slab', serif);
  --hf-font-body: var(--font-primary, 'Space Grotesk', sans-serif);
  /* ── Spacing scale ── */
  --hf-section-py: clamp(4rem, 10vh, 8rem);
  --hf-section-px: var(--content-padding-x, clamp(1rem, 5vw, 6rem));
  /* ── Radius ── */
  --hf-radius-sm: 8px;
  --hf-radius-md: 12px;
  --hf-radius-lg: 20px;
  /* ── Shadows / Glows ── */
  --hf-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
  --hf-glow-accent: 0 0 40px var(--hf-accent-glow);
  --hf-glow-neon: 0 0 40px var(--hf-neon-glow);
  --hf-glow-cyan: 0 0 40px var(--hf-cyan-glow);
  /* ── CTA Button — Naranja (ESTRICTAMENTE acción/compra) ── */
  --hf-cta-bg: var(--color-accent-orange, #ff5722);
  --hf-cta-text: #ffffff;
  --hf-cta-hover: var(--color-accent-orange-hover, #ff7a50);
  /* ── Transitions ── */
  --hf-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   ScrollReveal — Utility classes for on-scroll animations
   Usage: add class "sr" + optional "sr--delay-N" (1–5)
   ═══════════════════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.sr.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Cascade: children with .sr inside a visible parent also reveal */
}
.sr.is-visible .sr {
  opacity: 1;
  transform: translateY(0);
}
.sr {
  /* Cascade delays */
}
.sr--delay-1 {
  transition-delay: 0.1s;
}
.sr--delay-2 {
  transition-delay: 0.2s;
}
.sr--delay-3 {
  transition-delay: 0.3s;
}
.sr--delay-4 {
  transition-delay: 0.4s;
}
.sr--delay-5 {
  transition-delay: 0.5s;
}

/* ── Global reset ── */
html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

.huberfit {
  width: 100%;
  min-height: 100vh;
  background-color: var(--hf-bg-base);
  color: var(--hf-text-main);
  font-family: var(--hf-font-body);
  overflow-x: hidden;
  /* Scroll suave para anchor links del navbar */
  scroll-behavior: smooth;
  /* ── Override common-submodule variables for Dark Tech theme ── */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-hero: 'Roboto Slab', serif;
  --color-accent: #00f0ff;
  --color-accent-glow: rgba(0, 240, 255, 0.2);
  --color-accent-orange: #ff5722;
  --color-accent-orange-hover: #ff7a50;
  --color-bg-base: #0b0f19;
  --color-bg-secondary: #151c2c;
  --color-surface: #151c2c;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-text-main: #ffffff;
  --color-text-muted: #94a3b8;
  /* ═══════════════════════════════════════════════
     Navbar override — pill → full-width glassmorphism
     ═══════════════════════════════════════════════ */
  /* Container: full-width, top: 0 */
}
.huberfit .navbar-container {
  top: 0;
  justify-content: stretch;
  padding: 0;
}
.huberfit {
  /* Pill → full-width bar */
}
.huberfit .navbar-pill {
  --pill-bg: rgba(2, 5, 27, 0.82);
  --pill-text: rgba(241, 246, 253, 0.85);
  --pill-border: rgba(85, 242, 243, 0.08);
  --pill-shadow: none;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(85, 242, 243, 0.1);
  padding: 0.5rem 2rem;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .huberfit .navbar-pill {
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
  }
  .huberfit .navbar-pill--open {
    border-radius: 0;
  }
}
.huberfit .navbar-pill {
  /* Nav links */
}
.huberfit .navbar-pill .nav-links {
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .huberfit .navbar-pill .nav-links {
    top: 100%;
    background-color: rgba(2, 5, 27, 0.95);
    border: none;
    border-bottom: 1px solid rgba(85, 242, 243, 0.08);
    border-radius: 0;
    padding: 0.5rem 1.25rem 1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none;
  }
  .huberfit .navbar-pill .nav-links li {
    border-bottom-color: rgba(255, 255, 255, 0.04);
  }
}
.huberfit .navbar-pill {
  /* Nav item — cyan hover glow */
}
.huberfit .navbar-pill .nav-item {
  font-family: var(--hf-font-body);
}
.huberfit .navbar-pill .nav-item:hover {
  opacity: 1;
  color: #55F2F3;
  text-shadow: 0 0 14px rgba(85, 242, 243, 0.4);
}
.huberfit .navbar-pill {
  /* Hide theme toggle — dark only */
}
.huberfit .navbar-pill .theme-toggle-btn {
  display: none;
}
.huberfit .navbar-pill {
  /* Burger — use our text color */
}
.huberfit .navbar-pill .burger-btn span {
  background: var(--pill-text);
}
.huberfit .navbar-pill {
  /* Lang dropdown */
}
.huberfit .navbar-pill .lang-dropdown {
  border-left-color: rgba(255, 255, 255, 0.08);
}
.huberfit .navbar-pill .lang-dropdown__trigger:hover {
  background-color: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 10px rgba(85, 242, 243, 0.35);
}
.huberfit .navbar-pill .lang-dropdown__menu {
  background: rgba(2, 5, 27, 0.95);
  border-color: rgba(85, 242, 243, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.huberfit .navbar-pill .lang-dropdown__item {
  color: var(--pill-text);
}
.huberfit .navbar-pill .lang-dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 8px rgba(85, 242, 243, 0.25);
}
.huberfit .navbar-pill .lang-dropdown__item--active {
  color: #55F2F3;
  background-color: rgba(85, 242, 243, 0.08);
}
.huberfit .navbar-pill {
  /* Navbar actions wrapper (from modified TSX) */
}
.huberfit .navbar-pill .navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .huberfit .navbar-pill .navbar-actions {
    gap: 0.5rem;
  }
}
.huberfit .navbar-pill {
  /* Logo */
}
.huberfit .navbar-pill .navbar-logo {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.huberfit .navbar-pill .navbar-logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.huberfit .navbar-pill .navbar-logo__img:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .huberfit .navbar-pill .navbar-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: -1;
  }
  .huberfit .navbar-pill .navbar-logo .navbar-logo__img {
    height: 38px;
  }
}/*$vite$:1*/