/* ----- POPPINS FONT Link ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ----- VARIABLES ----- */
:root{
    --body-color: rgb(250, 250, 250);
    --color-white: rgb(255, 255, 255);

    --text-color-second: rgb(68, 68, 68);
    --text-color-third: rgb(47, 72, 146);

    --first-color: rgb(38, 4, 211);
    --first-color-hover: rgb(40, 91, 212);

    --second-color: rgb(0, 201, 255);
    --third-color: rgb(192, 166, 49);
    --first-shadow-color: rgba(0, 0, 0, 0.1);

}

/* ----- BASE ----- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.no-margin {
    margin-top: 1vw !important;
}

.top-border {
    border-top: 2px solid gray;
}

.right-border {
    border-right: 2px solid gray;
}

.margin-20 {
    margin-top: 20px !important;
}

.img-circle {
    border-radius:50%;
    width: 50px; 
    margin-right: 15px;
}

/* ----- SMOOTH SCROLL ----- */
html{
    scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar{
    width: 10px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover{
    background: #bbb;
}


/* ---##-- REUSABLE CSS --##--- */

/* ----- GLOBAL BUTTON DESIGN ----- */
.btn{
    font-weight: 500;
    padding: 12px 20px;
    background: #efefef;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;
}
.btn>i{
    margin-left: 10px;
}
.btn:hover, .active-btn{
    background: var(--second-color) !important;
    color: var(--color-white) !important;
}

/* ----- GLOBAL ICONS DESIGN ----- */
i{
    font-size: 16px;
}
.social_icons>a, .footer-social-icons>a,
.cognamentos-social-icons>a {
    text-decoration: none;
    color: black;
}
/* ------- BASE -------- */
body{
    background: var(--body-color);
}
.container{
    width: 100%;
    position: relative;
}

/* ----- NAVIGATION BAR ----- */
nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    line-height: 90px;
    background: var(--body-color);
    padding-inline: 9vw;
    transition: .3s;
    z-index: 100;
}
.nav-logo{
   position: relative;
}
.nav-name{
    width: 130px;
}
.nav-menu, .nav_menu_list{
    display: flex;
}
.nav-menu .nav_list{
    list-style: none;
    position: relative;
}
.nav-link{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    padding-inline: 15px;
    margin-inline: 20px;
}
.nav-menu-btn{
    display: none;
}
.nav-menu-btn i{
    font-size: 16px;
    cursor: pointer;
}
.active-link{
    position: relative;
    color: var(--first-color);
    transition: .3;
}

/* ----- WPP ----- */
.wpp {
    position: fixed;
    display: flex;
    transition: .3s;
    z-index: 100;
    right: 0;
    margin-right: 20px;
    bottom: 0;
    margin-bottom: 20px;
}

.wpp a {
    text-decoration: none;
    color: white;
    background-color: rgb(37,211,102);
    width: 50px;
    height: 50px;
}

.wpp i {
    font-size: 20px;
}

/* ----- WRAPPER DESIGN ----- */
.section, #home {
    padding-inline: 10vw;
}

/* ----- FEATURED BOX ----- */
.featured-box,
.cognamentos-box,
.cognamentos-box-descricao{
    position: relative;
    display: flex;
    height: 100vh;
    max-height: 700px;
}

.cognamentos-box {
    min-height: 700px;
    max-height: none;
}

/* ----- FEATURED TEXT BOX ----- */
.featured-text{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}
.featured-text-card{
    margin-bottom: 20px;
}
.featured-text-card span{
    font-size: 15px;    
}
.featured-name{
    font-size: 38px;
    font-weight: 600;
    color: var(--text-color-second);
    margin-top: 0px;
}
.typedText{
    /*text-transform: capitalize;*/
    color: var(--text-color-third);
    font-weight: bold;    
}
.featured-text-info{
    font-size: 15px;
    margin-bottom: 30px;
    color: var(--text-color-second);
}
.featured-text-btn{
    display: flex;
    gap: 20px;
}
.featured-text-btn>.blue-btn{
    background: var(--first-color);
    color: var(--color-white);
}
.featured-text-btn>.blue-btn:hover{
    background: var(--first-color-hover);
}
.social_icons{
    display: flex;
    margin-top: 5em;
    gap: 30px;
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.icon:hover{
    color: var(--first-color);
}

/* ----- FEATURED IMAGE BOX ----- */
.featured-image{
    display: flex;
    justify-content: right;
    align-content: center;
    min-height: 80vh;
    width: 50%;
}
.image{
    margin: auto 0;
    width: 430px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}
.image img{
    width: 430px;
    height: 450px;
    object-fit: cover;
}
.scroll-btn{
   position: absolute;
   bottom: 0;
   left: 50%;
   translate: -50%;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 150px;
   height: 50px;
   gap: 5px;
   text-decoration: none;
   color: var(--text-color-second);
   background: var(--color-white);
   border-radius: 30px;
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.scroll-btn i{
    font-size: 20px;
}

/* ----- MAIN BOX ----- */
.section{
    padding-block: 5em;
}
.row{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}
.col{
    display: flex;
    width: 50%;
}

/* -- ## --- RESUABLE CSS -- ## -- */
.top-header{
    text-align: center;
    margin-bottom: 5em;
}
.top-header h1{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 30px;
    color: var(--text-color-third);
}
.top-header span{
    color: #999;
}
h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 15px;
}

/* ----- ABOUT INFO ----- */

.about-box{
    margin: 10px;
}
.about-header{
    margin-bottom: 30px;
}
.about-header h3{
    font-size: 30px;
    color: var(--text-color-third);
}
.about-info{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.about-info p{
    font-size: 16px;
    text-align: justify;
    padding-top: 10px;
    text-indent: 4em;
}
.ImgApresentacao {
    height: 750px;
    border-radius: 30px;
}

/* ----- PODCAST ----- */
#IMG-PODCAST {
    background-image: url("../image/site/Podcast.png");
    opacity: 1 !important;
}
.cognamentos-box-descricao {
    padding-inline: 10vw;
    background-size: cover;
}

/* ----- SERVICOS BOX ----- */
.servicos-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.servicos-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 47%;
    height: 300px;
    border-radius: 10Px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;   
    text-decoration: none;
}
.servicos-box h3{ 
    text-align: center;
    font-weight: bold;
    font-size: 26px;
}
.bg {
    background-size: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
    width: 100%;
    height: 100%;
}
#IMG-TCC {
    background-image: url("../image/site/servico-terapia.png");
}
#IMG-ANP {
    background-image: url("../image/site/servico-avaliacao.png");
}
#IMG-SM {
    background-image: url("../image/site/servico-sepervisao.png");
}
#IMG-CURSO {
    background-image: url("../image/site/servico-cursos.png");
}
#IMG-PALESTRAS {
    background-image: url("../image/site/servico-palestras.jpg");
}
#SB-TCC::after {
    background: var(--third-color);
}
#SB-ANP::after {
    background: black;
}
#SB-SM::after {
    background: red;
}
#SB-CURSO::after {
    background: var(--first-color);
}
#SB-PALESTRAS::after {
    background: green;
}
.verMais::after {
    background: blueviolet !important;
}
.servicos-box label{
    font-size: 16px;
    color: black;
    margin: 15px;
    text-align: justify;
}
.servicos-box::after{
    content: "";
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 1;
    opacity: .3;
    background: var(--first-color);
}
.servicos-box:hover.servicos-box::after{
    bottom: 0;
}
.servicos-box:hover.servicos-box>h3,
.servicos-box:hover.servicos-box>label{
    color: var(--color-white);
    z-index: 2;
}
/*.verMais {
    margin-top: 2%;
    float: right;
}*/
.verMais {
    box-shadow: none;
}

/* ----- TIPO SERVICOS BOX ----- */

.tipo-servicos-box{
    margin: 10px;
}
.tipo-servicos-header h3{
    margin-bottom: 10px;
    text-align: center;
}
.tipo-servicos-header h3{
    font-size: 30px;
    color: var(--text-color-third);
}
.tipo-servicos-info{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tipo-servicos-info p{
    font-size: 15px;
    text-align: justify;
    padding-top: 0px;
    text-indent: 4em;
}
.tipo-servicos-img {
    height: 250px;
    border-radius: 30px;
}
.col-img {
    width: 25%;
    align-items: center;
    text-align: center;
}
.col-img-left {
    display: none;
}
.col-text { 
    width: 75%;
}
#TCC {
    padding-bottom: 0em;
}
.tipo-servicos-info ul {
    margin-left: 4em;
}

/* ----- ARQUIVOS BOX ----- */
.arquivo-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.arquivo-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 45%;
    height: 150px;
    overflow: hidden;
}

.button {
    padding: .75rem 1.25rem;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    letter-spacing: .15rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00B5E7; 
    z-index: -2;
}

.button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #009ec6;
    transition: all .3s;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}

.arquivo-box>.row>h3{
    font-size: 30px;
    color: #00B5E7;
    margin-bottom: 25px;
    width: 100%;
    margin-bottom: 0px;
}
.arquivo-box label{
    font-size: 15px;
    color: #777;
    margin-bottom: 15px;;
}

/* ----- DOWNLOADS ----- */
.download-container {
    display: flex;
    width: 100%;
    gap: 25px;
    flex-wrap: wrap;
    margin-left: 5%;
}
.download-box {
    position: relative;
    display: flex;
    width: 22%;
    height: 400px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    border-radius: 20px;
    background-size: cover;
}
.download-box a{
    font-size: 12px;
    margin-top: auto;
    margin-bottom: 30px;
}

/* ----- PUBLICAÇÕES ----- */
#lst-publicacoes>h1 {
    font-size: 20px;
    color: var(--text-color-third);
    margin-left: 40px;
    margin-top: 25px;
}

.publicacao-container{
    display: flex;
    width: 100%;
    gap: 25px;
    flex-wrap: wrap;
    margin-left: 5%;
}

.publicacao-box{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 45%;
    height: auto;
    overflow: hidden;
    padding: 10px;
    border-bottom: 1px solid black;
    text-align: justify;
}

.publicacao-box>a>.row>h3{
    font-size: 15px;
    color: #00B5E7 !important;
    margin-bottom: 25px;
    width: 90%;
    margin-bottom: 0px;
}

.publicacao-box a {
    text-decoration: none;
    color: #00B5E7 !important;
}

/* ----- CONTACT BOX ----- */
.contact-text label{
    font-size: 16px;
}
.contact-text a{
    font-size: 25px;
    margin-left: 10%;
    color: var(--first-color);
}
.contact-text a>i{
    font-size: 30px;
    margin-right: 5%;
}
.contact-text .col {
    display: block;
    align-items: center;
}
.mail { 
    font-size: 18px !important;
    margin-left: 10%;
}
.col.left{
    width: 100%;
    margin-left: 30%;
}
.col.right{
    width: 37%;
}
.col.right a{
    font-size: 20px;
}
.col.right a>i{
    font-size: 25px;
}

/* ----- FOOTER BOX ----- */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: #F8F8F8;
    padding-block: 40px 60px;
}
.top-footer p{
    font-size: 25px;
    font-weight: 600;
}
.middle-footer .footer-menu{
    display: flex;
}
.footer_menu_list{
    list-style: none;
}
.footer_menu_list a{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    margin-inline: 20px;
}
.footer-social-icons{
    display: flex;
    gap: 30px;   
}
.bottom-footer{
    font-size: 14px;
    margin-top: 10px;
}
.img-footer {
    width: 250px;
}

/* ----- COGNAMENTOS BOX ----- */
.cognamentos-image{
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 20vh;
    width: 100%;
}
.cognamentos-text{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}
.cognamentos-image.avatar{
    justify-content: right;
}
.image-cognamentos.avatar{
    margin: auto 0;
    width: 600px;
    height: 430px;
    overflow: hidden;
    border-radius: 20px;
}
.image-cognamentos.avatar img{
    width: 600px;
    height: 430px;
    object-fit: cover;
}
.image-cognamentos.logo{
    margin: auto 0;
    width: 400px;
    height: 150px;
    overflow: hidden;
    text-align: center;
}
.image-cognamentos.logo img{
    width: 400px;
    height: 150px;
    object-fit: cover;
}
.cognamentos-social-icons{
    display: flex;
    margin-top: 5em;
    gap: 50px;
    justify-content: center;
}
.cognamentos-social-icons.bottom{
    margin-top: 20px;
}
.img-plataformas>img {
    width: 70px;
    border-radius: 10px;
    background-color: white;
}
.cognamentos-text-descricao {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 100%;
    margin-left: 30%;
}
.cognamentos-text-descricao>h3 {
    color: white;
    font-size: 40px;
    font-family: "Belleza";    
    font-weight: 400;
}
.cognamentos-text-descricao>p {
    color: white;
    font-size: 20px;
    padding: 50px 0px 30px 0px;
    text-align: justify;
}
.cognamentos-text-descricao .btn {
    background-color: var(--first-color);
    color: white;
    font-size: 13px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    width: 200px;
}
.cognamentos-text-episodios {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cognamentos-text-episodios>h3 {
    color: black;
    font-size: 40px;
    font-family: "Belleza";    
    font-weight: 400;
}

.episodios-title{
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 100px;
    justify-content: center;
}

.episodios-title>h3,
.episodios-title>a{
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.episodios-title>h3 {
    width: 85%;
}
.episodios-title>a {
    width: 25px;
    height: 40px;
    background: var(--body-color);
    border-radius: 50px;
    font-size: 13px;
}
.episodios-title>a>i {
    margin-left: -7px;
}

.cognamentos-box {
    padding-inline: 10vw;
    background-image: url("../image/site/background-1.png");
    background-size: cover;
}

.cognamentos-box-episodios {
    padding-inline: 10vw;
}

.cognamentos-box-filtros,
.cognamentos-box-search {
    padding-inline: 15vw;    
    display: flex;
}
.cognamentos-box-filtros {
    gap: 40px;
}
.cognamentos-box-filtros>.multi-select {
    width: 25%;
}

.vscomp-toggle-button {
    border-radius: 5px;
}

.cognamentos-box-filtros>.multi-select-btn{
    width: 20%;
}

.cognamentos-box-filtros>.multi-select-btn>button{
    font-size: 10px !important;
    padding: 3px;
    height: 100%;
    border-color: #009ec6;
}

.cognamentos-box-search .button {
    height: 40px;
    display: inline-block;
    padding: 9px 15px;
    background-color: grey;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0px 10px 10px 0px;
    width: unset;
    margin-right: auto;
}

.cognamentos-box-search .input {
    display: inline-block;
    width: 90%;
    height: 40px;
    padding: 9px 12px;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    margin: 0;
    line-height: 1.42857143;
    border-radius: 10px 0px 0px 10px;
    margin-left:auto;
}

/* ----- EPISODIOS PODCAST ----- */
.episodios-container{
    display: flex;
    width: 100%;
    gap: 25px;
    flex-wrap: wrap;
    margin-left: 5%;
}

.episodios-box, .participantes-box{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 45%;
    height: auto;
    overflow: hidden;
    padding: 10px;
    border-bottom: 1px solid black;
    text-align: justify;
}

.episodios-box>a {
    display: flex;
    gap: 20px;
    text-decoration: none;
}

.episodios-box>a>img {
    width: 100px;
    height: 100px;
    margin: auto;
}

.episodios-detalhes {
    width: 60%;
}

.episodios-detalhes>h3 {
    font-size: 15px;
    height: 70%;
}

.episodios-detalhes>span {
    font-size: 13px;
    align-items: right;
    float: right;
    color: gray;
}

.episodios-detalhes>.serie {
    float: left;
    padding: 0px;
}

.carregarMais { 
    border-color: white;
    width: 250px;
    margin: auto;
    margin-top: 30px;
}

/* ----- PAGE EPISODIOS ----- */
.simple-episodios {
    padding-inline: 10vw;
    /*background-image: url("./lib/image/site/background-1.png");*/
    background-size: cover;
    min-height: 100vh;
}
.simple-episodios>.row {
    margin-top: 5vw;
}
.simple-episodios-box{
    margin: 10px;
}
.simple-episodios-img {
    width: 350px;
    height: 350px;
    display: flex;
    margin: auto;
    border-radius: 10px;
}
.simple-episodios-header{
    margin-bottom: 30px;
}
.simple-episodios h3{
    font-size: 25px;
    color: var(--text-color-third);
    margin: auto;
}
.simple-episodios-info{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.simple-episodios-info p{
    font-size: 18px;
    text-align: justify;
    padding-top: 10px;
}

.simple-episodios-left {
    width: 40%;
}

.simple-episodios-right {
    width: 60%;
}

.simple-episodios-detalhes {
    text-align: left;
    justify-content: left;
    display: flex;
}

.simple-episodios-detalhes>span {
    padding: 10px;
}

.simple-episodios-detalhes>.shared {
    margin-right: 0 !important;
    margin: auto;
}

.episodios-detalhes .serie,
.simple-episodios .serie {
    color: #00B5E7;
    border-left: #00B5E7 4px solid;
    padding: 5px;
    font-weight: bold;
}

.simple-episodios-temas {
    margin-top: 70px;
}

.simple-episodios-detalhes-left {
    width: 70%;
    display: unset !important;
}

.simple-episodios-detalhes-left>h3 {
    margin-top: 20px;
}

.simple-episodios-detalhes-left>h2 {
    margin-top: 10px;
    margin-left: 30px;
    color: var(--text-color-third);
}

.simple-episodios-detalhes-left>p {
    margin-top: 10px;
    margin-left: 50px;
    font-size: 18px;
}

.simple-episodios-detalhes-right {
    width: 30%;
    display: unset !important;
}

.simple-episodios-detalhes-right>h1,
.simple-episodios-detalhes-left>h3
{
    color: #00B5E7;
    border-bottom: #00B5E7 4px solid;
    margin-bottom: 20px;
}

.simple-episodios-detalhes-right>h3 {
    color: gray;
    font-size: 20px;
    margin-bottom: 10px;
}

.simple-episodios-detalhes-right>p {
    color: gray;
    font-size: 15px;
    margin-bottom: 30px;
}

.episodios-box.recomendados {
    width: 100% !important;
}

.episodios-box.recomendados h3 {
    font-size: 13px;
}

.participantes-container {
    display:flex;
    flex-wrap: wrap;
}

.participantes-box {
    border: none;
    width: 32%;
}

.participantes-box>a {
    align-items: center;
    display: flex;
    text-decoration: none;
}

/* ----- MODAL EPISODIOS ----- */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    border-radius: 10px;
}

.modal-content>p {
    color: black;
    font-weight: bold;
}

.modal-social {
    margin: 40px 0px 20px 0px; 
    text-align: center;
    font-size: 30px;
}

.modal-social i {
    font-size: 25px;
    margin-left: 20px;
    color: black;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-social button {
    cursor: pointer;
    background-color: white;
    border: none;
}

/* ----- MEDIA QUERY == 1024px / RESPONSIVE ----- */
@media only screen and (max-width: 1024px){
    .featured-text,
    .cognamentos-text{
        padding: 0;
    }
    .image, .image img{
        width: 320px;
        height: 320px;
    }
    .download-box {
        width: 30%;
    }
    .image-cognamentos.avatar, 
    .image-cognamentos.avatar img{
        width: 500px;
        height: 320px;
        max-width: 100%;
        max-height: 100%;
    }
    .image-cognamentos.logo, 
    .image-cognamentos.logo img{
        max-width: 100%;
        max-height: 100%;
    }
    .cognamentos-image.logo {
        justify-content: center;
    }
    .cognamentos-social-icons{
        margin-top: 1em;
    }
    .img-plataformas>img {
        width: 60px;
    } 
    #IMG-PODCAST {
        opacity: 0.3 !important;
    }
    .cognamentos-text-descricao {
        margin: 0  
    }
    .cognamentos-text-descricao>h3 { 
        padding-left: 100px;
        padding-right: 100px;
        color: black;
    }
    .cognamentos-text-descricao>p { 
        color: black;
    }
    .col.left{
        margin-left: 0%;
    }
    .episodios-title>h3 {
        width: 80%;
    }
}

/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 900px) {
    .nav-button{
        display: none;
    }
    .nav-menu.responsive{
        left: 0;
    }
    .nav-menu{
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(300px);
        width: 100%;
        min-height: 450px;
        height: 90vh;
        transition: .3s;
        text-align: center;
    }
    .nav_menu_list{
        flex-direction: column;
    }
    .nav-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .featured-box,
    .cognamentos-box,
    .cognamentos-box-descricao{
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }
    .featured-text,
    .cognamentos-image.avatar{
        width: 100%;
        order: 2;
        justify-content: center;
        align-content: flex-start;
        min-height: 45vh;
    }
    .social_icons{
        margin-top: 0;
    }
    .featured-image{
        order: 1;
        justify-content: center;
        min-height: 400px;
        width: 100%;
        margin-top: 150px;
        height: 250px;
    }
    .cognamentos-text{
        order: 1;
        justify-content: center;
        min-height: 300px;
        width: 100%;
        margin-top: 250px;
        height: 250px;
    }
    .row{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }
    .col{
        display: flex;
        justify-content: center;
        width: 100% !important;
        
    }
    .about-info, .contact-info,
    .simple-episodios-info {
        width: 100%;
    }
    .servicos-container{
        justify-content: center;
    }
    .servicos-box{
        width: 80%;
        text-decoration: none;
    }
    .arquivo-container{
        justify-content: center;
    }
    .arquivo-box{
        width: 80%;
    }
    .ImgApresentacao {
        height: 500px;
        border-radius: 30px;
    }
    .col-img-left {
        display: flex;       
    }
    .col-img-right {
        display: none;
    }
    .download-box {
        width: 45%;
    }
    .cognamentos-box{
        padding-bottom: 10em;
    }
    .cognamentos-text-descricao>h3,
    .cognamentos-text-descricao>p {
        padding: 0;
        padding-top: 20px;
    }
    .img-plataformas>img {
        width: 50px;
    }
    .cognamentos-social-icons {
        gap: 20px;
    }
    .episodios-title>h3 {
        width: 70%;
    }
    .cognamentos-text-descricao .btn {
        font-size: 10px;
        width: 250px;
    }
    .publicacao-box { 
        width: 100%;
    }
    .episodios-detalhes>h3 {
        font-size: 12px;
    }
    .episodios-detalhes>span {
        font-size: 10px;
    }
    .simple-episodios-detalhes {
        flex-direction: unset;
    }
    .simple-episodios>.row>h3 {
        font-size: 20px;
    }
    .text-shared{
        display: none;
    }
    .simple-episodios-detalhes>span {
        padding-left: 0px;
        font-size: 12px;
    }
    .simple-episodios-info p{
        font-size: 15px;
    }
    .cognamentos-box-filtros {
        display: block;
    }
    .cognamentos-box-filtros>.multi-select {
        width: 100%;
        margin-top: 20px;
    }
    .cognamentos-box-filtros>.multi-select .vscomp-ele {
         max-width: unset;
    }
    .cognamentos-box-filtros>.multi-select-btn {
        width: unset;
        height: 35px;
        margin-top: 20px;
    }
    .modal-content {
        width: 90%;
    }
    #servicos {
        padding-bottom: 0px;
    }
    #arquivos {
        padding-top: 50px;
    }
}

/* ----- MEDIA QUERY == 540px / RESPONSIVE ----- */

@media only screen and (max-width: 540px){
    .featured-name{
        font-size: 25px;
    }
    .servicos-box, .arquivo-box{
        width: 100%;
    }
    .form-inputs{
        flex-direction: column;
    }
    .input-field{
        width: 100%;
    }
    .mail { 
        font-size: 13px !important;
    }
    .download-box {
        width: 100%;
    }
    .download-container, 
    .publicacao-container,
    .episodios-container {
        margin-left: 0;
    }
    .cognamentos-text-descricao>h3 {
        font-size: 40px;
    }
    .cognamentos-text-descricao>p {
        font-size: 17px;
    }
    .image-cognamentos.logo img {
        width: 300px;
        height: 120px;
    }
    .episodios-title>h3 {
        width: 60%;
        font-size: 15px;
    }
    .episodios-title {
        flex-wrap: unset;
    }
    .episodios-box, .participantes-box { 
        width: 100%;
    }
    .simple-episodios-img {
        width: 250px;
        height: 250px;
    }
}