/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #000000;  /* Fundo preto */
    color: #e0e0e0;
    overflow-x: hidden;
}

header {
    background-color: #000000;  /* Cabeçalho com fundo preto */
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    max-height: 60px;
    margin-right: 15px;
    border-radius: 5px;
}

header .logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff5722;
    text-transform: uppercase;
}

header .banner {
    background-color: #ff5722;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
}
.logo a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
}
.logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
}

.menu a:hover {
    color: #ff5722;
    border-bottom: 2px solid #ff5722;
}

/* Seção do Banner */
.banner-section {
    width: 100%;
    height: 300px; /* Defina a altura do banner */
    overflow: hidden;
    margin-bottom: 30px;
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

main {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

.section {
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff5722;
}

/* Localização */
.localizacao-box {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.localizacao-box iframe {
    margin-top: 20px;
    border-radius: 5px;
}

/* Botão "Saiba Mais" */
.btn-saiba-mais {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-saiba-mais:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

/* Cartões de notícias */
.noticias-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    font-size: 1rem;
    color: #b0b0b0;  /* Cor clareada da descrição das notícias */
}

/* Redes Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    font-size: 2rem;
    color: #e0e0e0;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff5722;
}

/* Rodapé */
footer {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    color: #e0e0e0;
}

.footer-container p {
    font-size: 1rem;
    margin: 0;
}

/* Estilos Responsivos */

/* Para tablets e telas menores */
@media (max-width: 1024px) {
    header .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    header .logo span {
        font-size: 1.5rem;
    }

    .menu {
        flex-direction: column;
        margin-top: 20px;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 15px;
    }

    .localizacao-box iframe {
        width: 100%;
        height: 300px;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* Para smartphones */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
    }

    .banner-section {
        height: 200px;
    }

    .social-icons {
        gap: 10px;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    .localizacao-box {
        padding: 20px;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* Para telas pequenas (como smartphones em modo retrato) */
@media (max-width: 480px) {
    header .logo span {
        font-size: 1.2rem;
    }

    .menu {
        flex-direction: column;
        margin-top: 20px;
    }

    .menu li {
        margin-bottom: 8px;
    }

    .banner-section {
        height: 180px;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.75rem;
    }

    footer p {
        font-size: 0.7rem;
    }
}
