/* Estilo geral */
body {
    font-family: "Poppins", sans-serif;
    background-color: #0e0e0e;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

/* Seção Início */
.inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

.perfil {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
}

.perfil img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00b4d8;
}

.info h1 {
    color: #00b4d8;
    font-size: 28px;
    margin-bottom: 10px;
}

.info p {
    margin: 5px 0;
    line-height: 1.5;
}

.info a {
    color: #4cc9f0; /* azul claro */
    text-decoration: none;
    font-weight: 500;
}

.info a:hover {
    color: #90e0ef;
    text-decoration: underline;
}

/* Seção Escola */
.escola {
    background-color: #1b263b;
    padding: 40px 20px;
    text-align: center;
}

.escola h2 {
    color: #00b4d8;
    border-bottom: 2px solid #00b4d8;
    display: inline-block;
    margin-bottom: 15px;
}

.escola p {
    margin: 8px 0;
    font-size: 16px;
}

/* Seção Meio */
.meio {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.meio h2 {
    color: #00b4d8;
    border-bottom: 2px solid #00b4d8;
    display: inline-block;
    margin-bottom: 15px;
}

.meio ul {
    list-style-type: "★ ";
    padding-left: 20px;
    margin-bottom: 30px;
}

.interpessoal1 {
    margin-top: 15px;
    font-style: italic;
    line-height: 1.6;
    color: #bcd4e6;
}

.interpessoal2 {
    margin-top: 15px;
    font-style: italic;
    line-height: 1.6;
    color: #bcd4e6;
}

/* Seção Final */
.final {
    background: #1b263b;
    text-align: center;
    padding: 50px 20px;
}

.final h2 {
    color: #00b4d8;
}

.final p {
    max-width: 700px;
    margin:  auto;
    line-height: 1.6;
}
