@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

@font-face {
  font-family: 'ProtoGrotesk-Light';
  src: url('/fonts/ProtoGrotesk-Light.otf') format('opentype'); /* Adicionado o formato OpenType */
  font-weight: normal; /* Confirme o peso correto da sua versão "Light" */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProtoGrotesk-Regular';
  src: url('/fonts/ProtoGrotesk-Regular.otf') format('opentype'); /* Adicionado o formato OpenType */
  font-weight: normal; /* Confirme o peso correto da sua versão "Light" */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CosiTimes-Bold';
  src: url('/fonts/CosiTimes-Bold.otf') format('opentype'); /* Adicionado o formato OpenType, se aplicável */
  font-weight: bold; /* Ou o peso numérico exato para "Bold" (geralmente 700) */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CosiTimes-Roman';
  src: url('/fonts/CosiTimes-Roman.otf') format('opentype'); /* Adicionado o formato OpenType, se aplicável */
  font-weight: bold; /* Ou o peso numérico exato para "Bold" (geralmente 700) */
  font-style: normal;
  font-display: swap;
}


div{box-sizing: border-box;} 
body{margin:0px; padding:0px; background-color:#000; font-family: "Poppins", sans-serif;-webkit-tap-highlight-color: transparent;}
/*-------------------------------------------------------------------
DESIGN LAYOUT
--------------------------------------------------------------------*/
.site-width{width:1580px;position:relative;margin:0 auto;}
@media screen and (max-width: 1023px) {
.site-width{width:95%;position:relative;margin:0 auto;}
}

@media screen and (min-width: 1024px) and (max-width: 1911px) {
.site-width{width:95%;position:relative;margin:0 auto;}
}


.topo-into{
	text-align:center;
	font-size:1.5em;
	color:#fff;
	font-family: 'CosiTimes-Bold', serif;
	margin-bottom:10px;
	
}
.topo-into2{
	text-align:center;
	font-size:3.5em;
	color:#fff;
	font-family: 'CosiTimes-Roman', serif;
	margin-bottom:40px;
	font-weight:600
}
.topo-texto{
	text-align:center;
	font-size:1em;
	color:#fff;
	font-family: 'ProtoGrotesk-Light', serif;
	margin-bottom:80px;
	font-weight:400;
	line-height:2em;
}	

.bloco-div{
	width:25%;
	position:relative;
	float:left;
	padding:10px;
}

.bloco-box{
	width:100%;
	position:relative;
	float:left;
	padding:10px;
	border-radius:10px;
	background-color:#fff;
	box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.15);
-webkit-box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.15);
}
.bloco-imagem{
	width:100%;
	height:250px;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	border-radius:10px;
}
.bloco-titulo-nome{
	margin-top:20px;
	font-size:1.1em;
	color:#000;
	font-weight:500;
}
.bloco-titulo-nome i{
	font-size:0.9em;
	color:#000;
}
.bloco-texto{
	margin-top:20px;
	font-size:0.9em;
	color:#000;
	text-align:justify;
	height:70px;
	overflow: auto;
	
}
.bloco-player{
	margin-top:10px;
}


.progress-and-time-wrapper {
    display: flex; /* Torna este contêiner flexível */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    gap: 10px; /* Adiciona um pequeno espaço entre a barra de progresso e o display de tempo */
    margin-top: 10px; /* Ajuste a margem superior conforme necessário */
    width: 100%; /* Garante que o wrapper ocupe toda a largura disponível */
}

.progress-and-time-wrapper .progress-container {
    flex-grow: 1; /* Faz com que a barra de progresso ocupe o máximo de espaço possível */
    /* Mantenha os outros estilos do .progress-container aqui */
}

.progress-and-time-wrapper .time-display {
    flex-shrink: 0; /* Impede que o display de tempo encolha */
    /* Mantenha os outros estilos do .time-display aqui */
}


.audio-player {
	width: 100%;
	box-sizing: border-box;
	position: relative; /* Para posicionar o aviso de download */
}
.audio-player h3 {
	margin-top: 0;
	color: #333;
}
.controls {
	display: flex;
	align-items: center;
	justify-content: center; /* Adicionado para alinhar horizontalmente ao centro */
	gap: 10px;
	margin-top: 15px;
	background:none;
}
.controls button {
	border: none;
	padding: 10px;
	cursor: pointer;
	background-color:transparent;
}
.controls button img{
	width:50px;
	height:auto;
}


.progress-container {
	width: 100%;
	height: 8px;
	background-color: #e0e0e0;
	border-radius: 4px;
	margin-top: 10px;
	cursor: pointer;
	position: relative;
}
.progress-bar {
	height: 100%;
	width: 0%;
	background-color: #000;
	border-radius: 4px;
}
.time-display {
	margin-top: 10px;
	font-size: 14px;
	color: #555;
	text-align: right;
}
audio {
	display: none; /* Oculta o elemento de áudio nativo */
}
/* Estilo para desabilitar o download */
audio::-webkit-media-controls-enclosure {
	display: none !important;
}
audio::-webkit-media-controls-panel {
	display: none !important;
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-toggle-closed-captions-button,
audio::-webkit-media-controls-fullscreen-button,
audio::-webkit-media-controls-seek-back-button,
audio::-webkit-media-controls-seek-forward-button {
	display: none !important;
}
/* Aviso de download desabilitado */
.download-disabled-notice {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #ffc107;
	color: #333;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 12px;
	display: none; /* Oculto por padrão, pode ser mostrado com JS se necessário */
}


@media screen and (max-width: 1023px) {
	.bloco-div{
		width:100%;
	}
	
	.bloco-imagem{
		height:250px;
	}
	.bloco-titulo-nome{
		margin-top:20px;
		font-size:0.92em;
	}
	.bloco-texto{
		font-size:0.8em;
		height: auto;
		
	}
	.controls button img{
		width:50px;
	}
	.time-display {
		font-size: 0.8em;
	}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
   .bloco-div{
		width:50%;
	}
	.bloco-imagem{
		height:220px;
	}
	.bloco-texto{
		height: 70px;
		
	}
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.topo-into{
	font-size:1.3em;
}
.topo-into2{
	font-size:3.3em;
}
.topo-texto{
	font-size:0.9em;
}	

.bloco-div{
		width:33%;
	}
	
	.bloco-imagem{
		height:220px;
	}
	.bloco-titulo-nome{
		font-size:0.9em;
	}
	.bloco-texto{
		font-size:0.75em;
		
	}
	.controls button img{
		width:40px;
	}
	.time-display {
		font-size: 0.7em;
	}
}
@media screen and (min-width: 1280px) and (max-width: 1365px) {
.bloco-div{
		width:25%;
	}
	
	.bloco-imagem{
		height:200px;
	}
	.bloco-titulo-nome{
		font-size:0.85em;
	}
	.bloco-texto{
		font-size:0.75em;
		height:80px
		
	}
	.controls button img{
		width:35px;
	}
	.time-display {
		font-size: 0.7em;
	}
}
@media screen and (min-width: 1366px) and (max-width: 1911px) {
	
	.bloco-imagem{
		height:200px;
	}
	.bloco-titulo-nome{
		font-size:0.88em;
	}
	.bloco-texto{
		font-size:0.77em;
		height:76px
		
	}
	.controls button img{
		width:35px;
	}
	.time-display {
		font-size: 0.7em;
	}
}



.apoios-bloco-div{
	display: flex;
	justify-content: center; /* Adicionado para alinhar horizontalmente ao centro */
	
}
.apoios-bloco-size{
	width:1000px;
	padding-left:150px;
}

.apoios-bloco{
	width:50%;
	position:relative;
	float:left;
	padding:0px 20px 0px 20px;
	margin-bottom:30px;
}

.apoios-bloco-titulo{
	font-family: 'ProtoGrotesk-Light', serif;
	font-size:1.3em;
	color:#fff;
	font-weight:600;
}
.apoios-bloco-texto{
	font-family: 'ProtoGrotesk-Light', serif;
	font-size:1.3em;
	color:#fff;
	font-weight:400;
	margin-bottom:40px;
}

.logotipos-div{
	margin-top:70px;
	padding-left:120px;
}
.logotipos-box-left{
	width:70%;
	position:relative;
	float:left;
	padding-right:100px;
	margin-bottom:80px;
}
.logotipos-box-right{
	width:30%;
	position:relative;
	float:left;
	margin-bottom:80px;
}

.logotipos-box-titulo{
	font-family: 'ProtoGrotesk-Light', serif;
	font-size:1.3em;
	color:#fff;
	font-weight:600;
}

.apoios-logos{
	width:100%;
	position:relative;
	float:left;
	margin-top:20px;
}
.apoios-logos-right{
	width:100%;
	position:relative;
	float:left;
	margin-top:20px;
	display: flex;
	justify-content: center;
}
.logo{
	position:relative;
	float:left;
	margin-right:20px;
}
.logo img{
	height:198px;
	width:auto;
}
.logoferral{
	margin-top:-20px;
}
.logoferral img{
	height:130px;
	width:auto
}
@media screen and (max-width: 1023px) {
.apoios-bloco-size{
	width:100%;
	padding-left:0px;
}

.apoios-bloco{
	width:100%;
	position:relative;
	float:left;
	padding:0px 20px 0px 20px;
	margin-bottom:30px;
}

.apoios-bloco-titulo{
	font-size:1.1em;
	text-align:center
}
.apoios-bloco-texto{
	font-size:1.1em;
	text-align:center
}
.logotipos-div{
	margin-top:50px;
	padding-left:0px;
}
.logotipos-box-left{
	width:100%;
	padding-right:0px;
	margin-bottom:50px;
}
.logotipos-box-right{
	width:100%;
	margin-bottom:30px;
}

.logotipos-box-titulo{
	font-size:1.1em;
	text-align:center
}
.logo{
	width:100%;
	margin-bottom:15px;
	display: flex;
	justify-content: center;
}
.logoferral{
	width:100%;
	display: flex;
	justify-content: center;
}
.logoferral img{
	height:100px;
}
.logo img{
	height:120px;
	width:auto;
}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {

}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.apoios-bloco-size{
		width:1000px;
		padding-left:150px;
	}
	
	
	.apoios-bloco-titulo{
		font-size:1em;
	}
	.apoios-bloco-texto{
		font-size:1em;
	}
	
	
	.logotipos-box-titulo{
		font-size:1em;
	}
	
	.logo img{
		height:100px;
		width:auto;
	}
}
@media screen and (min-width: 1280px) and (max-width: 1365px) {
	.apoios-bloco-size{
		width:1000px;
		padding-left:150px;
	}
	
	
	.apoios-bloco-titulo{
		font-size:1.1em;
	}
	.apoios-bloco-texto{
		font-size:1.1em;
	}
	
	
	.logotipos-box-titulo{
		font-size:1.1em;
	}
	
	.logo img{
		height:120px;
		width:auto;
	}

}
@media screen and (min-width: 1366px) and (max-width: 1911px) {
	
	.apoios-bloco-titulo{
		font-size:1.2em;
	}
	.apoios-bloco-texto{
		font-size:1.2em;
	}
	
	
	.logotipos-box-titulo{
		font-size:1.2em;
	}
	
	.logo img{
		height:140px;
		width:auto;
	}
}

/*--------------------------------------------------------------------------------------------------------------------------------
MEDIDAS LAYOUT
--------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1023px) {

}
@media screen and (min-width: 1024px) and (max-width: 1279px) {

}
@media screen and (min-width: 1280px) and (max-width: 1365px) {

}
@media screen and (min-width: 1366px) and (max-width: 1500px) {

}
@media screen and (min-width: 1501px) {

}
@media screen and (min-width: 2021px){ /* PARA DISPOSITIVOS PEQUENOS*/

}