/*! 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/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/politica-de-privacidade.css */
.politica-de-privacidade > h2:first-of-type{
  color: var(--vermelhoPadrao);
  font-size: 42px;
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0.42px;
  margin-bottom: 40px;
}
.politica-de-privacidade > h2:first-of-type > em{
  font-weight: 700;
}
.politica-de-privacidade p{
  color: var(--pretoPadrao);
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.16px;
  margin-bottom: 25px;
}
.politica-de-privacidade p strong{
  font-weight: 700;
  font-weight: bold;
}
.politica-de-privacidade p strong u{
  text-decoration: underline;
}
.politica-de-privacidade h2{
  letter-spacing: 0.26px;
  font-weight: 700;
  font-weight: bold;
  font-size: 26px;
  line-height: 28px;
  color: var(--pretoPadrao);
  margin-bottom: 25px;
}
.politica-de-privacidade h3{
  letter-spacing: 0.26px;
  font-weight: 700;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: var(--pretoPadrao);
  margin-bottom: 25px;
}
.politica-de-privacidade ul li {
  list-style-type: disc;
  list-style-position: inside;
}
.politica-de-privacidade ul li a{
  color: var(--vermelhoPadrao)
}
.politica-de-privacidade ul{
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.politica-de-privacidade table {
  margin-bottom: 25px;
  width: 100%;
  max-height: 600px;
  overflow-x: scroll;
}
.politica-de-privacidade table *{
  border: 1px solid #F1F1F1;
}
.politica-de-privacidade table th {
  padding: 15px 18px;
  text-align: center;
  vertical-align: middle;
}
.politica-de-privacidade table td{
  padding: 15px 18px;
  text-align: center;
  vertical-align: middle;
  color: var(--cinzaPadrao);
}
.politica-de-privacidade p a{
  color: var(--vermelhoPadrao);
  text-decoration: underline;
}
@media (max-width: 768px){
  .politica-de-privacidade > h2:first-of-type {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 25px;
}
.politica-de-privacidade p {
  color: var(--pretoPadrao);
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 15px;
}
.politica-de-privacidade h2{
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 24px;
}
}
