.title {
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

.title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: hsl(180, 100%, 100%);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.quemsomos {
    font-size: 1.15rem;
    font-weight: 400;
    text-align: justify;
    margin: 20px auto;
    max-width: 800px;
    color: #444;
    line-height: 1.8;
    padding: 20px;
    background: #ffffffd9;
    border-left: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quemsomos:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.container {
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .container {
        max-width: 700px;
        margin: 0 auto;
    }
}
