.science-section {
    padding: 50px 0;
    text-align: center;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.title-line {
    border-top: 2px solid #eee;
    width: 80%;
    margin: 20px auto;
}

.science-title,
.tittle {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.italic-text {
    font-style: italic;
}

.coordinator-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.coordinator-photo-box {
    margin-bottom: 20px;
}

.coordinator-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2b9bA2; /* Example border color */
}

.photo-caption {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.coordinator-info {
    max-width: 800px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.fala-chemsex-text {
    font-weight: bold;
    color: #2b9bA2; /* Example color */
}

.bold-text {
    font-weight: bold;
}

.partners-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.partner-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px; /* Adjust as needed */
    justify-content: space-between;
}

.partner-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ccc;
}

.partner-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.partner-description {
    font-size: 0.95em;
    color: #666;
    flex-grow: 1; /* Allows description to take up available space */
}

.partner-lattes {
    font-size: 0.9em;
    color: #2b9bA2;
    margin-top: 10px;
}

.partner-lattes strong {
    color: #555;
}

@media (max-width: 768px) {
    .science-title,
    .tittle {
        font-size: 2em;
    }

    .coordinator-section {
        flex-direction: column;
    }

    .coordinator-info {
        font-size: 1em;
    }

    .partners-section {
        grid-template-columns: 1fr;
    }
}

/*Sobre novo*/
/* Importação de fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* --- Reset Básico e Estilos Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #444;
    background-color: #f8f8f8; /* Fundo geral claro */
}

.container {
    max-width: 1140px; /* Largura padrão para o conteúdo */
    margin: 0 auto;
    padding: 0 15px; /* Padding nas laterais */
}

/* --- Cabeçalho (Header) --- */
.main-header {
    background-color: #008f8f; /* Tom de verde-água/turquesa escuro como na imagem */
    padding: 10px 0;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between; /* Espaço entre os elementos */
    align-items: center; /* Alinha verticalmente */
}

.menu-toggle {
    font-size: 2em;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Tamanho do logo */
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
}

.header-link a {
    color: #b3e0e0; /* Cor do link no header, mais clara */
    text-decoration: none;
    font-size: 0.9em;
}

/* --- Seção "Sobre o projeto" --- */
.about-project-section {
    background-color: #ffffff; /* Fundo branco */
    padding: 80px 0;
}

.about-project-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.section-heading { /* Título "Sobre o projeto" */
    font-size: 2.5em;
    color: #2b9bA2; /* Azul-esverdeado claro */
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.project-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
}

.project-description strong {
    font-weight: 700;
}

.project-description .highlight-blue {
    color: #2b9bA2;
    font-weight: 600;
}

/* --- Seção "Compromisso com os Objetivos de Desenvolvimento Sustentável (ODS)" --- */
.ods-section {
    background-color: #333333; /* Fundo cinza escuro */
    padding: 60px 0 80px 0;
    color: #fff;
}

.ods-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ods-title { /* Título da seção ODS */
    font-size: 2.5em;
    color: #ffc107; /* Amarelo/Laranja */
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.ods-intro-text { /* Texto introdutório da seção ODS */
    font-size: 1.1em;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

/* --- Estilo dos Cards ODS --- */
.ods-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.ods-card {
    border-radius: 8px;
    padding: 25px;
    width: calc(33.33% - 14px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.ods-card:hover {
    transform: translateY(-5px);
}

.ods-card .ods-number {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.ods-card .ods-label {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 15px;
    z-index: 2;
}

.ods-card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    z-index: 2;
}

.ods-card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    z-index: 2;
}

.ods-card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #eee;
    text-align: left;
    z-index: 2;
}

/* Cores de fundo específicas dos cards ODS */
.ods-green-bg {
    background-color: #28a745;
}

.ods-red-bg {
    background-color: #dc3545;
}

.ods-pink-bg {
    background-color: #e83e8c;
}

/* --- NOVA SEÇÃO: "O que você encontra nesse site?" --- */
.what-you-find-section {
    background-color: #92dce5; /* Cor de fundo azul-esverdeado claro (água) */
    padding: 80px 0; /* Espaçamento superior e inferior */
}

.what-you-find-wrapper {
    max-width: 1000px; /* Largura do conteúdo principal */
    margin: 0 auto;
    padding: 0 15px;
}

.section-title { /* Título "O que você encontra nesse site?" */
    font-size: 2.5em; /* Tamanho do título */
    color: #333333; /* Cinza escuro */
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left; /* Alinhado à esquerda */
}

.intro-text-find { /* Texto introdutório desta seção */
    font-size: 1.1em;
    line-height: 1.8;
    color: #555555; /* Cinza mais claro */
    margin-bottom: 40px; /* Espaçamento antes dos itens */
    text-align: left;
}

.intro-text-find .highlight-blue { /* Destaque azul no texto introdutório */
    color: #2b9bA2; /* Azul de destaque */
    font-weight: 600;
}

.find-items-container {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem em linhas */
    justify-content: space-between; /* Distribui o espaço horizontalmente */
    gap: 30px; /* Espaçamento entre os itens */
}

.find-item {
    background-color: #ffffff; /* Fundo branco para cada item */
    border-radius: 8px; /* Cantos arredondados */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra sutil */
    display: flex; /* Para alinhar ícone e texto */
    align-items: flex-start; /* Alinha o ícone e o texto ao topo */
    width: calc(50% - 15px); /* Dois itens por linha, considerando o gap */
    transition: transform 0.2s ease;
}

.find-item:hover {
    transform: translateY(-5px); /* Efeito sutil ao passar o mouse */
}

.find-item .find-icon {
    width: 40px; /* Tamanho do ícone */
    height: 40px;
    object-fit: contain;
    margin-right: 15px; /* Espaço entre o ícone e o texto */
    flex-shrink: 0; /* Evita que o ícone encolha */
}

.find-item p {
    font-size: 1em; /* Tamanho do texto do item */
    line-height: 1.7;
    color: #333333; /* Cor do texto do item */
}

/* Estilo para o item que ocupa a largura total */
.find-item-full-width {
    width: 100%; /* Ocupa a largura total */
    margin-bottom: 30px; /* Espaço extra abaixo para separar do bloco de 2 colunas */
}

/* --- Responsividade (Ajustes para telas menores) --- */
@media (max-width: 992px) {
    .ods-card {
        width: calc(50% - 10px); /* 2 cards por linha */
    }
    .find-item {
        width: 100%; /* Um item por linha */
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 8px 0;
    }
    .logo img {
        height: 30px;
    }
    .logo-text {
        font-size: 1.2em;
    }
    .header-link {
        font-size: 0.8em;
    }
    .menu-toggle {
        font-size: 1.8em;
    }

    .section-heading,
    .ods-title,
    .section-title { /* Generalizando para todos os títulos de seção */
        font-size: 2em;
        text-align: center; /* Centraliza títulos em mobile */
    }

    .project-description,
    .ods-intro-text,
    .intro-text-find,
    .find-item p { /* Generalizando para textos de parágrafo */
        font-size: 1em;
        text-align: left; /* Mantém justificado ou alinhado à esquerda em mobile */
    }

    .about-project-section,
    .ods-section,
    .what-you-find-section {
        padding: 40px 0;
    }

    .ods-card {
        width: 100%; /* 1 card por linha em mobile */
        max-width: 350px;
        margin: 0 auto 20px auto;
        align-items: center;
    }
    .ods-card .ods-number {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 10px;
    }
    .ods-card-icon {
        margin: 0 auto 20px auto;
    }
    .ods-card-title,
    .ods-card-description,
    .ods-label {
        text-align: center;
    }

    .find-item-full-width {
        margin-bottom: 20px; /* Ajuste o espaço inferior em mobile */
    }
}

@media (max-width: 480px) {
    .header-link {
        display: none;
    }
    .header-content {
        justify-content: space-around;
    }
}

/*fim sobre*/

/* --- Seção de Vídeos --- */
.video-section {
    background-color: #f8f8f8; /* Fundo neutro */
    padding: 80px 0;
    text-align: center; /* Centraliza o título e subtítulo */
}

.video-content-wrapper {
    max-width: 1200px; /* Adapte se precisar de mais largura */
    margin: 0 auto;
    padding: 0 15px;
}

.video-section .section-subtitle { /* Adaptação dos títulos de seção */
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-section .section-title { /* Adaptação dos títulos de seção */
    text-align: center;
    font-size: 2.8em;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 50px;
}

.video-series-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 60px; /* Espaço antes da seção "Por que assistir?" */
    text-align: left; /* Alinha o conteúdo da série à esquerda */
}

.series-title {
    font-size: 2em;
    color:#2b9bA2; /* Cor de destaque para o título da série */
    font-weight: 600;
    margin-bottom: 15px;
}

.series-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 colunas em telas maiores, ajusta para menos */
    gap: 30px; /* Espaçamento entre os vídeos */
}

.video-item {
    background-color: #f2f2f2; /* Fundo claro para cada item de vídeo */
    border-radius: 8px;
    overflow: hidden; /* Garante que o iframe arredondado seja cortado */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 para vídeos responsivos (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-episode-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding: 15px 20px;
    text-align: left; /* Alinha o título do episódio à esquerda */
}

/* --- Seção "Por que assistir?" --- */
.why-watch-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: left; /* Alinha o conteúdo à esquerda */
}

.why-watch-title {
    font-size: 2em;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-watch-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.why-watch-list {
    list-style: none; /* Remove os marcadores padrão da lista */
    padding: 0;
}

.why-watch-list li {
    font-size: 1em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px; /* Espaço para o ícone */
    position: relative;
}

.why-watch-list .list-icon {
    color: #28a745; /* Cor verde para o "tick" */
    font-size: 1.2em;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* --- Responsividade (adicionar ao final do seu CSS) --- */
@media (max-width: 768px) {
    .video-section .section-title {
        font-size: 2.2em;
    }
    .video-series-container,
    .why-watch-section {
        padding: 30px;
    }
    .series-title,
    .why-watch-title {
        font-size: 1.8em;
    }
    .video-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .video-episode-title {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .video-section .section-title {
        font-size: 1.8em;
    }
    .series-title,
    .why-watch-title {
        font-size: 1.5em;
    }
    .series-description,
    .why-watch-description,
    .why-watch-list li {
        font-size: 0.95em;
    }
}

/*novo noticias e eventos*/
/* --- Seção de Notícias & Eventos --- */
.news-events-section {
    background-color: #f0f2f5; /* Um cinza claro para o fundo da seção */
    padding: 80px 0;
    text-align: center; /* Centraliza títulos */
}

.news-events-wrapper {
    max-width: 1200px; /* Largura máxima do conteúdo */
    margin: 0 auto;
    padding: 0 15px;
}

.news-events-section .section-subtitle { /* Subtítulo da seção */
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-events-section .section-title { /* Título principal da seção */
    text-align: center;
    font-size: 2.8em;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 50px;
}

.news-grid-container {
    display: grid;
    /* --- ALTERADO AQUI PARA GARANTIR 3 COLUNAS --- */
    grid-template-columns: repeat(3, 1fr); /* Cria 3 colunas de largura igual */
    gap: 30px; /* Espaçamento entre os cards */
}

.news-event-card {
    background-color: #ffffff; /* Fundo branco para o card */
    border-radius: 10px; /* Cantos arredondados */
    overflow: hidden; /* Garante que a imagem arredondada seja cortada */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Sombra mais visível e elegante */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Conteúdo interno alinhado à esquerda */
    display: flex; /* Para flexibilizar o layout da imagem e conteúdo */
    flex-direction: column; /* Conteúdo em coluna: imagem, depois texto */
}

.news-event-card:hover {
    transform: translateY(-7px); /* Efeito de elevação ao passar o mouse */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-event-image {
    width: 100%; /* Imagem ocupa 100% da largura do card */
    height: 220px; /* Altura fixa para a imagem */
    object-fit: cover; /* Recorta a imagem para preencher o espaço sem distorcer */
    display: block; /* Remove espaço extra abaixo da imagem */
    border-bottom: 1px solid #eee; /* Linha sutil para separar da data */
}

.news-event-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Permite que o conteúdo do texto ocupe o espaço restante */
}

.news-event-date {
    display: block; /* Faz com que a data ocupe sua própria linha */
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-event-title {
    font-size: 1.4em;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-event-description {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1; /* Permite que a descrição ocupe o espaço restante, empurrando o link para baixo */
}

.news-event-read-more {
    display: inline-block; /* Permite padding e margem */
    font-size: 0.95em;
    color: #2b9bA2; /* Cor azul de destaque */
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px; /* Espaço acima do link */
    transition: color 0.2s ease;
}

.news-event-read-more:hover {
    color: #2b9bA2; /* Cor mais escura ao passar o mouse */
}

/* --- Responsividade (manter as media queries para telas menores) --- */
@media (max-width: 992px) {
    .news-grid-container {
        grid-template-columns: repeat(2, 1fr); /* Agora 2 colunas em tablets */
        gap: 25px;
    }
    .news-event-image {
        height: 200px;
    }
    .news-event-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    /* ... (restante das media queries para mobile) ... */
    .news-events-section .section-title {
        font-size: 2.2em;
    }
    .news-events-section .section-subtitle {
        font-size: 1.1em;
    }
    .news-grid-container {
        grid-template-columns: 1fr; /* Uma coluna em celulares */
        gap: 20px;
    }
    .news-event-card {
        max-width: 400px;
        margin: 0 auto;
    }
    .news-event-image {
        height: 250px;
    }
    .news-event-content {
        padding: 15px;
    }
    .news-event-title {
        font-size: 1.2em;
    }
    .news-event-description {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .news-events-section .section-title {
        font-size: 1.8em;
    }
    .news-events-section .section-subtitle {
        font-size: 1em;
    }
    .news-event-image {
        height: 180px;
    }
    .news-event-title {
        font-size: 1.1em;
    }
}