:root {
    --sangue: #8B1A1A;
    --sangue-hover: #a82626;
    --sangue-dark: #5c0f0f;
    --sangue-soft: #fdecec;
    --ink: #1d1d1f;
    --muted: #6b7280;
}

.sobre-page {
    color: var(--ink);
    font-family: 'Poppins', 'Mukta', sans-serif;
    background: #f8f9fa;
}

.sobre-page section {
    padding: 5rem 0;
}

/* HERO */
.sobre-hero {
    background:
        radial-gradient(ellipse at top left, rgba(139, 26, 26, 0.12), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(139, 26, 26, 0.08), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fdecec 100%);
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
    padding: 6rem 0 5rem;
}

.sobre-hero .eyebrow {
    display: inline-block;
    background: var(--sangue);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.sobre-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.sobre-hero h1 .accent {
    color: var(--sangue);
}

.sobre-hero p.lead {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 560px;
}

.sobre-hero .hero-art {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 40px rgba(139, 26, 26, .18));
    clip-path: inset(3% 6% 6% 3%);
}

@media (max-width: 992px) {
    .sobre-hero .hero-art {
        max-width: 360px;
        margin-top: 1.5rem;
    }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title .eyebrow {
    color: var(--sangue);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

/* VALORES */
.sobre-valores {
    background: #fff;
}

.valor-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(139, 26, 26, .25);
    border-color: rgba(139, 26, 26, .2);
}

.valor-card .valor-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sangue-soft);
    color: var(--sangue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.valor-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.valor-card p {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
}

/* SOBRE TEXT BLOCK */
.sobre-texto {
    background: #f8f9fa;
}

.sobre-texto .info-img {
    display: block;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.25);
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
    clip-path: inset(3% 6% 6% 3%);
}

.sobre-texto h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.sobre-texto p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* PERFIS */
.sobre-perfis {
    background: #fff;
}

.perfil-block {
    padding: 3rem 0;
    border-bottom: 1px dashed rgba(139, 26, 26, .15);
}

.perfil-block:last-child {
    border-bottom: 0;
}

.perfil-block .perfil-tag {
    display: inline-block;
    background: var(--sangue-soft);
    color: var(--sangue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.perfil-block h3 {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0;
}

.perfil-block p {
    color: #3f3f46;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.perfil-block p:last-child {
    margin-bottom: 0;
}

.perfil-block p strong {
    color: var(--sangue);
    font-weight: 700;
    letter-spacing: .04em;
}

.perfil-art {
    display: block;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    background: var(--sangue-soft);
    box-shadow: 0 15px 35px -10px rgba(139, 26, 26, .25);
    border: 4px solid #fff;
    outline: 1px solid rgba(139, 26, 26, .08);
}

@media (max-width: 992px) {
    .perfil-art {
        max-width: 220px;
        margin-bottom: 1rem;
    }
}

/* EQUIPE */
.sobre-equipe {
    background: #fff;
}

.membro-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.membro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -20px rgba(139, 26, 26, .3);
}

.membro-card .avatar-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--sangue) 0%, var(--sangue-dark) 100%);
}

.membro-card .avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    border: 3px solid #fff;
}

.membro-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.membro-card .cargo {
    color: var(--sangue);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .9rem;
    display: block;
}

.membro-card .bio {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.membro-card .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sangue-soft);
    color: var(--sangue);
    margin: 0 .2rem;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.membro-card .socials a:hover {
    background: var(--sangue);
    color: #fff;
}

/* CTA FINAL */
.sobre-cta {
    background: linear-gradient(135deg, var(--sangue) 0%, var(--sangue-dark) 100%);
    color: #fff;
    text-align: center;
    border-radius: 2rem;
    margin: 3rem auto 5rem;
    max-width: 1100px;
    padding: 4rem 2rem;
    box-shadow: 0 40px 80px -30px rgba(139, 26, 26, .5);
}

.sobre-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.sobre-cta p {
    opacity: .95;
    max-width: 560px;
    margin: 0 auto 2rem;
    color: #fff;
}

.sobre-cta .btn-branco {
    background: #fff;
    color: var(--sangue);
    font-weight: 600;
    padding: .8rem 2rem;
    border-radius: 999px;
    border: none;
    transition: transform .2s, box-shadow .2s;
}

.sobre-cta .btn-branco:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    color: var(--sangue-dark);
}

@media (max-width: 768px) {
    .sobre-page section { padding: 3.5rem 0; }
    .sobre-hero { padding: 4rem 0 3rem; }
    .sobre-cta { margin: 2rem 1rem 3rem; padding: 3rem 1.5rem; }
}
