 .container-sobre {
    display: flex;
    justify-content: space-between;
    padding: 10px 60px;
    align-items: center;
}

.content-sobre {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
}

.content-sobre h2 {
    font-family: "Caveat", cursive;
    color: #4c8989;
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -2.5px;
    margin-bottom: 0px;
}

.content-sobre p {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.3rem;
    max-width: 90%;
    line-height: 1.6;
    color: #4c4e52;
    text-indent: 40px;
    margin-bottom: 1px;
}

.content-sobre ul {
    display: flex;
    gap: 40px;
    list-style-type: none;
    align-items: center;
    z-index: 999;
}

.content-sobre li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Noto Serif", serif;
    font-size: 1.1rem;
    color: #4c4e52;
    margin-top: 30px;
}

.content-sobre li a {
    color: #4c4e52;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-sobre li a:hover {
    text-decoration: underline;
}

.img-sobre img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
    animation: animatedShadow 4s infinite alternate ease-in-out;
}

@keyframes animatedShadow {
    0% {
        box-shadow: 0px 0px 15px 8px rgba(213, 133, 161, 0.6); 
    }
    25% {
        box-shadow: 5px 0px 20px 10px rgba(213, 133, 161, 0.8);
    }
    50% {
        box-shadow: 0px 5px 25px 12px rgba(213, 133, 161, 0.9);
    }
    75% {
        box-shadow: -5px 0px 20px 10px rgba(213, 133, 161, 0.8); 
    }
    100% {
        box-shadow: 0px 0px 15px 8px rgba(213, 133, 161, 0.6); 
    }
}

.container-significado-abayomi {
    display: flex;
    padding: 0 50px;
    align-items: center;
    margin-top: 50px;
}

.container-significado-abayomi img {
    height: 250px;
    width: 60%;
    filter: drop-shadow(0 0 30px rgba(74, 204, 240, 0.677));
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.6s;
}

.active .container-significado-abayomi img {
    transform: translateX(0);
    opacity: 1;
}

.container-significado-abayomi p {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.3rem;
    max-width: 90%;
    line-height: 1.6;
    color: #313234;
    text-indent: 20px;
    margin-bottom: -18px;
}

.div-circles {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(233, 128, 214, 0.433);
    animation: float-circles 10s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 18%;
    left: 20%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 60%;
    animation-delay: 2s;
}

.circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.circle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float-circles {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
} 

@media (max-width: 768px) {

    /* 📦 Container vira coluna */
    .container-sobre {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        position: relative;
    }

    /* 📝 Conteúdo ocupa tudo */
    .content-sobre {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    /* 🧠 Título ajustado */
    .content-sobre h2 {
        font-size: 2.5rem;
    }

    /* 📖 Texto melhor leitura */
    .content-sobre p {
        max-width: 100%;
        font-size: 1.1rem;
        text-indent: 0; /* remove aquele recuo feio no mobile */
        text-align: center;
        margin-bottom: 10px;
    }

    /* 🔗 Redes sociais organizadas */
    .content-sobre ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .content-sobre li {
        margin-top: 0;
        justify-content: center;
    }

    /* 🖼️ Imagem vai pra baixo */
    .img-sobre {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .img-sobre img {
        width: 90%;
        height: auto;
        max-height: 250px;
        border-radius: 20px;
    }

    /* ✨ Círculos decorativos mais leves ou escondidos */
    .div-circles {
        display: none; /* pode tirar se quiser manter */
    }

    .container-significado-abayomi {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    /* 🖼️ Imagem */
   container-significado-abayomi img {
        width: 70%;
        height: auto;
        margin-bottom: 10px;
    }

    .container-significado-abayomi p {
        max-width: 100%;
        font-size: 1.1rem;
        text-indent: 0; /* remove recuo feio no mobile */
        line-height: 1.6;
        padding: 0 10px;
    }
}