body, html {
    overflow-x: hidden;
}
body {
	 font-family: "PT Sans", sans-serif !important;
	 background-color: #F5F7FA;
}

.owl-banner-1 .item {
    height: 550px;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 20px;
    position: relative;
}
.owl-banner-1 .item::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
	z-index: 2;
    top: 0;
    left: 0;
}
.conteudo-banner-1 {
    position: relative;
    z-index: 3;
    display: block;
    width: 50%;
	margin-bottom: 70px;
}
.titulo-banner-1 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
}
.texto-banner-1 {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
}

.meta-1 {
    color: #FFFFFF;
	display: flex;
    align-items: center;
    gap: 10px;
}

.tag-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 8px;
    background: #1FABA1;
    border-radius: 6px;
    display: inline-block;
}
.tag-1.economia {
    background: #26D3A0;
}
.tag-1.podcast {
    background: #4E4E4E;
}
.tag-1.sustentabilidade {
	background: #F1927D;
}
.tag-1.negocios {
	background: #86587B;
}
.tag-1.legislacao {
	background: #E55B4C;
}




.mdados-1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
	display: inline-block;
}


.banner-slider-1 .owl-controls-custom {
	position: absolute;
    bottom: 25px;
    left: 35px;
    z-index: 3;
}
.owl-counter{
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	color: #FFFFFF;;
}
.owl-banner-1 .owl-nav {
    position:absolute;
    bottom:20px;
    left: 125px;
    display:flex;
    gap:15px;
}
.owl-banner-1 .owl-nav button, .owl-banner-1.owl-theme .owl-nav [class*=owl-]:hover {
    color:#fff;
    font-size:20px;
	background: transparent !important;
    border: 1px solid #fff !important;
}

.owl-banner-1 button.owl-prev {
    left: -50px;
}
.owl-banner-1 button.owl-next {
    right: -50px;
}

.banner-estatico-1 {

}

.titulo-2 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #86587B;
    text-transform: uppercase;
}

.linha-1 {
    border: 1px solid #E3E3E3;
	margin: 1.8rem 0;
}

.tag-2 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px;
    color: #000;
    padding: 8px;
    border: 0.5px solid #DAE8FC;
    border-radius: 6px;
	display: inline-block;
	text-transform: uppercase;
}
.tag-2.economia {
    color: #1FABA1;
}
.tag-2.legislacao {
    color: #E55B4C;
}
.tag-2.negocios {
    color: #86587B;
}
.tag-2.sustentabilidade {
    color: #F1927D;
}



.post-1 {
    display: block;
    background-color: #EBEFF6;
    padding: 20px;
    border-radius: 12px;
	position: relative;
	overflow: hidden;
	height: 350px;
}
.post-1 img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
	transition: height .35s ease;
}
.post-1 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post-1 h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
	margin-bottom: 10px;
}
.post-1 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #444444;
    margin-bottom: 20px;
}
.post-1 b {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #86587B;
    display: block;
    padding-top: 20px;
	opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
.post-1 time,
.post-1 h3,
.post-1 p,
.post-1 .tag-2{
    transition: transform .35s ease;
}
/* HOVER */
.post-1:hover img{
    height:50px;
}
.post-1:hover time,
.post-1:hover h3,
.post-1:hover p,
.post-1:hover .tag-2{
    transform: translateY(-8px);
}
.post-1:hover b{
    opacity:1;
    transform: translateY(0);
}
.post-1:hover h3 {
    text-decoration: underline;
}





.post-2 {
    display: block;
    background-color: #EBEFF6;
    padding: 20px;
    border-radius: 12px;
	position: relative;
	overflow: hidden;
	height: 725px;
}
.post-2 img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
	transition: height .35s ease;
}
.video-cont-2 {
	position: relative;
}
.video-cont-2 i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
}
.post-2 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post-2 h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
	margin-bottom: 10px;
}
.post-2 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #444444;
    margin-bottom: 20px;
}
.post-2 b {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #86587B;
    display: block;
    padding-top: 20px;
	opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
.post-2 time,
.post-2 h3,
.post-2 p,
.post-2 .tag-2{
    transition: transform .35s ease;
}
/* HOVER */
.post-2:hover img{
    height:420px;
}
.post-2:hover time,
.post-2:hover h3,
.post-2:hover p,
.post-2:hover .tag-2{
    transform: translateY(-8px);
}
.post-2:hover b{
    opacity:1;
    transform: translateY(0);
}
.post-2:hover h3 {
    text-decoration: underline;
}




.post-3 {
    display: block;
    background-color: #EBEFF6;
    padding: 20px;
    border-radius: 12px;
	position: relative;
	overflow: hidden;
	height: 528px;
}
.post-3 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
	transition: height .35s ease;
}
.post-3 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post-3 h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
	margin-bottom: 10px;
}
.post-3 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #444444;
    margin-bottom: 20px;
}
.post-3 b {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #86587B;
    display: block;
    padding-top: 20px;
	opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
.post-3 time,
.post-3 h3,
.post-3 p,
.post-3 .tag-2{
    transition: transform .35s ease;
}
/* HOVER */
.post-3:hover img{
    height: 220px;
}
.post-3:hover time,
.post-3:hover h3,
.post-3:hover p,
.post-3:hover .tag-2{
    transform: translateY(-8px);
}
.post-3:hover b{
    opacity:1;
    transform: translateY(0);
}
.post-3:hover h3 {
    text-decoration: underline;
}





.post-4 {
    display: block;
}
.post-4 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #B27EA5;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post-4 h3 {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #444444;
}
/* HOVER */
.post-4:hover h3 {
    text-decoration: underline;
}




.post-5 {
    display: flex;
    flex-direction: row;
    background-color: #EBEFF6;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 270px;
    width: 100%;
    gap: 20px;
	align-items: center;
}
.post-5 img {
    width: 45%;
    height: 225px;
    object-fit: cover;
    border-radius: 4px;
	transition: width .35s ease;
	flex-shrink: 0;
}
.post-5 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post-5 h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
	margin-bottom: 10px;
}
.post-5 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #444444;
    margin-bottom: 20px;
}
.post-5 .more_p {
	width: 10%;
    border: 1px solid #F1927D;
	display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    flex-shrink: 0;
	opacity: 0;
    transform: translateX(10px);
    transition: all .35s ease;
}
.post-5 .more_p i {
    color: #F1927D;
}
.post-5 .cont_p {
    transition: transform .35s ease;
	width: 45%;
	flex-grow: 0;
    flex-shrink: 0;
}
/* HOVER */
.post-5:hover img{
    width: 35%;
}
.post-5:hover .cont_p{
    transform: translateX(-8px);
}
.post-5:hover .more_p  {
    opacity:1;
    transform: translateX(0);
}
.post-5:hover h3 {
    text-decoration: underline;
}




.post-6 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 270px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}
.post-6::before {
    background: #000;
    border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
	opacity: .35;
    transition: opacity .35s ease;
}
.post-6 time {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
    margin-bottom: 10px;
}
.post-6 h3 {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	margin-bottom: 10px;
}
.post-6 b {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #FFFFFF;
	position: relative;
	z-index: 9;
	opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
.post-6 b i {
	color: #FECC4E;
}
.post-6 div {
    transition: transform .35s ease;
	position: relative;
	z-index: 9;
}
/* HOVER */
.post-6:hover div {
    transform: translateY(-8px);
}
.post-6:hover b {
    opacity:1;
    transform: translateY(0);
}
.post-6:hover {
	box-shadow: 0px 30px 30px -30px rgba(12, 11, 66, 0.3);
}
.post-6:hover::before {
    opacity: .6;
}


.post-7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.post-7 img {
    width: 220px;
	height: 130px;
	border-radius: 12px;
	object-fit: cover;
}
.post-7 time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
    display: block;
}
.post-7 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
    display: block;
    margin-bottom: 10px;
    margin-top: 5px;
}
.post-7:hover p {
    text-decoration: underline;
}
.post-7 .over-i {
	position: relative;
	flex-shrink: 0;
}
.post-7 .over-i::before {
	background: transparent;
	border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.post-7 .over-i b {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
}
.post-7:hover .over-i::before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}
.post-7 .over-i b {
    position: absolute;
	z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
	white-space: nowrap;
	display: none;
}
.post-7:hover .over-i b {
	display: block;
}



.post-stories {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 475px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
    border-radius: 14px;
    position: relative;
}
.post-stories::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33.05%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.post-stories div {
	position: relative;
	z-index: 9;
}
.post-stories h3 {
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
	margin-top: 15px;
	margin-bottom: 0px;
}


.post-canais-1 {
    display: block;
	position: relative;
}
.post-canais-1 img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}
.post-canais-1 h3 {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #444444;
}
.post-canais-1 p {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #444444;
}


.post-canais-2 {
    display: block;
	position: relative;
}
.post-canais-2 img {
    width: 100%;
    object-fit: cover;
	height: 96.75px;
	box-shadow: 0px 30px 30px -30px rgba(12, 11, 66, 0.3);
	border-radius: 12px;
}
.post-canais-2 i {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
}


.news-1 span {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #F1927D;
    text-transform: uppercase;
	display: block;
}
.news-1 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
}
.news-1 input {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    height: 50px;
    display: block;
    width: 100%;
    padding-left: 40px;
    padding-right: 45px;
	padding-top: 10px;
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
}
.news-1::-webkit-input-placeholder{
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
}
.news-1::-moz-placeholder {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
}
.news-1 label {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #86587B;
    position: absolute;
    top: 6px;
    left: 40px;
}
.news-1 i {
    font-size: 25px;
    color: #86587B;
    position: absolute;
    top: 12px;
    left: 8px;
}
.news-1 button {
    font-size: 25px;
    color: #86587B;
    position: absolute;
    right: 12px;
    top: 7px;
	border: none;
	background-color: transparent;
}

.texto-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
	margin-bottom: 0px;
}

.btn-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #B27EA5;
    padding: 12px 12px 12px 10px;
    border: 1px solid rgba(190, 153, 181, 0.25);
    border-radius: 6px;
}

.btn-1:hover, .drops-card-1:hover .btn-1 {
	background-color: #E2C8DC;
	border: 1px solid #E2C8DC;
}


.banner-tabs-1 {

}
.banner-tabs-1 .owl-controls-custom {
	position: absolute;
    bottom: 25px;
    left: 61px;
    z-index: 3;
}
.owl-counter-tab-1 {
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	color: #FFFFFF;;
}
.owl-tab-1 .owl-nav {
    position:absolute;
    bottom:20px;
    left: 145px;
    display:flex;
    gap:15px;
}
.owl-tab-1 .owl-nav button, .owl-tab-1.owl-theme .owl-nav [class*=owl-]:hover {
    color:#fff;
    font-size:20px;
	background: transparent !important;
    border: 1px solid #fff !important;
}
.owl-tab-1 button.owl-prev {
    left: -50px;
}
.owl-tab-1 button.owl-next {
    right: -50px;
}
.owl-tab-1 .box-tab {
    background-color: #86587B;
	padding: 0;
    margin: 0;
}
.owl-tab-1.owl-carousel .owl-stage-outer {
    box-shadow: 0px 30px 43px -30px #0C0B42;
    border-radius: 12px;
}
.owl-tab-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.titulo-tab-1 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
}
.texto-tab-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.tab-btn-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    color: #86587B;
    padding: 6px 12px 6px 8px;
    background: transparent;
    border-radius: 6px;
	transition: background 0.2s linear;
	text-transform: uppercase;
}
.tab-btn-1.ativo, .tab-btn-1:hover {
    color: #FFFFFF;
    background: #86587B;
}



.colunistas-1 {
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 60px;
    padding-top: 30px;
}
.card-colunista-1 h3 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
    margin-bottom: 0px;
}
.card-colunista-1 h3 i {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #B27EA5;
    display: block;
}
.card-colunista-1 p {
    font-family: 'PT Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}
.card-colunista-1:hover p {
    text-decoration: underline;
}
.card-colunista-1 div {
    display: flex;
    flex-direction: row;
    gap: 15px;
	margin-bottom: 20px;
	align-items: center;
}
.card-colunista-1 img {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    object-fit: cover;
}
.card-colunista-1 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border: 2px dashed #F1927D;
    border-radius: 100%;
}
.card-colunista-1 span b {
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 18px;
	color: #86587B;
}
.owl-colunistas-1.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    background: #AFADAD;
    border-radius: 50%;
	padding: 0;
	margin: 0;
}
.owl-colunistas-1.owl-theme .owl-dots .owl-dot.active span, .owl-colunistas-1.owl-theme .owl-dots .owl-dot:hover span {
    background: #B27EA5;
	padding: 0;
	margin: 0;
}
.owl-colunistas-1 .owl-dots {
    bottom: -40px;
    background: none;
}


.bloco-listagem-2 {

}
.owl-postcar-1.owl-theme .owl-nav [class*=owl-] {
    color: #000;
    margin: 0px;
    width: 44px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    height: 44px;
    line-height: 15px;
    border-radius: 100%;
    border: 1px solid #DADADA;
}
.owl-postcar-1 button.owl-next, .owl-postcar-1 button.owl-prev {
    position: relative;
    bottom: -20px;
}
.owl-postcar-1 button.owl-prev {
    left: -10px;
}
.owl-postcar-1 button.owl-next {
    right: 0;
}
.owl-postcar-1.owl-theme .owl-nav {
    display: flex !important;
    justify-content: end;
    position: absolute;
    top: -80px;
    right: 0;
}



.bloco-webstories-1 {

}
.owl-webstories-1.owl-carousel .owl-stage-outer {
    overflow: visible;
}
.owl-webstories-1.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    background: #86587B;
    border-radius: 50%;
	padding: 0;
	margin: 0;
}
.owl-webstories-1.owl-theme .owl-dots .owl-dot.active span, .owl-webstories-1.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
	width: 8px;
    height: 8px;
	border: 2px solid #86587B;
	padding: 0;
	margin: 0;
}
.owl-webstories-1 .owl-dots {
    bottom: -40px;
    background: none;
}


.bloco-canais-1 {

}

.banners-dinamicos-1 {

}

.banner-d-1 {
	display: flex;
	flex-direction: column;
	justify-content: end;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px;
	position: relative;
	border-radius: 16px;
	height: 350px;
}
.banner-d-1::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.83%, #000000 100%);
    border-radius: 16px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
	opacity: 0.3;
    transition: opacity .35s ease;
}
.banner-d-1 h3 {
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	color: #FFFFFF;
	position: relative;
	z-index: 9;
	transform: translateY(100px);
	transition: all .35s ease;
}
.banner-d-1 p {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
}
.banner-d-1 span {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	color: #FFFFFF;
	display: inline-block;
	padding: 6px 12px 6px 8px;
	border: 1px solid rgba(203, 203, 203, 0.25);
	border-radius: 6px;
}
.banner-d-1 div {
	position: relative;
	z-index: 9;
	opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
/* HOVER */
.banner-d-1:hover h3 {
    transform: translateY(0px);
}
.banner-d-1:hover div {
    opacity:1;
    transform: translateY(0);
}
.banner-d-1:hover {
	box-shadow: 0px 30px 43px -30px #0C0B42;
}
.banner-d-1:hover::before {
    opacity: 1;
}







.banner-d-2 {
	display: flex;
	flex-direction: column;
	justify-content: end;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 15px;
	position: relative;
	border-radius: 12px;
	height: 130px;
}
.banner-d-2::before {
	background: linear-gradient(180deg, rgba(102, 102, 102, 0) 42.19%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.banner-d-2 h3 {
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
	color: #FFFFFF;
	position: relative;
	text-transform: uppercase;
	z-index: 3;
}






.produtos-1 {

}

.btn-2 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #B27EA5;
    display: inline-block;
    padding: 14px 22px;
    background: #F2F2F2;
    box-shadow: 0px -6px 6px rgba(255, 255, 255, 0.9), 0px 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}
.btn-2 b {
    color: #D3D3D3;
    margin-left: 10px;
    padding-right: 10px;
}
.btn-2:hover {
    color: #86587B;
    background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);
}

.drops-1 {

}
.drops-card-1 {
    display: block;
    padding: 42px 24px 32px;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 12px;
}
.drops-head h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #86587B;
    margin-bottom: 0;
    text-transform: uppercase;
}
.drops-head p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
}
.drops-cont time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #444444;
}
.drops-cont p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
    margin-bottom: 0px;
}
.drops-over .img-d1 {
    width: 100%;
    height: 225px;
    border-radius: 12px;
    object-fit: fill;
}
.drops-over .img-d2 {
    width: 100%;
    height: 115px;
    border-radius: 12px;
    object-fit: fill;
}
.drops-over .img-d3 {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    object-fit: fill;
}
.drops-over {
	position: relative;
	margin-bottom: 10px;
}
.drops-over::before {
	background: transparent;
	border-radius: 12px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.drops-card-1:hover .drops-over::before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}
.drops-over b {
    position: absolute;
	z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
	display: none;
}
.drops-card-1:hover .drops-over b {
	display: block;
}

.modal-iframe iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}



.newsletter-2 {

}
.box-news-2 {
	background-color: #EBEFF6;
	padding-bottom: 40px;
	padding-top: 40px;
	border-radius: 12px;
	margin: 0px;
}
.news-2 h3 {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #86587B;
    display: block;
    text-transform: uppercase;
}
.news-ico-2 {
    background-color: #86587B;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 25px;
    color: #fff;
    margin: auto;
    margin-bottom: 15px;
}
.news-2 input[type="email"] {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    height: 50px;
    display: block;
    width: 100%;
    padding-left: 40px;
    padding-right: 45px;
	padding-top: 10px;
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #727272;
}
.news-2 input[type="email"]::-webkit-input-placeholder{
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #727272;
}
.news-2 input[type="email"]::-moz-placeholder {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
}
.news-2 label {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #86587B;
    position: absolute;
    top: 6px;
    left: 40px;
}
.news-2 i {
    font-size: 25px;
    color: #86587B;
    position: absolute;
    top: 12px;
    left: 8px;
}
.news-2 button {
    font-size: 25px;
    color: #86587B;
    position: absolute;
    right: 12px;
    top: 7px;
	border: none;
	background-color: transparent;
}
.news-2 p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 0px;
}
.news-2 p a {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #000000;
}
.news-2 input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #86587B;
    background-color: transparent;
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}
.news-2 input[type="checkbox"]:checked {
    background: #86587B;
}
.news-2 input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 4px;
    left: 8px;
    transform: rotate(45deg);
}


.subir-1 {
	padding-bottom: 60px;
}

.box-instagram-1 {
	padding: 32px 24px;
	background: #FFFFFF;
	border: 1px solid #E3E3E3;
	box-shadow: 0px 30px 30px -30px rgba(12, 11, 66, 0.3);
	border-radius: 12px;
}

.instagram-1 {

}

#footer {
    background-color: #F5F7FA;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 80px;
    padding-bottom: 60px;
}

.redes {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    list-style: none;
}

.redes a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background-color: #86587B;
    color: #F5F7FA;
}

.footer-link-1 {
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #232323;
    display: inline-block;
}

.footer-texto-1 {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #818181;
}

.btn-3 {
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #00C2B2;
    padding: 6px 16px 6px 12px;
    border: 1px solid #00C2B2;
    border-radius: 12px;
}
.btn-3:hover {
    color: #fff;
    border: 1px solid #00C2B2;
	background-color: #00C2B2;
}

.titulo-f {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #86587B;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 10px;
}

.footmenu {
    margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footmenu li a {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #818181;
}

#abre_menu {
    background-color: transparent;
    border: none;
    font-size: 25px;
	color: #000;
}
.busca-form input {
	font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    height: 59px;
    background: #F4F4F4;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    width: 100%;
    display: block;
    padding: 16px 8px 16px 60px;
}
.busca-form button {
    background-color: transparent;
    color: #1D1B20;
    font-size: 20px;
    border: none;
    position: absolute;
    top: 15px;
    left: 10px;
}

.faixa-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 11px 24px;
    background: linear-gradient(90deg, #F1927D 0%, #86587B 44.71%, #5D2550 97.12%);
    border: 2px solid #FFFFFF;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
	position: relative;
}
.faixa-header span {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
	text-transform: uppercase;
	color: #FFFFFF;
	transform: translateX(-10px);
    transition: all .35s ease;
}
.faixa-header b {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #FFFFFF;
}
.faixa-header i {
    color: #fff;
    font-size: 20px;
}
.faixa-header .chev-faixa {
	display: flex;
	opacity: 0;
	position: absolute;
    transform: translateX(-50px);
    transition: all .35s ease;
}

.faixa-header:hover .chev-faixa {
	position: relative;
	opacity: 1;
    transform: translateX(0px);
}
.faixa-header:hover span {
    transform: translateX(0px);
}
.faixa-header:hover b {
    text-decoration: underline;
}
.faixa-header:hover {
	background: linear-gradient(90deg, #86587B 0%, #F1927D 100%);
}


.btn-live {
    padding: 16px 16px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
	justify-content: center;
}
.btn-live b {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}
.btn-live i {
    font-size: 25px;
}
.btn-live span {
    color: #444;
}

.btn-live:hover b {
    color: #FECC4E;
	text-decoration: underline;
}
.btn-live:hover i {
    color: #FECC4E;
}

#header {
    padding-bottom: 15px;
    padding-top: 15px;
}


.modo-toggle{
    display:flex;
    align-items:center;
    gap:12px;
    font-family: Arial;
}

.modo-toggle {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
}
/* esconde o radio */
.switch input{
    display:none;
}

.conjunto-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DADADA;
}

/* base do seletor */
.switch{
    position:relative;
    width:46px;
    height:24px;
    display:inline-block;
}

.slider{
    position:absolute;
    cursor:pointer;
    background:#D9D9D9;
    border-radius:50px;
    top:0;
    left:0;
    right:0;
    bottom:0;
    transition:.3s;
}

/* bolinha */
.slider::before{
    content:"";
    position:absolute;
    height:18px;
    width:18px;
    left:3px;
    bottom:3px;
    background:#fff;
    border-radius:50%;
    transition:.3s;
}

/* ligado */
.switch input:checked + .slider{
    background:#000;
}

.switch input:checked + .slider::before{
    transform:translateX(22px);
}


/* menu escondido acima da tela */
#menu{
    position:fixed;
    top:-500%;
    left:0;
    width:100%;
    height:auto;
    background:#fff;
    z-index:9999;
    transition:top .4s ease;
	background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 60px;
	padding-bottom: 40px;
}

/* menu aberto */
#menu.aberto{
    top:0;
}

/* overlay */
#overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

/* overlay ativo */
#overlay.ativo{
    opacity:1;
    visibility:visible;
}

.box-leitura {
    padding: 16px 24px 12px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    box-shadow: 0px 30px 30px -30px rgba(12, 11, 66, 0.3);
    border-radius: 16px;
	margin-bottom: 30px;
}

#fecha_1 {
    background-color: transparent;
    border: none;
    font-size: 40px;
    color: #1D1B20;
}

.menu-not {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #444444;
    margin-bottom: 0;
}

.titulo-head {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #86587B;
    text-transform: uppercase;
}

.principal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.principal li a {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    color: #000000;
	padding: 8px;
    border-radius: 12px;
}
.principal li a:hover {
    background-color: #F1927D;
    color: #fff;
}


.principal li.legenda a {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #E55B4C;
}
.principal li.legenda a:hover {
	background-color: #fff !important;
}
.principal li.legenda.institucional a {
	color: #E55B4C !important;
}
.principal li.legenda.mercado a {
	color: #00C2B2 !important;
}
.principal li.legenda.biblioteca a {
	color: #F1927D !important;
}

.principal .dropdown-menu {
    position: relative !important;
    inset: 0 !important;
    margin: 0px !important;
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
}
.principal .dropdown-menu li a {
	font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    background-color: #F7F7F7;
    border-radius: 4px;
    margin-bottom: 5px;
    padding-left: 40px;
	position: relative;
}

.principal .dropdown-menu li a::before{
    content: "";
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #E55B4C;
}

.banner-slider-1 {
	margin-bottom: 84px;
}
.banner-estatico-1,
.bloco-listagem-1,
.banner-tabs-1,
.colunistas-1,
.bloco-listagem-2,
.bloco-webstories-1,
.bloco-canais-1,
.banners-dinamicos-1,
.produtos-1,
.drops-1,
.newsletter-2,
.instagram-1 {
	margin-bottom: 84px;
}


@media (max-width: 768px) {
	
.faixa-header {
    justify-content: center;
}
.banner-slider-1 {
	margin-bottom: 54px;
}
.banner-estatico-1,
.bloco-listagem-1,
.banner-tabs-1,
.colunistas-1,
.bloco-listagem-2,
.bloco-webstories-1,
.bloco-canais-1,
.banners-dinamicos-1,
.produtos-1,
.drops-1,
.newsletter-2,
.instagram-1 {
	margin-bottom: 54px;
}		
	
	
	
	
}

@media (max-width: 767px) {
	
	
.banner-slider-1 {
	margin-bottom: 54px;
}
.banner-estatico-1,
.bloco-listagem-1,
.banner-tabs-1,
.colunistas-1,
.bloco-listagem-2,
.bloco-webstories-1,
.bloco-canais-1,
.banners-dinamicos-1,
.produtos-1,
.drops-1,
.newsletter-2,
.instagram-1 {
	margin-bottom: 54px;
}	
	
.titulo-f {
	margin-top: 30px;
}
	

.conteudo-banner-1 {
    width: 100%;
}
	
.titulo-banner-1 {
    font-size: 28px;
    line-height: 32px;
}
	
.texto-banner-1 {
    font-size: 16px;
    line-height: 20px;
}	
.mdados-1 {
    font-size: 12px;
    line-height: 12px;
}
.meta-1 {
    margin-bottom: 10px;
}
.post-1 {
    height: auto;
}
.post-1 b {
    display: none;
}
.post-2 img {
    height: 260px;
}
.post-2:hover img {
    height: 290px;
}	
.post-2 {
    height: auto;
}	
.post-2 b {
    display: none;
}	
.post-3 {
    height: auto;
}	
.post-3 b {
    display: none;
}
.post-4 {
    display: block;
    padding: 0px 20px 0px 20px;
}
.post-5 {
    flex-direction: column;
    height: auto;
}
.post-5 img {
    width: 100%;
}
.post-5 .cont_p {
    width: 100%;
}
.post-5 time {
    margin-top: 0;
}
.post-5 .more_p {
    display: none;
}
.post-5:hover img {
    width: 100%;
}	
.news-1 {
    padding: 0px 20px 0px 20px;
}	
.owl-tab-1 img {
    height: 330px;
}	
.texto-tab-1 {
    padding-bottom: 70px;
}	
.banner-tabs-1 .owl-controls-custom {
    position: absolute;
    bottom: 360px;
    left: 40px;
    z-index: 3;
}
.owl-tab-1 .owl-nav {
    position: absolute;
    bottom: 350px;
    left: 135px;
    display: flex;
    gap: 15px;
}	
.owl-webstories-1 .owl-stage {
    padding-left: 0px !important;
}
.post-canais-2 img {
    height: 200px;
}	
.banners-dinamicos-1 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.produtos-1 {
    padding-top: 40px;
    padding-bottom: 40px;
}
#footer {
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #EEEEEE;
	background-size: 700px;
}
.footer-texto-1 {
    width: 70%;
}
.busca-form {
    padding-left: 15px;
}
.faixa-header {
    background: #FECC4E;
    margin-bottom: 15px;
}	
.faixa-header span {
    color: #000;
    transform: none;
	font-size: 16px;
	line-height: 22px;
}
.faixa-header b {
    display: none;
}
.faixa-header .chev-faixa {
    opacity: 1;
    position: relative;
    transform: none;
}
.faixa-header i {
    color: #000;
    font-size: 20px;
}	
.faixa-header:hover {
    background: #FECC4E;
}	
#menu {
    position: absolute;
    padding-top: 90px;
    padding-bottom: 40px;
    overflow: scroll;
}	
#fecha_1 {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
}
.box-leitura {
    margin-top: 30px;
}
.post-7 {
    display: flex;
    flex-direction: column;
}
.post-7 .over-i {
    width: 100%;
}
.post-7 img {
	width: 100%;
    height: 140px;
}	
	
	
	
	
}


