/* ----------------  Reset e estilos básicos ------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    zoom: 90%;
    
}

a {
    text-decoration: none;
    color: inherit;
}

/* ----------------- Cores do Site IFMA  --------------------------*/
:root {
    --ifma-blue: #003366;
    --ifma-light-blue: #0066cc;
    --ifma-yellow: #ffcc00;
    --ifma-orange: #ff6600;
}

/* ---------------------- Header ----------------------------*/
header {
    background-color: var(--ifma-blue);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.3rem;
    margin-right: 5rem;
    
}

.logo-ifma {
    height: 100px;
   
}

.logo-netec{
    height: 120px; 
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--ifma-yellow);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* ---------------------- Navegação -------------------------------------------*/
nav {
    background-color: var(--ifma-light-blue);
    position: sticky;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

nav li {
    flex: 1;
    text-align: center;
}

nav a {
    display: block;
    padding: 1rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: var(--ifma-yellow);
    color: var(--ifma-blue);
}

nav i {
    margin-right: 0.5rem;
}

/* ----------------   Conteúdo principal -------------------------*/


main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-section {
    display: none;
    padding: 2rem 0;
}

.content-section.active {
    display: block;
}

.banner {
    width: 100%;
    margin-bottom: 2rem;
}

.banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

h2 {
    color: var(--ifma-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ifma-yellow);
}

h3 {
    color: var(--ifma-light-blue);
    margin: 1.5rem 0 1rem;
}


.selo-netec{
    
    left: 100%;
    float: left;
    margin-left: 1050px; /* Espaço entre a imagem e o texto à direita */
  /* Você pode adicionar as propriedades de tamanho da pergunta anterior aqui */
  /* Ex: width: 150px; height: auto; */
    width: 120px; 
    height: 100px;
}


/* --------------------- Produções ---------------------------------------- */
.producoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1.5fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
    line-height: 1.4em;
}

.producao-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.producao-card:hover {
    transform: translateY(-5px);
}

.producao-icon {
    font-size: 2.5rem;
    color: var(--ifma-orange);
    margin-bottom: 1rem;
}
/* ------------ Botão Download --------------------------------*/
.btn-download, .btn-open{
    display: inline-block;
    background-color: var(--ifma-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.btn-download:hover {
    background-color: var(--ifma-light-blue);
}
/* ------------ Botão Abrir --------------------------------*/
.btn-open {
    background-color: var(--ifma-yellow);
    color: var(--ifma-blue);
    border: 1px solid var(--ifma-yellow);
}
.btn-open:hover {
    background-color: var(--ifma-light-blue);
}


/* -------------  Aba Participantes -----------------------------*/
.tabs {
    display: flex;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.tab-content.active {
    display:block;
}

.tab-button:hover, .tab-button.active {
    color: var(--ifma-blue);
    border-bottom: 3px solid var(--ifma-yellow);
}

.tab-content {
    display: none;
}
.membros-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.membro-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    line-height:1.2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.area-formacao{
color:darkgreen;
margin-top:1em  ;
}


.membro-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--ifma-yellow);
}

/* Estilo para a área de pesquisa */
.area-pesquisa {
    color: #555; /* Cor mais suave para o texto */
    margin: 0.5rem 0;
}
.area-pesquisa i {
    color: var(--ifma-blue); /* Cor do IFMA para o rótulo */
    font-style: italic;
}
/* Estilo para o link Lattes */
.lattes-link {
    color: #1118a1; /* Cor do texto normal */
    margin: 0.5rem 0;
}
.lattes-link a {
    color: var(--ifma-light-blue); /* Cor do link */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lattes-link a:hover {
    color: var(--ifma-orange); /* Cor ao passar o mouse */
    text-decoration: underline;
}


/* Galeria */
.container-Galeria {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}



/* Contato */
.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contato-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contato-info i {
    margin-right: 0.8rem;
    color: var(--ifma-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--ifma-blue);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--ifma-light-blue);
}

.contato-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background-color: var(--ifma-blue);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: var(--ifma-light-blue);
}
/* Formatação da lista página home */
dd  {
    margin-left: 30px;
  }

dt {
    font-weight: bold;
}

/* formatação da citação direta*/

.citacao {
    margin-left: 4cm; /* Recuo de 4 cm na margem esquerda */
    font-size: 12pt; /* Fonte menor */
    line-height: 1; /* Espaçamento simples */
    margin-top: 1em; /* Espaço antes da citação */
    margin-bottom: 1em; /* Espaço depois da citação */
    text-align: justify;
  }

/*Formatação de texto Justificado*/

.texto-home{
    margin-bottom: 1.5em;
    text-align: justify;

}


/* Footer */
footer {
    background-color: var(--ifma-blue);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

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

.footer-logo {
    display: flex;
    gap: 1.1rem;
}

.footer-logo img {
    height: 50px;
}

.footer-info {
    text-align: right;
    line-height: 1.0;
}

.footer-info p {
    margin-bottom: 0.4rem;
    opacity: 0.9;
}
.contato-info {
    line-height: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    .producoes-grid, .membros-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: left;
        gap: 0.5rem;
    }
    
    .footer-info {
        text-align: left;
    }


}
