* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #ff6f00; /* Laranja escuro */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.player-bar {
    background-color: #000; /* Preto para o player */
    padding: 10px;
    border-radius: 5px;
}

.player-bar audio {
    width: 100%; /* Ajusta o tamanho do player */
}

.logo img {
    width: 200px; /* Definindo a largura da logo */
    height: 200px; /* Definindo a altura da logo */
}

.banner img {
    width: 728px; /* Largura do banner */
    height: 90px; /* Altura do banner */
}

main {
    margin-top: 250px; /* Para não ficar atrás do header fixo */
    padding: 120px;
    max-width: 1200px;
    margin: 20px auto;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 2.5em;
    color: #ff6f00; /* Laranja escuro */
}

.intro p {
    font-size: 1.2em;
    color: #666;
}

.features {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.features h2 {
    color: #ff6f00; /* Laranja escuro */
}

.features ul {
    list-style-type: none;
}

.features li {
    margin: 10px 0;
    font-size:  1.1em;
}

.partners {
    text-align: center;
}

.partners h2 {
    color: #ff6f00; /* Laranja escuro */
}

.banners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.banners img {
    max-width: 200px;
    margin: 10px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a; /* Preto */
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner img {
        width: 100%; /* Banner ocupa toda a largura em dispositivos móveis */
        height: auto; /* Altura automática para manter a proporção */
    }

    .intro h1 {
        font-size: 2em;
    }

    .intro p {
        font-size: 1em;
    }

    .features li {
        font-size: 1em;
    }

    .logo img {
        width: 150px; /* Ajusta a logo para dispositivos móveis */
        height: 150px;
    }

    .player-bar audio {
        width: 100%; /* Player ocupa toda a largura em dispositivos móveis */
    }
}