/* Logo e menu */

@media (min-width: 992px) {

  header.container-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;

    padding-left: 15px;
    padding-right: 15px;

    gap: 30px;
    box-sizing: border-box;
  }

  /* Area logo */
  header.container-header > .grid-child:not(.container-nav) {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
  }

  header.container-header .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }

  header.container-header .navbar-brand img {
    display: block;
    width: auto;
    max-height: 70px;
  }

  /* Area menu */
  header.container-header > .container-nav {
    flex: 0 1 300px;
    width: 300px;
    max-width: 300px;
    min-width: 0;
    margin-left: auto;

    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }

  header.container-header .mod-menu,
  header.container-header .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;

    width: 100%;
    margin: 0;
    padding: 0;
  }

  header.container-header .mod-menu > li,
  header.container-header .navbar-nav > li {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

}

.container-header .navbar-toggler {
    color: #134189;
}  

/* Mobile: hamburger menu a destra del logo */
@media (max-width: 991.98px) {

  .container-header {
    position: relative;
  }

  .container-header .navbar-brand {
    padding-right: 60px;
  }

  .container-header .container-nav {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: auto;
    margin: 0;
    padding: 0;
    z-index: 20;
  }

  .container-header .navbar {
    padding: 0;
    justify-content: flex-end;
  }

  .container-header .navbar-toggler {
    margin: 0;
    padding: 8px 10px;
    border: 0;
    color: #003180;
    box-shadow: none;
  }

  .container-header .navbar-toggler:focus {
    box-shadow: none;
  }

  .container-header .icon-menu {
    font-size: 1.5rem;
  }

  .container-header .navbar-collapse {
    position: absolute;
    top: 42px;
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  }
}

/* HERO B2B MEDIA PARTNER */
.bmp-hero-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(circle at 12% 25%, rgba(38, 198, 247, 0.22) 0%, rgba(38, 198, 247, 0) 28%),
    radial-gradient(circle at 82% 30%, rgba(255, 210, 26, 0.20) 0%, rgba(255, 210, 26, 0) 25%),
    linear-gradient(135deg, #003180 0%, #00245f 58%, #00183f 100%);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.bmp-hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 34%);
  pointer-events: none;
}

.bmp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 22px 64px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.bmp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bmp-hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd21a 0%, #ff8a1f 52%, #ff2548 100%);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.75);
}

.bmp-hero-title {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.bmp-hero-title span {
  background: linear-gradient(90deg, #26c6f7 0%, #ffd21a 55%, #ff8a1f 78%, #ff2548 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bmp-hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  font-weight: 400;
}

.bmp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bmp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bmp-hero-btn-primary {
  color: #00245f;
  background: linear-gradient(90deg, #ffd21a 0%, #ff8a1f 55%, #ff2548 100%);
  box-shadow: 0 16px 34px rgba(255, 95, 42, 0.26);
}

.bmp-hero-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.bmp-hero-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.bmp-hero-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.bmp-hero-card-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.bmp-hero-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bmp-hero-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.45;
}

.bmp-hero-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #26c6f7 0%, #0b4bd3 100%);
  box-shadow: 0 0 16px rgba(38,198,247,0.55);
}

.bmp-hero-list li:nth-child(2)::before {
  background: linear-gradient(180deg, #ffd21a 0%, #ff8a1f 100%);
  box-shadow: 0 0 16px rgba(255,138,31,0.55);
}

.bmp-hero-list li:nth-child(3)::before {
  background: linear-gradient(180deg, #ff8a1f 0%, #ff2548 100%);
  box-shadow: 0 0 16px rgba(255,37,72,0.5);
}

.bmp-hero-signature {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .bmp-hero-inner {
    grid-template-columns: 1fr;
    padding: 58px 20px 48px;
    gap: 30px;
  }

  .bmp-hero-card {
    max-width: 560px;
  }
}

@media (max-width: 520px) {
  .bmp-hero-inner {
    padding: 46px 18px 42px;
  }

  .bmp-hero-actions {
    display: grid;
  }

  .bmp-hero-btn {
    width: 100%;
  }

  .bmp-hero-card {
    padding: 22px;
    border-radius: 22px;
  }
}
