/* Estilos para a Seção Sobre */
.sobre-section {
    position: relative;
    overflow: hidden;
}

.sobre-section .container {
    position: relative;
    z-index: 2;
}

.sobre-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('../imagens/sobre.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sobre-content {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.sobre-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sobre-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.sobre-img:hover img {
    transform: scale(1.05);
}

.sobre-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 104, 115, 0.2), rgba(0, 104, 115, 0.6));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.sobre-img:hover:before {
    opacity: 1;
}

.sobre-text {
    text-align: justify;
}

.sobre-text h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.sobre-text h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--cor-principal);
    bottom: -10px;
    left: 0;
}

.sobre-text p {
    margin-bottom: 15px;
}

.sobre-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cor-clara);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--cor-principal);
    font-size: 18px;
    flex-shrink: 0;
}

.info-text {
    flex-grow: 1;
}

.info-text h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.info-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.formacao-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.formacao-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.formacao-item:before {
    content: '\f19d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cor-principal);
}

.formacao-item h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.formacao-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 991.98px) {
    .sobre-img {
        margin-bottom: 30px;
    }
}
