/* --- SEÇÃO SOBRE --- */
#sobre {
    padding-top: 40px;
    padding-bottom: 80px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lado Esquerdo */
.sobre-text .tagline {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 2px;
}

.sobre-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--light);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 25px;
}

.description {
    font-size: 1.1rem;
    color: #A0A0A5;
    /* Corrigido para garantir contraste */
    max-width: 600px;
    line-height: 1.6;
}

/* Container de Redes Sociais e Botões */
.sobre-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.ligue-se p {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    /* CORRIGIDO: Alterado de #666 para #A0A0A5 para passar no teste de contraste do Lighthouse */
    color: #A0A0A5;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111112;
    border: 1px solid #2a2a2c;
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s ease;
    border-radius: 0;
    /* CORRIGIDO: Forçado a 0 para manter o estilo quadrado */
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.sobre-acoes {
    display: flex;
    gap: 15px;
}

.btn-acao {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary);
    transition: 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 0;
    /* CORRIGIDO: Forçado a 0 */
}

.btn-acao.main {
    background: var(--primary);
    color: #000;
}

.btn-acao.main:hover {
    background: transparent;
    color: var(--primary);
}

.btn-acao.sec {
    background: transparent;
    color: var(--light);
    border-color: #2a2a2c;
}

.btn-acao.sec:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Lado Direito */
.sobre-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.sobre-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #2a2a2c;
    transition: opacity 0.4s ease;
    border-radius: 0;
    /* CORRIGIDO: Forçado a 0 */
}

.img-pato {
    opacity: 0;
}

.img-perfil {
    opacity: 1;
}

.sobre-img:hover .img-perfil {
    opacity: 0;
}

.sobre-img:hover .img-pato {
    opacity: 1;
}

.sobre-img::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: -1;
    transition: 0.3s ease;
    border-radius: 0;
    /* CORRIGIDO: Forçado a 0 */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .sobre-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #sobre {
        padding-top: 20px;
    }

    .sobre-img {
        display: none;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .sobre-footer {
        gap: 25px;
    }

    .sobre-acoes {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-acao {
        width: 100%;
        justify-content: center;
    }
}
