/* Estilos gerais */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante que a página ocupe toda a altura */
}

main {
    flex: 1; /* Faz o conteúdo ocupar o espaço disponível */
    padding-bottom: 60px; /* Evita que o conteúdo fique colado no rodapé */
}

/* Cabeçalho */
header {
    background: rgb(41, 87, 143);
    text-align: center;

}

.header-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Episódio */
.episodio {
    background: rgb(41, 87, 143);
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episodio:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.episodio h2 {
    font-size: 22px;
    color: white;
}

audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

/* Rodapé */
footer {
    background: rgb(41, 87, 143);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px; /* Aumenta o espaço entre o conteúdo e o rodapé no mobile */
    }

    .episodio {
        margin: 20px auto;
        width: 90%;
        padding: 15px;
    }
}

