:root {
  --nlc-bg: #ffffff;
  --nlc-panel: #e4e4e4;
  --nlc-text: #141313;
  --nlc-muted: #6c6c6c;
  --nlc-accent: #1cb9ba;
  --nlc-accent-dark: #0f8f90;
  --nlc-star: #f0b400;
  --nlc-footer: #d8ecee;
  --nlc-white: #ffffff;
}
.nueva-live-conference {
  margin: 0;
  background: var(--nlc-bg);
  color: var(--nlc-text);
  font-family: "Gotham", "Segoe UI", Tahoma, sans-serif;
  overflow-x: clip;
}

.nlc-topbar {
  height: 70px;
  background: var(--nlc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e8e8e8;
}

.nlc-logo {
  width: auto;
  height: auto;
  max-width: 100%;
}

.nlc-hero {
  position: relative;
  min-height: 484px;
  background-image: url("/v4/live_conference/live_conference_banner.png");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.nlc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 101, 107, 0.34) 0%,
    rgba(0, 11, 16, 0.92) 100%
  );
  z-index: -1;
}

.nlc-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--nlc-white);
  font-weight: 500;
}

.nlc-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 20px 120px;
}

.nlc-section {
  text-align: center;
}

.nlc-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--nlc-text);
}

.nlc-subtitle {
  margin: 40px auto 0;
  max-width: 760px;
  color: var(--nlc-muted);
  font-size: 22px;
  line-height: 1.5;
}

.nlc-products-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(2, minmax(446px, 446px));
  justify-content: center;
  gap: 30px 34px;
}

.nlc-product {
  text-align: left;
  width: 100%;
  max-width: 446px;
}

.nlc-product-media {
  height: 436px;
  width: 100%;
  border-radius: 12px;
  background: var(--nlc-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.nlc-product-media img {
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
}

.nlc-product-meta-row {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nlc-product h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.nlc-stars {
  color: var(--nlc-star);
  font-size: 24px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nlc-compare {
  margin: 2px 0 0;
  color: #7b7b7b;
  font-size: 14px;
}

.nlc-price {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 500;
}

.nlc-product button {
  margin-top: 16px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  height: 54px;
  background: linear-gradient(180deg, #1cbec0 0%, #14afb0 100%);
  color: var(--nlc-white);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(27, 181, 184, 0.28);
}

.nlc-product button:hover {
  background: linear-gradient(180deg, #1eb7b8 0%, var(--nlc-accent-dark) 100%);
}

.nlc-merch {
  margin-top: 116px;
}

.nlc-merch-slider {
  --gap: 24px;
  --card-w: 336px;
  --loop-cards: 4;
  margin-top: 70px;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  max-width: 100dvw;
  overflow-x: clip;
  overflow-y: hidden;
}

.nlc-merch-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: nlc-merch-scroll 22s linear infinite;
}

.nlc-merch-slider:hover .nlc-merch-track {
  animation-play-state: paused;
}

.nlc-merch-card {
  flex: 0 0 var(--card-w);
  border-radius: 16px;
  overflow: hidden;
  background: #dbdbdb;
  height: 420px;
  width: 336px;
  position: relative;
}

.nlc-merch-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 85px;
  background: linear-gradient(
    180deg,
    rgba(24, 184, 186, 0.9) 0%,
    rgba(24, 184, 186, 0) 100%
  );
  z-index: 1;
}

.nlc-merch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes nlc-merch-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * (var(--card-w) + var(--gap)) * var(--loop-cards)));
  }
}

.nlc-footer {
  background: var(--nlc-footer);
  text-align: center;
  padding: 68px 20px 54px;
}

.nlc-footer-logo {
  height: 34px;
  max-width: 48vw;
}

.nlc-footer-divider {
  margin: 28px auto 30px;
  max-width: 1120px;
  border-top: 1px solid rgba(16, 16, 16, 0.2);
}

.nlc-copyright {
  margin: 0;
  font-size: 22px;
}

.nlc-disclaimer {
  margin: 18px auto 0;
  max-width: 820px;
  color: #6f6f6f;
  font-size:16px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .nlc-hero {
    min-height: 260px;
  }

  .nlc-page {
    padding-top: 56px;
  }

  .nlc-subtitle {
    font-size: 18px;
  }

  .nlc-products-grid {
    grid-template-columns: repeat(2, minmax(360px, 1fr));
    justify-content: center;
    gap: 26px 24px;
  }

  .nlc-product {
    max-width: 100%;
  }

  .nlc-product-media {
    height: 280px;
  }

  .nlc-product h3 {
    font-size: 26px;
  }

  .nlc-price {
    font-size: 30px;
  }

  .nlc-product button {
    height: 48px;
    font-size: 17px;
  }

  .nlc-merch-slider {
    --card-w: 235px;
    --gap: 18px;
  }

  .nlc-merch-card {
    height: 350px;
    width: 260px;
  }

  .nlc-copyright {
    font-size: 24px;
  }

  .nlc-disclaimer {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .nlc-topbar {
    height: 60px;
  }

  .nlc-logo {
    width: 110px;
  }

  .nlc-hero {
    min-height: 335px;
  }

  .nlc-hero h1 {
    font-size: 38px;
  }

  .nlc-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    margin-top: 48px;
  }

  .nlc-merch-slider {
    --card-w: calc(56vw);
    --gap: 16px;
  }

  .nlc-page {
    padding: 52px 14px 120px;
  }

  .nlc-section h2 {
    font-size: 32px;
    font-weight: 500;
  }

  .nlc-subtitle {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 20px;
    max-width: 330px;
  }

  .nlc-product-media {
    height: 150px;
    padding: 14px;
  }
  .nlc-product-media img {
    max-width: 98px;
  }

  .nlc-product-meta-row {
    margin-top: 10px;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px;
  }

  .nlc-stars {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .nlc-product h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .nlc-compare {
    font-size: 14px;
  }

  .nlc-price {
    font-size: 15px;
    margin-top: 6px;
  }

  .nlc-product button {
    margin-top: 10px;
    height: 44px;
    font-size: 14px;
    border-radius: 14px;
  }

  .nlc-merch {
    margin-top: 72px;
  }

  .nlc-merch-card {
    height: 320px;
    width: 220px;
    border-radius: 10px;
  }

  .nlc-merch-card::before {
    height: 65px;
  }

  .nlc-footer {
    padding: 52px 14px 44px;
  }

  .nlc-footer-logo {
    width: 180px;
  }

  .nlc-copyright {
    font-size: 20px;
    line-height: 1.5;
  }

  .nlc-disclaimer {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.5;
    max-width: 330px;
  }
}
