* {
	font-family: 'D-DIN', sans-serif;
}

img.aviso-dengue {
	max-width: 100%;
}

.jp-audio {
	max-width: 100%;
}

.jp-audio .jp-controls {
	max-width: 100%;
}

.direccion-contacto p {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 0;
}

.direccion-contacto p a {
	text-decoration: none;
}

.direccion-contacto p a i {
	font-size: 18px;
	line-height: 24px;
}

.instagram a i {
	font-size: 32px;
}

.envolvente {
	min-height: 100vh;
	position: relative;
}

.patron {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../img/patron_negro.png');
}

.card-reproductor {
	max-width: 100%;
	border-radius: 2rem;
}

.a2a_kit {
	display: flex;
	align-items: center;
	margin: 2rem 0 1rem;
}

.a2a_kit a {
	width: 40px;
	height: 40px;
	border-radius: .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 .25rem;
}

.a2a_kit a i.bi {
	font-size: 21px;
	color: #fff;
}

img.img-bg {
	margin-top: -4rem;
}

p.pie-data, p.pie-signica {
	color: rgba(255, 255, 255, .7);
	margin-bottom: 1rem;
	/*padding-bottom: .5rem;*/
	position: relative;
	z-index: 1;
}

p.pie-data {
	font-size: 24px;
	line-height: 1;
	border-right: 1px dashed rgba(255, 255, 255, .7);
	padding-right: 1rem;
	padding-bottom: 1rem;
	position: relative;
}

p.pie-data strong {
	font-size: 1rem;
	line-height: 1;
}

p.pie-data::after {
	content: '';
	width: 24px;
	height: 8px;
	background: rgba(255, 255, 255, .7);
	position: absolute;
	right: 1rem;
	bottom: 0;
}

p.pie-signica {
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	/*align-items: flex-end*/;
	padding-left: 1rem;
	/*margin-top: -.5rem;*/
}

p.pie-signica img {
	height: 12px;
	margin-left: .25rem;
    margin-top: -4px;
}

@media screen and (max-width: 576px) {
	img.img-bg {
		margin-top: 0;
	}
	p.pie-data {
		text-align: center;
	}
	p.pie-signica {
		justify-content: center;
	}
}

/* 
===========
Reproductor
===========
*/

#player-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

button {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
}

button:active {
	opacity: 0.6; /* Efecto de opacidad sutil */
}

i {
	font-size: 24px;
}

/* Contenedor de volumen */
#volume-container {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Slider de volumen */
#custom-slider {
	position: relative;
	width: 120px;
	height: 6px;
	background: #ddd;
	border-radius: 3px;
	cursor: pointer;
}

#progress {
	position: absolute;
	height: 100%;
	width: 100%; /* Volumen inicial */
	background: #212529;
	border-radius: 3px;
	transition: width 0.2s ease-in-out;
}

#thumb {
	position: absolute;
	top: 50%;
	left: 100%;
	width: 14px;
	height: 14px;
	background: #212529;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: left 0.2s ease-in-out;
}

/*
Personalización
--------------- */

#player-controls {
	align-items: center;
	width: 100%;
	max-width: 320px;
	padding: 1rem;
	border: 1px solid #212529;
	border-radius: 1rem;
}

button#playPauseBtn {
	width: 72px;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 0 auto;
	background: #212529;
	border-radius: 50%;
}

.tiempo-volumen {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

button#playPauseBtn i.bi {
	font-size: 48px;
	line-height: 1;
	color: #fff;
}

span#timeDisplay {
	display: flex;
    justify-content: center;
    width: 100%;
	font-size: 21px;
	line-height: 24px;
}

button#muteBtn,
button#maxVolumeBtn {
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0 .5rem;
}

button#muteBtn i.bi,
button#maxVolumeBtn i.bi {
	font-size: 32px;
	line-height: 1;
}

#volume-container {
	width: 100%;
	gap: 8px;
}

#custom-slider {
	width: 100%;
}

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

	#player-controls {
		flex-direction: column;
	}

}