.nossa-historia-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 
        0 15px 40px rgba(26, 95, 122, 0.1),
        0 0 20px rgba(212, 175, 55, 0.05);
    transition: all 0.4s ease;
}

.nossa-historia-section:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(26, 95, 122, 0.15),
        0 0 30px rgba(212, 175, 55, 0.1);
}

.nossa-historia-section .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.nossa-historia-section .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.nossa-historia-section .section-divider {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(
        to right, 
        var(--primary-color), 
        var(--secondary-color)
    );
}

.nossa-historia-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .nossa-historia-section {
        padding: 20px;
    }

    .nossa-historia-section .section-header h2 {
        font-size: 2rem;
    }
}

