.container-menor {
    padding: 0;
}

.about-section {
    /* width: 100%; */
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 20px; */
    /* margin: 20px; */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-section h2 {
    width: 100%;
    padding: 5px;
    font-size: 30px;
    background-color: red;
    color: white;
    /* border-radius: 10px; */
    text-align: center;
    margin-bottom: 10px;
}

.about-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px 0;
}

.about-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

.about-content h3 {
    font-size: 34px;
    color: #ff0000;
}

.about-content p {
    font-size: 20px;
    color: #242424;
    padding: 20px;
    line-height: 1.5;
    text-align: justify;
}

.social-icons {
    /* background-color: aqua; */
    margin-top: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.2); /* Efeito hover para aumentar o ícone */
}