/*****************************************************
LESS compilation failed due a JavaScript error!

Input: apps/ibcmed/components/lp-med-day/herobanner/clientlib/css/style.less
Error: FileError: 'css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap' wasn't found in apps/ibcmed/components/lp-med-day/herobanner/clientlib/css/style.less on line 5, column 1:
4 
5 @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
6 


(uncompiled LESS src is included below)
*****************************************************/
/* ==============================
   Hero Banner – LP Med Day 2026
   ============================== */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.cmp-lp-herobanner,
.cmp-lp-herobanner *,
.cmp-lp-herobanner *::before,
.cmp-lp-herobanner *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cmp-lp-herobanner {
  position: relative;
  width: 100%;
  height: 859px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-image: var(
    --bg-mobile,
    url("../../../../../etc.clientlibs/ibcmed/components/lp-med-day/herobanner/clientlib/resources/background_image.png")
  );
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay on the background image */
.cmp-lp-herobanner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 36, 77, 0.8);
  z-index: 1;
}

/* ---- Main content area ---- */
.cmp-lp-herobanner__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  max-width: 960px;
  padding: 245.5px 0 32px;
  text-align: center;
  gap: 49px;
}

/* Logo group (illustration + text logo) */
.cmp-lp-herobanner__content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cmp-lp-herobanner__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cmp-lp-herobanner__logo-illustration {
  position: absolute;
  top: -96px;
  right: 23%;

  width: 78px;
  height: auto;
  object-fit: contain;
}

.cmp-lp-herobanner__logo-text {
  height: auto;
  object-fit: contain;
}

/* Headline */
.cmp-lp-herobanner__title {
  color: var(--White, #fff);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Bebas Neue";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  width: 345px;
  padding-right: 8px;
}

.cmp-lp-herobanner__button-wrapper {
  width: 345px;
  height: 60px;
  display: flex;
  justify-content: center;
  margin: auto;
}

/* CTA button */
.cmp-lp-herobanner__button {
  width: 345px;
  height: 60px;
  font-family: Inter;
  display: inline-block;
  padding: 16px 48px;
  background-color: #e40071;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
  text-align: center;
  letter-spacing: 0.2px;

  &:hover {
    background-color: #d0177d;
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(0);
  }
}

.cmp-lp-herobanner__button.button-desktop {
  display: none;
}

.cmp-lp-herobanner__title br {
  display: none;
}

/* ==============================
   Logo Slider (Swiper)
   ============================== */
.cmp-lp-herobanner__slider {
  position: relative;
  z-index: 99;
  width: 100%;
  padding: 24px 0;
  overflow: hidden;
  padding-bottom: 40px;
}

.cmp-lp-herobanner__slider .swiper-wrapper {
  display: flex;
  align-items: center;
  /* transition-timing-function is handled by Swiper but we keep linear for infinite feel */
}

.cmp-lp-herobanner__slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;

  img {
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  &:hover img {
    opacity: 1;
  }
}

.mobile-only {
  display: flex;
}

.desktop-only {
  display: none;
}

/* ==============================
   Responsive – Tablet (≥ 768px)
   ============================== */
@media screen and (min-width: 768px) {
  .cmp-lp-herobanner__container {
    padding: 80px 40px 48px;
    gap: 61px;
  }

  .cmp-lp-herobanner__logo-illustration {
  }

  .cmp-lp-herobanner__logo-text {
  }

  .cmp-lp-herobanner__title {
    font-size: 32px;
    padding-right: 0px;
  }

  .cmp-lp-herobanner__button-wrapper {
    width: 100%;
    max-width: 650px;
    height: 60px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  /* CTA button */
  .cmp-lp-herobanner__button {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
}

/* ==============================
   Responsive – Desktop (≥ 1024px)
   ============================== */
@media screen and (min-width: 1024px) {
  .cmp-lp-herobanner {
    height: 960px;
    background-image: var(
      --bg-desktop,
      url("../../../../../etc.clientlibs/ibcmed/components/lp-med-day/herobanner/clientlib/resources/background_image.png")
    );
  }

  .cmp-lp-herobanner__container {
    padding: 100px 40px 56px;
    padding-top: 280px;
    gap: 61px;
    justify-content: flex-start;
  }

  .cmp-lp-herobanner__content {
    gap: 16px;
  }

  .cmp-lp-herobanner__logo-illustration {
    width: 158px;
    top: -85px;
    right: 19%;
  }

  .cmp-lp-herobanner__logo-text {
    max-width: 420px;
  }

  .cmp-lp-herobanner__title {
    font-size: 52px;
    text-align: left;
    width: 389px;
  }

  .cmp-lp-herobanner__title br {
    display: block;
  }

  .cmp-lp-herobanner__button {
    padding: 18px 64px;
  }

  .cmp-lp-herobanner__button.button-desktop {
    display: block;
  }

  .cmp-lp-herobanner__button.button-mobile {
    display: none;
  }

  .cmp-lp-herobanner__slider {
    padding: 32px 0;
    margin-bottom: 15px;
  }

  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: flex;
  }
}

/* ==============================
   Logo Marquee (CSS Only)
   ============================== */

.cmp-lp-herobanner__slider {
  position: relative;
  z-index: 99;
  width: 100%;
  overflow: hidden;
  padding: 24px 0 40px;
}

.cmp-lp-herobanner__slider-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 25s linear infinite;
}

.cmp-lp-herobanner__slider-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp-lp-herobanner__slider-item img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* animação infinita */
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
