/* Estilo para o corpo da página */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f5f5f5; /* Fundo leve para todo o site */
}

/* Estilo para o cabeçalho */
.header-image img {
    width: 100%;
    height: auto;
}

/* Estilo para o menu de navegação */
.nav-bar {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px;
    margin: 0;
}
/* Adicione no seu arquivo style.css */
.img-large {
    width: 500%;
    height: auto;
}


.nav-button {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-button:hover {
    background-color: #555;
    color: #f4f4f4;
}

/* Estilo para o conteúdo principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo para a seção hero */
.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2em;
    color: #000000;
}
.highlight-title {
    font-size: 1.5em; /* Aumenta o tamanho da fonte */
    color: #2C3E50; /* Cor do texto */
    border-bottom: 2px solid #2980B9; /* Linha abaixo do título */
    padding-bottom: 10px; /* Espaçamento abaixo do texto */
    margin-bottom: 20px; /* Espaçamento entre o título e o conteúdo abaixo */
    text-transform: uppercase; /* Deixa o texto em maiúsculas */
}

/* Estilo específico para a seção de Educação Financeira */
.education-finance .highlight-title {
    background-color: #EAF2F8; /* Fundo leve para destacar */
    padding: 5px; /* Espaçamento interno */
}

/* Estilo específico para a seção de Investimentos */
.investments .highlight-title {
    background-color: #F8EAEF; /* Fundo leve diferente */
    padding: 5px; /* Espaçamento interno */
}

/* Estilo para a seção de notícias */
.section {
    margin: 20px 0;
}

.section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilo para a grade de notícias */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Estilo para os artigos de notícias */
.featured-news,
.news-grid article {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-news:hover,
.news-grid article:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilo para links dentro das notícias */
.news-link {
    text-decoration: none;
    color: inherit;
}

/* Estilo para a imagem das notícias */
.news-image {
    width: 100%;
    height: auto;
}

/* Estilo para o conteúdo das notícias */
.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 1.5em;
    color: #007bff;
    margin: 0 0 10px;
}

.news-content p {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

/* Estilo para o rodapé */
.footer-image img {
    width: 100%;
    height: auto;
}

.footer-info {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer-info p {
    margin: 0;
}

.footer-info .social-media {
    margin-top: 10px;
}

.footer-info .social-icon {
    display: inline-block;
    margin: 0 10px;
}

.footer-info .social-icon img {
    width: 24px;
    height: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em; /* Reduz o tamanho do título em telas menores */
    }

    .hero p {
        font-size: 1.1em; /* Reduz o tamanho do subtítulo em telas menores */
    }

    .section h2 {
        font-size: 2em; /* Reduz o tamanho do título da seção em telas menores */
    }

    .news-content h3 {
        font-size: 1.2em; /* Ajusta o tamanho do título das notícias em telas menores */
    }

    .news-content p {
        font-size: 0.9em; /* Ajusta o tamanho da fonte dos parágrafos em telas menores */
    }
}
/* Estilo para o conteúdo principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Estilo para a seção hero */
.hero {
    background: #007bff;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

/* Estilo para a seção de notícias */
.section {
    padding: 50px 0;
    background-color: #fff;
}

.section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilo para o grid de notícias */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.news-grid article {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-grid article:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.news-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.4;
}
/* Estilo para a imagem da notícia específica */
.article-image img {
    width: 20%; /* Ajusta a largura da imagem para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.juninaa-image {
    width: 40%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinho-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinhoo-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinhooo-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinhoooo-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinhooooo-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
.gordinhoooooo-image {
    width: 30%; /* Define a largura para 20% do tamanho original */
    height: auto; /* Mantém a proporção da imagem */
}
/* Estilo para a seção "Sobre Nós" */
.about-section {
    padding: 50px 0;
    background-color: #fff;
}

.about-section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.team {
    margin-top: 40px;
}

.team h3 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.team p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2em;
    color: #007bff;
    margin: 10px 0;
}

.team-member p {
    font-size: 1em;
    color: #333;
}

/* Estilo para as parcerias */
.partnerships {
    margin-top: 40px;
}

.partnerships h3 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.partnerships p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
}

.partnerships ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.partnerships li {
    font-size: 1.1em;
    color: #333;
}

/* Estilo para a seção de colunas */
.columns-section {
    padding: 50px 0;
    background-color: #fff;
}

.columns-section h2 {
    font-size: 2.5em;   
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.columns-section p {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Layout de grid para as colunas */
.columns-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.column-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.column-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.column-image {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.column-card h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
}

.column-card p {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #0056b3;
}
.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.column-details, .education-finance, .investments {
    margin-bottom: 40px;
}

h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

h3 {
    color: #555;
    font-size: 1.5em;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Estilo para a seção institucional */
.institutional-section {
    padding: 50px 0;
    background-color: #fff;
}

.institutional-section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.institutional-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.institutional-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

.institutional-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.institutional-card h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.institutional-card p {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

/* Estilo para a seção de contato */
.contact-section {
    padding: 50px 0;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section p {
    font-size: 1.1em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Estilo para o formulário de contato */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Estilo para as informações de contato */
.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Estilo para o rodapé */
.footer-info {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer-info p {
    margin: 0;
}

.footer-info .social-media {
    margin-top: 10px;
}

.footer-info .social-icon {
    display: inline-block;
    margin: 0 10px;
}

.footer-info .social-icon img {
    width: 24px;
    height: 24px;
}

.footer-image img {
    width: 100%;
    height: auto;
}
.footer-info {
    padding: 10px; /* Espaçamento interno */
    text-align: center; /* Centralizar o texto */
    position: relative; /* Para posicionamento */
}

.social-media {
    margin: 10px 0; /* Espaçamento entre os elementos */
}

.creator-info {
    margin-top: 20px; /* Espaço acima */
    padding: 10px; /* Espaçamento interno */
    border: 2px solid #007BFF; /* Borda azul */
    border-radius: 10px; /* Cantos arredondados */
    background-color: #fff; /* Fundo branco */
    display: inline-block; /* Para que a borda funcione */
}

.creator-content {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
}

.creator-logo {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-right: 10px; /* Espaço à direita da logo */
}

.creator-info p {
    font-size: 1.2em; /* Aumenta o tamanho da fonte */
    font-weight: bold; /* Negrito */
    color: #333; /* Cor do texto */
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2em;
    }

    .contact-section p {
        font-size: 1em;
    }

    .submit-button {
        font-size: 1em;
    }

        /* Estilo padrão para navegação */
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-button {
            text-decoration: none;
            color: white;
            font-size: 16px;
        }
        
        /* Estilo do botão hambúrguer */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }
        
        /* Responsividade para telas menores */
        @media (max-width: 1020px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #000000;
                padding: 5px;
                gap: 10px;
            }
        
            .nav-links.show {
                display: flex;
            }
        
            .menu-toggle {
                display: block;
            }
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            color: #333;
            box-sizing: border-box;
        }

        header h1 {
            margin: 0;
            font-size: 24px;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 10px;
        }

        .section-title {
            font-size: 22px;
            color: #0073e6;
            border-bottom: 2px solid #0073e6;
            padding-bottom: 5px;
            margin-bottom: 20px;
        }

        .mural-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .mural-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .mural-item:hover {
            transform: scale(1.03);
        }

        .mural-item h3 {
            background-color: #0073e6;
            color: white;
            padding: 10px;
            margin: 0;
            font-size: 18px;
            text-align: center;
        }

        footer {
            width: 100%;
            color: #fff;
            padding: 10px 0;
            position: relative;
        }

        .footer-info {
            text-align: center;
            padding: 10px 0;
        }

        .footer-image img {
            display: block;
            width: 100%;
            height: auto;
        }

        footer p {
            margin: 10px 0;
            font-size: 14px;
        }

        #calendar {
            padding: 20px;
            text-align: center;
        }

        #calendar h4 {
            margin-bottom: 10px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .calendar-header button {
            background-color: #0073e6;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 5px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-top: 10px;
        }

        .calendar-cell {
            text-align: center;
            padding: 10px;
            background-color: #f1f1f1;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
        }

        .calendar-cell.today {
            background-color: #0073e6;
            color: white;
        }

        .calendar-cell.event {
            background-color: #ffc107;
            color: #333;
            font-weight: bold;
        }

        .calendar-cell.event:hover {
            background-color: #ffa000;
        }
        .menu-section {
    margin-top: 40px;
    padding: 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.menu-item {
    background: white;
    color: #0073e6;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.menu-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #0073e6;
}

.menu-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-item ul li {
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.menu-item ul li:last-child {
    border-bottom: none;
}
/* CSS para dispositivos com largura de 1020px ou menor */
@media (max-width: 1020px) {
    img {
        max-width: 100%; /* Ajusta a largura máxima da imagem */
        height: auto;   /* Mantém a proporção da imagem */
    }

    .news-grid {
        display: flex;
        flex-direction: column; /* Organiza os artigos em uma coluna */
        gap: 20px; /* Adiciona espaço entre os itens */
    }

    .news-image {
        width: 100%; /* Garante que as imagens ocupem toda a largura disponível */
        height: auto; /* Mantém a proporção das imagens */
    }

    .header-image img,
    .footer-image img {
        width: 100%; /* Ajusta imagens de cabeçalho e rodapé */
        height: auto; /* Mantém a proporção */
    }

    .creator-logo {
        max-width: 80px; /* Redimensiona o logo do criador para caber na tela menor */
    }
}
}