/* Restauração da cor de fundo original */
body {
    background-color: #F4F4F4;
    font-family: Arial, sans-serif;
}

h1, h2, h3 {
    text-align: center;
    color: #333;
}

/* Separador entre seções */
.section-divider {
    border: none;
    height: 2px;
    background-color: black;
    margin: 40px 0;
}

/* Seção Histórico */
.historico-section {
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
}

.historico-section img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.historico-section small {
    display: block;
    margin-top: 10px;
    color: #555;
    font-weight: bold;
}

.historico-section p {
    max-width: 1000px;
    margin: 20px auto;
    text-align: justify;
    color: #555;
    line-height: 1.6;
}

/* Seção Quem Somos */
.quem-somos-section {
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Estilização do título e imagem ao lado */
.titulo-com-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.titulo-com-icone img {
    width: 50px;
    height: 50px;
}

.titulo-com-icone h2 {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* Texto estilizado */
.quem-somos-section p {
    text-align: justify;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
}

/* Estilo das turmas */
.turma-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.turma-card {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
    text-align: left;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.turma-card h5 {
    color: #5AA1D8;
    font-weight: bold;
    font-size: 1.2rem;
}

.turma-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.btn-inscreva {
    background-color: #DA5914;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #DA5914;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
}

.btn-inscreva:hover {
    background-color: white;
    color: #DA5914;
    border-color: #DA5914;
}

/* Área temática */
.area-title {
    text-align: center;
    font-size: 1.5rem;
    color: #5AA1D8;
    margin-top: 40px;
}

/* Seção Quem Somos */
.pilares-section {
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
}

.pilares-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.pilar {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.pilar img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.pilar h3 {
    font-size: 1.8rem;
    color: #5AA1D8;
    margin-bottom: 10px;
}

.pilar p, .pilar ul {
    text-align: justify;
    line-height: 1.6;
}

.pilar ul {
    list-style: circle;
    padding: 0;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.pilar ul li {
    margin-bottom: 10px;
    font-weight: normal;
}

