/* ==========================================================================
   8. ESTILOS DA PÁGINA SOBRE (sobre.html)
   ========================================================================== */

.about-section-container {
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
    gap: 25px;
}

.about-image {
    max-width: 550px; /* Usa max-width para responsividade */
    width: 100%;
    height: auto; /* Altura automática para manter proporção */
}

.about-text {
    max-width: 550px; /* Usa max-width para responsividade */
    width: 100%;
    font-size: 1rem;
}

.nav-tabs .nav-link {
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border: 2px solid #d6d3d1;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #292524;
    margin-right: 0.25rem;
}

.nav-tabs .nav-link:hover {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.nav-tabs .nav-link.active {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
    border-bottom-color: transparent;
}

.tab-content {
    background-color: #fafaf9;
    padding: 2rem;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    min-height: 400px;
}

.info-box {
    background-color: #ffeccf;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0.25rem;
    color: #292524;
}

.list-dot li::before {
    content: "• ";
    color: #f59e0b;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
