/* =========================
FORMACAO
========================= */
.educacao{
    padding: 80px 0;
    text-align: left;
    font-weight: 500;
    position: relative;
}
.educacao h2{
    font-size: 38px;
    margin-bottom: 40px;
    text-shadow: 0px 3px 0px black;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-align: left;
}
.educacao .section-head h2::after{
    content:"";
    display:block;
    width: 145px;
    height: 3px;
    background: var(--green);
    margin-top: -5px;
    border-radius: 2px;
}
.edu-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.edu-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.edu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34,197,94,.55);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.edu-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.edu-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.edu-body h3 {
    font-size: 16px;
    margin: 0;
}
.edu-link {
    font-size: 14px;
    color: var(--green);
    text-decoration: none;
}
.edu-link:hover {
    text-decoration: underline;
}
.edu-date{
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    opacity: .9;
}
.section-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 20px 0 10px;
    opacity: 0.6;
}




