/* Seção Sobre */
#sobre {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
}

/* Container do texto */
.sobreContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--text-color);
    z-index: 2;
    position: relative;
    padding-left: 50px;
}

/* Banner */
.sobreBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sobreBanner img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.6s ease;
}

/* Destaque no título */
.sobreContainer h1 {
    font-weight: 900;
    font-family: "Archivo Black", sans-serif;
}

.sobreContainer h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    margin-top: 10px;
    border-radius: 4px;
    background: var(--primary);
}

/* Texto */
.sobreContainer p,
.sobreContainer b {
    max-width: 1200px;
    line-height: 1.1;
    font-weight: 100;
}

/* Botão */
.sobreContainer button {
    align-self: flex-start;
    padding: 14px 36px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobreContainer button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Favicons animados no fundo */
.favicon-float {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("assets/img/favicon.ico") no-repeat center/contain;
    opacity: 0.15;
    animation: float 12s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-200px) rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 900px) {
    #sobre {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }

    .sobreContainer {
        align-items: center;
    }

    .sobreContainer button {
        align-self: center;
    }

    .sobreContainer h1::after {
        margin-left: auto;
        margin-right: auto;
    }
}