
/* 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;
}
h2 {
    font-size: clamp(1.4rem, 5vw, 3rem);;
}
p{
    font-size: 0.9rem;
}
.fw-bold {
    font-weight: 700!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;
}
.blog-card .row{
    margin-top: -70px;
}

/* 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 */
.live-section {
    /* height: 100vh; */
    height: calc(100vh - 150px);
    /* background-color: #f0f8ff; */
}
.navbar-logo {
    height: 50px;
} 
.neon-border {
    border-radius: 10px;
    animation: ledPulse 2s infinite alternate;
}

@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);
    }
}

#live-section .container {
    height: 100%;
    max-width: none !important;
}
/* .navbar .container{
    max-width: none !important;
} */

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

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


.video-wrapper {
    width: calc(100% - 110px);
    height: 100%;
    margin: 0px 55px 55px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 0;
}

.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;
}
.live-section {
  position: relative;
  /* padding-top: 120px;  */
}

/* 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 */

/* Blog feature */
.diagonal-box {
  transform: skewX(-25deg);
  padding: 40px;
  margin-top: 120px !important;
  border-radius: 10px;
  box-shadow: 0 0 40px #00EBFF;
}
.diagonal-box > .inner {
  transform: skewX(25deg);
}
.diagonal-box-start {
  transform: skewX(-25deg);
  margin-left: -300px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 40px #00EBFF;
  margin-top: 120px;
}

.diagonal-box-end {
  transform: skewX(-25deg);
  margin-right: -300px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 40px #00EBFF;
  margin-top: 120px;
}

.author-stack {
  position: relative;
  width: 100%;
  height: 415px;
  display: flex; 
  /* min-height: 420px;  */
}

.author-card {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.author-img {
  position: relative;
  z-index: 2;
  /* width: 100%; */
}
.author-stack .inner{
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 120px;
  a{
    color: white;
  }
  a:hover{
    color: #00EBFF;
  }
}
.limit-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Team ADR */
.team-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px; 
  scroll-snap-type: x proximity;
  cursor: grab;
}

.team-row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.team-card {
  position: relative;
  width: 240px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px #00eaff55;
}

.border-glow-red {  
  box-shadow: 0 0 40px #d72828b2 !important;
}

.card-rectangle{
  width: 200px !important;
  height: 200px !important;
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #00EBFF;
  background-image: url('../img/ADR-Icono.svg'); 
  background-repeat: repeat;
  opacity: 1;
}
.bg-red{
  background-color: #d72828 !important; 
}
.bg-black {
  background-color: #000000 !important; 
  background-image: none !important;
}
.bg-white {
  background-color: #ffffff !important; 
  background-image: none !important;
}

.card-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: cover;
  background-position: center;
}
.card-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: cover;
  background-position: center;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;

  background: linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.1)
  );
}

.card-content {
  position: absolute;
  inset: 0;
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  padding-bottom: 20px;
  text-align: center;
}

.card-content h3,
.card-content p {
  margin: 0;
}
.card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  font-family: 'ADRFontOB', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 1px;
  color: black;
  opacity: .85;
  pointer-events: none;
}

/* Scroll horizontal */
.team-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* 🔥 CLAVE */
.team-row {
  display: flex;
  gap: 24px;
  width: max-content;          /* solo mide lo que necesita */
  margin-inline: auto;         /* se centra */
  padding-inline: 16px;
}

.team-card {
  flex: 0 0 auto;
}

/* ===== DESKTOP: SIN SCROLL ===== */
@media (min-width: 992px) {
  .team-scroll-wrapper {
    overflow-x: hidden;
  }
}


/* Our partners */
.our-partners {
  background: black;
  color: white;
}

.partners-carousel {
  position: relative;
  width: 70%;
  margin: 40px auto 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .partners-carousel {
    width: 90%;
  }
}

.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, black 0%, transparent 100%);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, black 0%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 150px;
  width: max-content;
  will-change: transform;
}

.partner {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  height: 60px; 
  width: auto;
  max-width: 150px;   
  object-fit: contain;
  display: block;
}

/* Social media */
.social-card {
  width: 300px;
  height: 500px;
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.social-card img, .inst-page blockquote, .social-card  div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.social-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .3s ease;
  span{
    text-decoration-line: underline;
  }
  img{
    height: 50px;
    width: auto;
    margin-bottom: 15px;
  }
}

.social-card:hover .overlay {
  opacity: 1;
}

.social-card > *:not(.overlay) {
  width: 100%;
  height: 100%;
}

/* 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;
    }
}