@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: relative;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin-right: 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    transition: background-color 0.3s;
}

.menu ul li a:hover {
    background-color: #ff6f61;
    border-radius: 5px;
}

.banner {
    background: url('../img/banner.png') no-repeat center center/cover;
	width: 100%; /* Define que a largura será sempre 100% da tela */
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
	background-size: cover; /* Faz com que a imagem se ajuste à tela cobrindo o conteúdo */
    background-position: center; /* Centraliza a imagem no banner */
}

.banner-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.banner-content h1 {
    font-size: 2.5em;
}

.banner-content p {
    margin: 20px 0;
}

.banner .btn {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.content-section {
    padding: 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.podcast-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.podcast-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.podcast-card img {
    width: 100%;
    border-radius: 10px;
}

.podcast-card h3 {
    margin-top: 15px;
}

.programacao-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.programacao-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.highlight {
    margin-top: 40px;
}

.highlight img {
    width: 100%;
    max-width: 500px;
    margin: 20px 0;
}

.btn {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer .contact-info p {
    margin: 10px 0;
}

footer .footer-bottom {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .podcast-grid {
        flex-direction: column;
        align-items: center;
    }

    .podcast-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.5em;
    }
    
    .podcast-grid {
        flex-direction: column;
    }
    
    .programacao-list {
        text-align: center;
    }
}


