/*! Source: /themes/default/assets/css/fontes.css */
@font-face {
  font-family: "Cabin";
  src: url('../fonts/Cabin-Regular.woff2') format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url('../fonts/Cabin-Bold.woff2') format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/*! Source: /themes/default/assets/css/base.css */
@font-face {
  font-family: "Cabin";
  src: url('../fonts/Cabin-Regular.woff2') format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url('../fonts/Cabin-Bold.woff2') format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* 
  iBahia • 2023 - MUNDIWARE
*/
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-out {
  opacity: 1;
  animation: fadeOut 0.5s ease-in 1 forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

*::selection {
  background: #E31837 100%;
  color: #fff;
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-weight: normal;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
  line-height: 1;
  outline: 0px;
  background: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  transition: 0.4s;
  font-family: 'Cabin', Arial, Helvetica, sans-serif;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

* {
  -ms-overflow-style: none;
  /* Disable scrollbar IE 10+ */
}

body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
body::-webkit-scrollbar-button {
  width: 4px;
  height: 4px;
}
body::-webkit-scrollbar-thumb {
  background: var(--vermelhoPadrao);
  border: 0px none #ffffff;
  border-radius: 50px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--vermelhoPadrao);
}
body::-webkit-scrollbar-thumb:active {
  background: var(--vermelhoPadrao);
}
body::-webkit-scrollbar-track {
  background: #ffffff;
  border: 0px none #ffffff;
  border-radius: 50px;
}
body::-webkit-scrollbar-track:hover {
  background: #b3b3b3;
}
body::-webkit-scrollbar-track:active {
  background: #ebebeb;
}
body::-webkit-scrollbar-corner {
  background: transparent;
}
*::-webkit-scrollbar {
  width: 1px;
  background-color: transparent;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

*::-webkit-scrollbar-thumb {
  background-color: transparent;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
}

/* Cores Principais */
:root {
  --verdePadrao: #158543;
  --verdeEscuro: #26603c;
  --verdeClaro: #20c634;
  --roxoPadrao: #812ccb;
  --cinzaPadrao: #727070;
  --cinzaClaro: #efefef;
  --azulPadrao: #1462a3;
  --cinzaEscuro: #4e4e4e;
  --douradoPadrao: #b79116;
  --douradoEscuro: #937100;
  --vinho: #67161e;
  --pretoFull: #000;
  --pretoPadrao: #161616;
  --branco: #FFFFFF;
  --vermelhoPadrao: #E31837;
  --laranjaPadrao: #CB4C1C;
}

body {
  overflow-x: hidden;
  -ms-overflow-style: none;
  background-color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}
.spin {
  transform-origin: center;
  animation: spin 1s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* BREADCRUMB */

.ib-breadcrumb {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ib-breadcrumb>span {
  color: #727070;
  font-size: 14px;
}

.ib-breadcrumb>a {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14px;
  color: var(--vermelhoPadrao);
  position: relative;
  font-family: 'Cabin';
}

.ib-breadcrumb>a>img {
  width: 23px;
  height: 23px;
}

.ib-breadcrumb>a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--vermelhoPadrao);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.ib-breadcrumb>a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/* ESTILO PADRÃO LIGHTBOX DE IMAGENS */

.lightbox,
#maisTocadasVideos,
#lightboxVideo {
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lightbox.hidden,
#maisTocadasVideos.hidden,
#lightboxVideo.hidden {
  opacity: 0;
  visibility: hidden;
}

#lightboxVideo > *,
#maisTocadasVideos>* {
  max-width: 95%;
  width: 100%;
  max-height: 85%;
}

.lightbox .close {
  position: absolute;
  right: -4px;
  top: -10px;
  font-size: 0.7em;
  cursor: pointer;
  background-color: var(--vermelhoPadrao);
  color: #fff;
  padding: 5px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  display: flex;
  margin: 5%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-content img {
  max-width: 1220px;
  max-height: 100%;
  width: 100%;
  max-height: 700px;
  height: 100%;
}

/* ESTILO PADRÃO PARA PÁGINA + RESPONSIVIDADE */
.ib-page {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

/* PARAR SCROLL DA PÁGINA */
.stopScroll {
  overflow-y: hidden;
  height: 100%;
}

/* DOTS DOS WIDGETS */
.ib-dot {
  width: 8px;
  min-width: 8px;
  height: 8px;
  background-color: var(--vermelhoPadrao);
  border-radius: 50%;
}


/* BARRA DE PROGRESSO */
.ib-progressBar {
  position: fixed;
  top: 0;
  background: red;
  width: 100%;
  height: 8px;
  display: flex;
  align-items: center;
}

#progressBar {
  background-color: #fff;
  height: 80%;
  border-radius: 0 5px 5px 0;
}

/* ANUNCIOS IBAHIA */
.ib-ad {
  background: #f5f6f7 0% 0% no-repeat padding-box;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow:hidden;
}
.ib-ad > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: inherit;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}
.ib-ad > div:empty,
.ib-ad > div > div:empty{
  display:none;
}
.ib-ad.ad350x300 {
  width: 100%;
  max-width: 350px;
  max-height: 300px;
  height: 300px;
}

.continue-after-publi {
    font-family: 'Cabin', Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 14px;
    color: var(--vermelhoPadrao);
    margin-bottom: 5px;
}

@media (max-width: 700px){
  .ib-ad.full{
    height: 280px;
  }

  .ib-storiesIframe .content>iframe {
    max-height: 700px;
}
}

/* lightbox stories */

.ib-storiesIframe {
  cursor: pointer;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.ib-storiesIframe.hidden {
  opacity: 0;
  visibility: hidden;
}

.ib-storiesIframe .content {
  position: relative;
  max-width: 620px;
  width: 100%;
  padding: 20px;
  height: 100%;
  max-height: 100vh;
}

.ib-storiesIframe .content .close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 0.7em;
  cursor: pointer;
  background-color: var(--vermelhoPadrao);
  color: #fff;
  padding: 5px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ib-storiesIframe .content>iframe {
  width: 100%;
  height: 100%;
}
.ib-patrocinio {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--pretoFull);
  opacity: 0.8;
  letter-spacing: 0.12px;
}
.ib-patrocinio > a > img {
  width: 65px;
  height: 22px;
}
/*! Source: /themes/default/assets/css/splide-core.min.css */
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}
/*! Source: /themes/default/assets/css/components/topResponsivo.css */
/* 
  iBahia • 2023 - MUNDIWARE
*/
.ib-header{
  padding: 20px 0px 26px 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--vermelhoPadrao);
  gap: 25px;
  position: relative;
}
.ib-header > .wrapper{
  max-width: 1220px;
  padding-right: 20px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--vermelhoPadrao);
  z-index: 2;
}
.ib-header > .wrapper > .menu{
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.ib-header > .wrapper .logo{
  margin-left: 30px;
}
.ib-header > .wrapper .logo > img{
  width: 117px;
  height: 40px;
  object-fit: contain;
}
.ib-header > .wrapper > .social{
  margin-left: auto;
  margin-right: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ib-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(--branco);
}
.ib-header > .wrapper > .social > a:hover{
  background-color: #ffffff42;
}

.ib-header > .wrapper > .ib-search{
  max-width: 103px;
  width: 100%;
  border-radius: 20px;
  gap: 6px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 2px solid var(--branco);
  padding: 13px 15px 13px 20px;
}
.ib-header > .wrapper > .ib-search > input{
  width: 100%;
  height: 15px;
  font-size: 12px;
  color: var(--branco);
  font-weight: 700;
}
.ib-header > .wrapper > .ib-search:focus-within{
  max-width: 200px;
}
.ib-header > .wrapper > .ib-search > input::placeholder{
  font-size: 12px;
  color: var(--branco);
}
.ib-header > .wrapper > .ib-search > img{
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.ib-header > nav {
  max-width: 1220px;
  padding-right: 20px;
  width: 100%;
  margin: auto;
  height: 22px;
  position: relative;
}
.ib-header > nav::after{
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  right: 0;
  background: transparent linear-gradient(90deg, #E3183700 0%, #E31837 100%) 0% 0% no-repeat padding-box;;
}
.ib-header > nav > ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 100%;
  overflow-x: scroll;
}
.ib-header > nav > ul > li{
  cursor: pointer;
  color: var(--branco);
  /* opacity: 0.9; */
  font-size: 18px;
  line-height: 22px;
  position: relative;
  white-space: nowrap;
  text-transform: lowercase;
}
.ib-header > nav > ul > li > a{
  color: var(--branco);
  text-transform: capitalize;
}
.ib-header > nav > ul >:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.ib-header > nav > ul >:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.ib-header .mobile{
  display: none !important;
}
.ib-header .search-icon{
  margin-left: auto;
  width: 19.67px;
  height: 19.67px;
  cursor: pointer;
}
.ib-header .search-box{
  background-color: transparent;
  padding: 13px 26px;
  border: 2px solid #CECECE;
  border-radius: 50px;
  margin-right: 20px;
  height: 0;
  opacity: 0;
  display: none;
  animation: showSearchMobile 0.6s ease-in 1 forwards;
  transform: translateY(-70px) rotateX(88deg);
}

@keyframes showSearchMobile {
  to {
    opacity: 1;
    height:auto;
    transform: translateY(0px)  rotateX(0deg);
  }
}
.ib-header .search-box.active{
  display: block !important; 
  height: auto;
}
.ib-header .search-box > input{
  color: var(--branco);
  font-weight: 700;
  font-size: 14px;
}
.ib-header .search-box > input::placeholder {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.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: 20;
  background-image: linear-gradient(286deg,#000000ab, #000000ab);
  background-size: 100%;
}
.ib-radiosAside {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
  gap: 24px;
}
.ib-radiosAside > a > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.ib-menuAside.active{
  animation: showMenu 0.2s ease-in 1 forwards;
}
.ib-menuAside.active>aside{
  animation: showMenuAside 0.2s ease-in 1 forwards;
}
@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, #E3183700 0%, #E31837 100%) 0% 0% no-repeat padding-box;
}
.ib-menuAside > aside > header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ib-menuAside > aside > header img{
  cursor: pointer;
}
.ib-menuAside > aside > header > a > img{
  width: 175px;
  height: 60px;
}
.ib-menuAside > aside > .ib-searchAside{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:#fff;
  gap: 10px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 50px;
  padding: 11px 20px;
}
.ib-menuAside > aside > .ib-searchAside > input{
  width: 100%;
}
.ib-menuAside > aside > ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 60px;
}
.ib-menuAside > aside > ul li:first-of-type{
  font-weight: 700;
  opacity: 1;
}
.ib-searchImg{
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.ib-menuAside > aside > ul li{
  font-size: 20px;
  cursor: pointer;
  letter-spacing: 0.2px;
  opacity: 0.9;
  color: var(--branco)
}
details[open] > summary > .summary-item{
  list-style-type: disclosure-open !important;
}
.ib-menuAside > aside > ul li > a{
  color: var(--branco);
}
@media (max-width:700px){
  .ib-header>.wrapper>.social{
    margin-left: 20px;
    margin-right: 40px;
  }
}
@media (max-width: 630px){
  .ib-header > nav > ul > li:last-of-type{
    padding-right: 40px;
  }
  .ib-header > nav::after{
    content: "";
  }
  .ib-header .search-box{
    display: none !important;
  }
  .ib-header > nav{
    padding-right: 0;
  }
  .ib-header > .wrapper .logo{
    margin-left: 0;
  }
  .ib-menuAside > aside{
    padding: 10px 22px;
  }
  .ib-header .mobile{
    display: flex !important;
  }
  .ib-header .desktop{
    display: none !important;
  }
  .ib-header > .wrapper > .logo{
    margin-left: unset;
  }
  .ib-header > .wrapper > .menu{
    margin-left: 20.33px;
  }
}
/*! Source: /themes/default/assets/css/components/footerResponsivo.css */
/* 
  iBahia • 2023 - MUNDIWARE
*/
.ib-footer{
  display: flex;
  flex-direction: column;
  background-color: var(--vermelhoPadrao);
}
.ib-footer > .wrapper{
  max-width: 1220px;
  position: relative;
  margin: auto;
  width: 100%;
  gap: 20px;
  display: flex;
  justify-content: space-between;;
  padding: 45px 20px 80px;

}
.ib-footer > .wrapper > a{
  width: 40px;
  height: 30px;
}
.ib-footer > .wrapper > a > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ib-footer > .wrapper > div{
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.ib-footer > .wrapper > div > a > img{
  width: 100%;
  max-width: 230px;
  height: 105px;
}
.ib-footer > .wrapper > div > div{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ib-footer > .wrapper > div > div > h3{
  font-size: 18px;
  line-height: 22px;
  color: var(--branco);
  font-weight:600;
}
.ib-footer > .wrapper > div > div > .social{
  display: flex;
  align-items: center;
  gap: 10px;
}
.ib-footer > .wrapper > div > div > .social > a{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--branco);
}
.ib-footer > .wrapper > div > div > .social > a:hover{
  background-color: #ffffff42;
}
.ib-footer > .wrapper > ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ib-footer > .wrapper > ul li:first-of-type{
  margin-bottom:5px;
  font-weight: 700;
  text-transform: uppercase;
  position: initial;
}
.ib-footer > .wrapper > ul li{
  font-size: 16px;
  line-height: 20px;
  color: var(--branco);
  position: relative;
  width: fit-content;
  cursor: pointer;
  text-transform: lowercase;
}
.ib-footer > .wrapper > ul li > a{
  color: var(--branco);
}
.ib-footer > .wrapper > ul li:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.ib-footer > .wrapper > ul li:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.ib-footer > h3{
  background-color: var(--branco);
  font-size: 14px;
  line-height:16px;
  color: #727070;
  text-transform: lowercase;
  text-align: center;
  padding: 13px 20px;
}
.ib-footer > h3 > em{
  color: var(--vermelhoPadrao);
  font-weight: 700;
}
@media (max-width: 630px){
  .ib-footer > .wrapper{
    flex-direction: column;
  }
  .ib-footer > .wrapper{
    padding: 45px 20px 50px;
  }
  .ib-footer > .wrapper > a{
    position: absolute;
    right: 20px;
    bottom: 50px;
  }
}
/*! Source: /themes/default/assets/css/pages/expediente.css */
/* 
  iBahia • 2023 - MUNDIWARE
*/
.ib-page.expediente{
  margin: 22px auto 63px;
  padding: 0;
}
.ib-page.expediente > h2{
  color: var(--vermelhoPadrao);
  font-size: 42px;
  line-height:48px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 20px;
}
.ib-page.expediente > section{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 42px;
  margin-top: 30px;
  padding: 0 20px;
}
.ib-page.expediente > section > div{
  display:flex;
  flex-direction: column;
  gap: 6px;
  width: 260px;
}
.ib-page.expediente > section > div > h2{
  color: var(--pretoFull);
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.22px;
}
.ib-page.expediente > section > div > h3{
  color: var(--cinzaPadrao);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.14px;
}
.ib-page.expediente > section > div > a{
  margin-top: 12px;
  display:flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.14px;
  color: var(--vermelhoPadrao);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 900px){
  .ib-page.expediente > section{
    grid-template-columns: repeat(1,1fr);
  }
}
@media (max-width: 600px){
  .ib-page.expediente > section{
    gap: 0;
    padding: 0;
  }
  .ib-page.expediente > section > div{
    width: 100%;
    padding: 20px 20px;
    border-top: 2px solid #F1F1F1;
  }
  .ib-page.expediente {
    margin: 22px auto 40px;
}
}
