/* Estilos específicos para a página "Sobre Nós" */

.about-us-image-container {
    max-height: 450px;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content p {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Estilos para os cards de valores (Simplicidade, Confiança, Inovação) */
.value-card {
    border: 1px solid var(--border-color, #eee);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    background-color: var(--card-bg, #fff);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card p {
    flex-grow: 1;
}