
/* Font */
@font-face {
  font-family: 'ADRFontUS';
  src: url('../fonts/Uni-Sans-Thin.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ADRFontOR';
  src: url('../fonts/Oswald-Regular.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ADRFontOB';
  src: url('../fonts/Oswald-Bold.woff') format('woff');
  font-weight: 400;
  font-style: bold;
  font-display: swap;
}
body{
    font-family: 'ADRFontUS', sans-serif;
}
html, body {
  overflow-x: hidden;
}
footer{
  background-color: white;
  color: #3D3D3D;
}
p{
    font-family: 'ADRFontOR', sans-serif;
}
h1, h2, h3, h4, h5 {
    font-family: 'ADRFontOB', sans-serif;
    text-transform: uppercase!important;
}
h1 {
    font-size: clamp(1.4rem, 5vw, 3rem);;
}
h2 {
    font-size: clamp(0.8rem, 5vw, 2.4rem);;
}
p{
    font-size: 0.9rem;
}
.fw-bold {
    font-weight: 700!important;
    font-family: 'ADRFontOB', sans-serif !important;
}
.fw-thin{
    font-family: 'ADRFontUS', sans-serif !important;
}
.fw-regular{
    font-family: 'ADRFontOR', sans-serif !important;
}
.text-center {
    text-align: center!important;
}
/* .fs-1 {
    font-size: 3rem!important;
}
.fs-2 {
    font-size: 2.5rem!important;
} */
body,
section,
.blog-card {
    background-color: black;
    color: white;
    margin: 0;
}
section {
    margin: 0 0 50px !important;
    padding-bottom: 20px !important;
}

/* Ocultar scroll */
/* Chrome, Safari, Edge */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
/* Firefox */
html {
    scrollbar-width: none;
}
/* IE */
body {
    -ms-overflow-style: none;
}
/* End Ocultar scroll */
.text-light{
  color: white;
}

@keyframes ledPulse {
    from {
        box-shadow:
            0 0 4px #00EBFF,
            0 0 10px #00EBFF,
            0 0 18px rgba(0, 235, 255, .5);
    }

    to {
        box-shadow:
            0 0 8px #00EBFF,
            0 0 18px #00EBFF,
            0 0 36px rgba(0, 235, 255, .8);
    }
}

.nav-inner {
  max-width: 1320px;   /* mismo que Bootstrap XL */
  margin: 0 auto;
  padding-inline: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.neon-border {
    border-radius: 10px;
    animation: ledPulse 2s infinite alternate;
}

.logo {
    max-width: 300px;
}
/* Navbar  */
.navbar-custom {
    width: 100%;
    max-width: 100%;
    position: relative;
    transition: all .3s ease;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: black;
    backdrop-filter: blur(8px);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    flex: 1;
}
.nav-center {
    flex: 0 0 auto;
    text-align: center;
}

.nav-center {
    text-align: center;
}

.nav-right {
    text-align: right;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.navbar-logo {
    height: 50px;
    max-width: 100%;
}

/* NAV FIXED OCULTO */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  transform: translateY(-100%);
  opacity: 0;

  transition:
    transform 0.45s ease,
    opacity 0.35s ease;

  pointer-events: none;
}

/* NAV FIXED VISIBLE */
.navbar-fixed.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* DEGRADADO */
.navbar-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
  z-index: -1;
}

/* nav menu */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  p{
      font-size: 1.2rem;
  }
  .nav-links a {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .navbar-custom {
    padding: 12px 0;
  }

  .nav-center {
    padding: 0;
  }
  .navbar-logo {
    height: 35px;
    max-width: 100%;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    min-width: 44px; 
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform .4s ease, opacity .35s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
}
/* end nav menu */

/* Footer */
.footer-logo {
  height: 150px;
  max-width: 100%;
}
.social-icons a img{
  height: 30px;
  width: auto;
}

.logo-product-page {
    width: 200px;
}
.product-secc{
    p{
        font-size: 1.2rem;
    }
}

#productos-youtube p{
    font-size: 1.2rem;
    font-family: 'ADRFontUS', sans-serif;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Evita que el texto se muestre en varias líneas */
    border: 0;
}