/* Variáveis de Cores */
:root {
    --primary-color: #eec601;
    --secondary-color: #002a59;
    --light-color: #ffffff;
    --dark-color: #333;
    --bg-color: #f0f0f0;
    --font-family: 'Poppins', sans-serif;
}

/* Seção "Sobre" */
.section-sobre {
    padding: 50px 20px;
    background-color: var(--bg-color);
    color: var(--dark-color);
}

.container-sobre {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.container-sobre > h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Contêiner com imagem e texto */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

/* Estilo para a imagem */
.about-image-container {
    position: relative;
    flex: 1;
    max-width: 45%;
    padding: 20px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    transform: translateX(-20px);
    object-fit: cover;
    transform-origin: center;
}

.about-image:hover {
    transform: translateX(0) scale(1.1); /* Efeito de crescimento 3D */
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.25);
    filter: brightness(1.2); /* Aumenta o brilho da imagem */
}

/* Estilo do texto */
.about-text {
    flex: 1;
    max-width: 50%;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Estilo da lista de serviços com quadrados estilizados */
.consulting-services {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.consulting-services li {
    font-size: 1.2rem;
    color: var(--secondary-color);

    margin: 10px 0;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.consulting-services li:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.consulting-services i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image-container,
    .about-text {
        max-width: 100%;
    }

    .about-image {
        max-width: 80%;
        margin: 0 auto;
    }
}
