:root {
  --bmr-blue: #003b73;
  --bmr-red: #d62828;
  --gray-bg: #f2f4f7;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--gray-bg);
  margin: 0;
  padding: 0;
}

/* =========================
   MENU BMR PRIME
========================= */

.navbar-bmr {
  background: linear-gradient(90deg, #c5dff8, #003b73);
  min-height: 115px;
  padding: 10px 0;
}

.logo-navbar {
  height: 95px; /* ALTERE AQUI O TAMANHO DA LOGO */
  width: auto;
  display: block;
  transition: 0.3s;
}

.logo-navbar:hover {
  transform: scale(1.05);
}

.navbar-nav {
  gap: 15px;
  align-items: center;
}

.nav-link {
  color: #e2e2e2 !important;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #dfdede;
  left: 0;
  bottom: 0;
  transition: .3s;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-cotacao {
  margin-left: 20px;
  border-radius: 25px;
  font-weight: 600;
  padding: 8px 18px;
}

/* =========================
   HERO BANNER
========================= */

.hero-banner {
  background:
    linear-gradient(
      180deg,
      #aad3f862,
      #fcf9e91f
    ),
    url("../img/banner-desktop.png") center center no-repeat;

  background-size: contain;
  background-color: #ffffff;
  height: 850px;
  display: flex;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
}


/* =========================
   TITULOS
========================= */

.section-title {
  font-weight: 700;
  color: var(--bmr-blue);
}

/* =========================
   IMAGENS DAS SOLUÇÕES
========================= */

.sol-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* =========================
   CARDS
========================= */

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}


/* =========================
   BOTÕES
========================= */

.btn {
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}


/* =========================
   PARCEIROS
========================= */

.partners-section {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  overflow: hidden;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.partner-card {
  width: 200px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0,0,0,.08);
}

.partner-card img {
  max-width: 150px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-card:hover img {
  filter: grayscale(0);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================
   RESPONSIVO
========================= */

/* Tablets e celulares */
@media (max-width: 992px) {

  /* Menu */
  .navbar-bmr {
    min-height: 85px;
  }

  .logo-navbar {
    height: 65px;
  }

  .navbar-collapse {
    margin-top: 15px;
    background: #003b73;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
  }

  .navbar-nav {
    gap: 12px;
  }

  .nav-link {
    padding: 12px;
    font-size: 17px;
  }

  .btn-cotacao {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }


 /* Hero */
.hero-banner {
  text-align: center;
  min-height: auto;
  padding: 50px 20px;
}

.hero-banner h1 {
  font-size: 2rem;
}

.hero-img {
  margin-top: 30px;
  max-height: 300px;
}


/* Soluções */
.sol-img {
  max-height: 280px;
}


  /* Parceiros */
  .partner-card {
    width: 160px;
    height: 80px;
  }

  .partner-card img {
    max-width: 120px;
  }
}


/* Celulares pequenos */
@media (max-width: 576px) {

  .logo-navbar {
    height: 55px;
  }

  .hero-banner h1 {
    font-size: 1.6rem;
  }

  .hero-banner .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .partners-section {
    padding: 20px;
  }

  .partner-card {
    width: 140px;
    height: 70px;
  }

  .partner-card img {
    max-width: 100px;
    max-height: 40px;
  }
}

@media (max-width: 992px) {

  .hero-banner {

    background:
      linear-gradient(
        180deg,
        rgba(69, 160, 245, 0.55),
        rgba(182, 186, 243, 0.25)
      ),
      url("../img/banner-mobile.png") center center no-repeat;

    background-size: cover;
    background-position: 75% center;
    min-height: 600px;
    padding: 50px 20px;

    text-align: center;
  }

}