.ib-radio-header {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 15px #00000005;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.ib-radio-header>.wrapper {
  padding: 20px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  margin: auto;
  gap: 8%;
  min-height: 123px;
}

.ib-radio-header>.wrapper>.menu {
  display: none;
  width: 30px;
  cursor: pointer;
  height: 30px;
}

.ib-radio-header>.wrapper>.logos {
  margin-right: auto;
  display: flex;
  gap: 10px;
  align-items: start;
}
.ib-radio-header>.wrapper>.logos>h1.mundobahiafm {
  width: 344px;
  height: 52px;
  overflow: hidden;
  display: flex;
}
.ib-radio-header>.wrapper>.logos>a>img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown:first-of-type {
  margin-left: auto;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown {
  height: 22px;
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown * {
  user-select: none;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>a {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--pretoPadrao);
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>ul>li:hover,
.ib-radio-header>.wrapper>.ib-radio-dropdown>a.active {
  font-weight: 700;
  color: var(--corRadio);
}

.ib-radio-header>.wrapper>.ib-radio-dropdown.show>ul {
  display: flex;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>ul {
  margin-top: 15px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 20px 40px #00000066;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  display: none;
  opacity: 0;
  z-index:2;
  position: absolute;
  min-width: 235px;
  top: 20px;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>ul>li {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  cursor: pointer;
  color: #2D2D2D;
  transition: 0.1s;
  text-transform: capitalize;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>ul>li a {
  color: #2D2D2D;
  transition: 0.1s;
}

.ib-radio-header>.wrapper>.ib-radio-dropdown>ul>li a:hover,
.ib-radio-header>.wrapper>.ib-radio-dropdown>ul>li:hover {
  color: var(--corRadio);
}

.ib-radio-header>.wrapper>.social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ib-radio-header>.wrapper>.social>a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--corRadio);
}

.ib-radio-header>nav {
  display: none;
  padding: 22px 0 22px 22px;
  border-top: 1px solid #E4E4E4;
  position: relative;
}

.ib-radio-header>nav::before {
  content: '';
  width: 44px;
  height: 45px;
  position: absolute;
  right: 0;
  background: transparent linear-gradient(90deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

.ib-radio-header>nav>ul {
  display: flex;
  align-items: center;
  gap: 25px;
  min-width: 100%;
  overflow-x: scroll;
  margin-bottom: -20px;
}

.ib-radio-header>nav>ul li a {
  font-size: 16px;
  line-height: 20px;
  color: var(--pretoPadrao);
  letter-spacing: 0.16px;
  white-space: nowrap;
}

.ib-radio-header>nav>ul li a.active {
  font-weight: 700;
  color: var(--corRadio);
}

.ib-menuAside {
  top: 0;
  min-height: 100vh;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 3000;
  background-image: linear-gradient(286deg, #000000ab, #000000ab);
  background-size: 100%;
}
.ib-menuAside .wrap-details{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  overflow-y: scroll;
  margin-bottom: -20px;
  padding-bottom: 20px;
}
.ib-radiosAside {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.ib-radiosAside>a>img {
  width: 100%;
  object-fit: contain;
  height: 50px;
}

.ib-menuAside.active {
  animation: showMenu 0.6s ease-in 1 forwards;
}

.ib-menuAside.active>aside {
  animation: showMenuAside 0.7s ease-in 1 forwards;
}
.ib-botao-ib{
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--pretoPadrao);
}
.ib-botao-ib > img {
  width: 20px;
}
@keyframes showMenu {
  to {
    visibility: visible;
    opacity: 1
  }
}

.ib-menuAside>aside {
  min-height: 100vh;
  visibility: hidden;
  transform: translateX(-100vw);
  padding: 20px 50px;
  max-width: 416px;
  width: 100%;
  overflow: hidden;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--vermelhoPadrao);
  position: relative;
}

@keyframes showMenuAside {
  to {
    visibility: visible;
    transform: translateX(0);
  }
}

.ib-menuAside>aside::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 70px;
  left: 0;
  background: transparent linear-gradient(180deg, #FF193800 0%, #FF1938 100%) 0% 0% no-repeat padding-box;
}

.ib-menuAside>aside>header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ib-menuAside>aside>header > img {
  cursor: pointer;
  margin-left: auto;
}
.ib-menuAside>aside>.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ib-menuAside>aside>.social>a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}
.logos.logos-bahiafm {
  display: flex;
}
.logos.logos-bahiafm > a:first-of-type {
  margin-right: 20px;
  border-right: 1px solid #CA16D8;
  padding-right: 20px;
}
.logos.logos-bahiafm > a > img {
  width: 140px!important;
  height: 52px!important;
}
.logos.logos-bahiafm > h1 {
  width: 321px!important;
  height: 52px!important;
}
.logos.logos-bahiafm > h1 > a:first-of-type {
  margin-right: 20px;
  border-right: 1px solid #CA16D8;
  padding-right: 20px;
}
.logos.logos-bahiafm > h1 > a > img {
  width: 140px!important;
  height: 52px!important;
}
@media (max-width:840px) {
  .ib-radio-header>.wrapper {
    gap: 5%;
  }
}

@media (max-width: 700px) {
  .ib-botao-ib{
    display: none;
  }

  .ib-radio-header>.wrapper>.menu,
  .ib-radio-header>nav {
    display: block;
  }

  .ib-radio-header>.wrapper>.ib-radio-dropdown {
    display: none;
  }

  .ib-radio-header>.wrapper>.social {
    margin-left: auto;
  }
  .logos.logos-bahiafm > a > img {
    width: 110px!important;
    height: 40px!important;
  }
  .logos.logos-bahiafm > h1 {
    width: 261px !important;
    height: 40px !important;
  }
  .logos.logos-bahiafm > h1 > a > img {
    width: 110px!important;
    height: 40px!important;
  }
  .ib-radio-header>.wrapper {
    flex-direction: row-reverse!important;
  }
}

@media (max-width: 480px) {
  .ib-radio-header>.wrapper>.social {
    display: none;
  }
}