	@import url(https://fonts.googleapis.com/css?family=Poppins:200,400);
	
        /* Estilos para o player de áudio */
        .audio-player {
            display: flex;
            align-items: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 20px;
            border-radius: 5px;
  			-webkit-box-shadow: 3px 1px 29px 0px #bfbfbf;
  			-moz-box-shadow: 3px 1px 29px 0px #bfbfbf;
  			box-shadow: 3px 1px 29px 0px #bfbfbf;
        }

        .audio-cover {
            width: 200px;
            height: 200px;
            margin-right: 20px;
            border-radius: 5px;
        }

        .audio-details {
            flex-grow: 1;
        }

        .audio-title {
            font-size: 22px;
            margin: 0;
			font-family: 
        }

        .audio-artist {
            font-size: 16px;
            color: #777;
            margin: 0;
        }
		
		.audio-versiculo {
            font-size: 18px;
            color: #FF0004;
            margin: 0;
			font-weight: bold;
        }

        .audio-controls {
            display: flex;
            align-items: center;
            margin-top: 20px;
			background: #f1f3f4;
        }

        audio {
            width: 100%;
			flex-grow: 1;
        }

     /*   a {
            text-decoration: none;
            color: #007BFF;
            margin-left: 10px;
        }
		*/
		.download-button {
            /*background-color: #007BFF;*/
            color: #fff;
            padding: 10px 20px; /* Aumente o tamanho aqui */
            border: none;
            border-radius: 5px;
            text-decoration: none;
            margin-left: -20px;
            cursor: pointer;
            display: flex;
            align-items: center; /* Centralize verticalmente */
        }

        .download-button:hover {
            /*background-color: #0056b3;*/
			transform: scale(1.5);
        }
