/* Corpo e Estilo Geral */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #e3f2fd);
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background: #0d47a1;
    color: white;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffcc80;
}

/* Seções */
section {
    padding: 20px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
}

h2 {
    color: #0d47a1;
    border-bottom: 2px solid #0d47a1;
    padding-bottom: 5px;
}

/* Estilo para seções de como subir o ambiente */
pre {
    background: #f9f9f9;
    padding: 10px;
    border-left: 4px solid #0d47a1;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    overflow-x: auto;
}

pre code {
    color: #333;
}

ol li {
    margin-bottom: 15px;
}

strong {
    color: #0d47a1;
    font-weight: bold;
}

ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Rodapé */
footer {
    background: #0d47a1;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Interatividade */
a {
    text-decoration: none;
    color: #0d47a1;
    font-weight: bold;
}

/* colaboradores ------------------------------ */
#colaboradores {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

#colaboradores h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Três colunas */
    gap: 30px; /* Espaçamento entre fotos */
    justify-items: center;
}

.colaborador {
    text-align: center;
}

.foto {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Forma circular */
    overflow: hidden; /* Garante que a imagem fique dentro do círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd; /* Fundo de fallback para fotos ausentes */
    border: 4px solid #333; /* Borda ao redor do círculo */
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o círculo sem distorções */
}

.colaborador p {
    font-size: 1.2em;
    color: #555;
    margin-top: 10px;
}


/*------------------------------------------------*/

#atas {
    text-align: center;
    padding: 40px;
    background-color: white;
    color: #fff;
}

#atas h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f9a825;
}

#atas p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #000;
}

#atas .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #1a1a1a;
    background-color: #f9a825;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#atas .btn:hover {
    background-color: #ffd740;
    transform: scale(1.05);
}

#atas .btn:active {
    transform: scale(0.95);
}
/*--------------------------------------*/

#requisitos {
    padding: 40px;
    background-color: #f9f9f9;
    color: #333;
}

#requisitos h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #0056b3;
}

#requisitos article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#requisitos h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

#requisitos h4 {
    font-size: 1.4em;
    color: #555;
    margin-top: 20px;
}

#requisitos ul {
    margin: 10px 0;
    padding-left: 20px;
}

#requisitos ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

#requisitos figure {
    text-align: center;
    margin-top: 20px;
}

#requisitos img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#prototipos h1{
    margin: 20px;
}

#arquitetura object{
    margin-bottom: 0px;
    text-align: center;
    margin-left: 300px;
    border:solid 1px;
    border: #000;
    border-radius: 20px;
}