/* ─────────────────────────────────────────
   0. CSS Custom Properties (Design Tokens)
───────────────────────────────────────── */
:root {
    /* Cores principais — extraídas do original */
    --gold: #F1B31C;
    --gold-dark: #A17D24;
    --gold-btn: #C5910B;
    --brown-dark: #804B12;
    --green: #335f46;
    --green-dark: #264a37;
    --green-light: #3d7254;

    /* Cores de texto */
    --text-dark: #222222;
    --text-mid: #444444;
    --text-muted: #666666;
    --text-light: #999999;

    /* Fundos */
    --bg-white: #ffffff;
    --bg-light: #f7f5f0;
    --bg-cream: #fdf8f0;
    --bg-green-pale: #eef5f1;

    /* Bordas */
    --border: #e5e0d5;
    --border-gold: rgba(161, 125, 36, .25);

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #F1B31C 0%, #A17D24 100%);
    --grad-green: linear-gradient(135deg, #335f46 0%, #264a37 100%);
    --grad-hero: linear-gradient(135deg, rgba(161, 125, 36, .85) 0%, rgba(128, 75, 18, .7) 100%);

    /* Tipografia */
    --font-primary: 'Inter', 'Roboto', sans-serif;
    --font-body: 'Roboto', 'Inter', sans-serif;

    /* Espaçamento */
    --container: 1200px;
    --gutter: clamp(16px, 4vw, 40px);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
    --shadow-gold: 0 8px 24px rgba(161, 125, 36, .25);

    /* Raios */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transições */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --trans-fast: .15s var(--ease);
    --trans-mid: .3s var(--ease);
    --trans-slow: .5s var(--ease);

    /* Header */
    --topbar-h: 36px;
    --header-h: 72px;
    --header-height: calc(var(--topbar-h) + var(--header-h));
    /* 108px — estado inicial (topo) */

    /* Padding-top padrão para heroes de páginas internas (sobre, galeria, denuncia…) */
    /* = header fixo (108px) + espaço de respiração (52px) = 160px */
    --hero-top: calc(var(--header-height) + 52px);

    /* Padding-top para heroes com onda/wave no fundo (precisam de mais espaço) */
    --hero-top-wave: calc(var(--header-height) + 60px);
}

/* ═══════════════════════════════════════════════
     HERO DA PÁGINA SOBRE
  ═══════════════════════════════════════════════ */
.sob-hero {
    background: linear-gradient(150deg, #1a3a28 0%, var(--green-dark) 55%, #1e3028 100%);
    position: relative;
    overflow: hidden;
    padding: 168px 0 100px;
    /* topbar(36) + header(72) + respiro(60) */
}

/* Padrão de pontos */
.sob-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(241, 179, 28, .065) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Arco dourado canto direito */
.sob-hero::after {
    content: '';
    position: absolute;
    bottom: -110px;
    right: -110px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 90px solid rgba(241, 179, 28, .055);
    pointer-events: none;
}

.sob-hero-deco {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, .03);
    pointer-events: none;
}

/* Linha accent dourada esquerda */
.sob-hero-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: .5;
}

.sob-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

/* Breadcrumb */
.sob-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 18px;
}

.sob-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.sob-breadcrumb a:hover {
    color: var(--gold);
}

.sob-breadcrumb i {
    font-size: 9px;
}

/* Badge */
.sob-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 179, 28, .15);
    border: 1px solid rgba(241, 179, 28, .3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sob-hero-badge i {
    font-size: 10px;
}

.sob-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.sob-hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.sob-hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: .4;
}

.sob-hero p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.72;
    max-width: 520px;
    margin-bottom: 28px;
}

/* Stat chips no hero */
.sob-hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sob-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    backdrop-filter: blur(4px);
    transition: background .2s;
}

.sob-chip:hover {
    background: rgba(255, 255, 255, .14);
}

.sob-chip i {
    color: var(--gold);
    font-size: 11px;
}

/* Painel decorativo direita */
.sob-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.sob-hero-icon-box {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease;
}

.sob-hero-icon-box:hover {
    transform: translateY(-4px);
}

.sob-hero-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(241, 179, 28, .14), transparent 70%);
}

.sob-hero-icon-box i {
    font-size: 62px;
    color: rgba(241, 179, 28, .8);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 16px rgba(241, 179, 28, .3));
}

.sob-hero-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sob-hero-mini-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
}

.sob-hero-mini-card strong {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 3px;
}

.sob-hero-mini-card span {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    line-height: 1.3;
}

/* Wave */
.sob-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — QUEM SOMOS
  ═══════════════════════════════════════════════ */
.sob-quem-somos {
    padding: 96px 0 100px;
    background: #fff;
}

.sob-qs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Coluna visual */
.sob-qs-visual {
    position: relative;
}

.sob-qs-img-frame {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
}

.sob-qs-img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.sob-qs-img-frame:hover img {
    transform: scale(1.04);
}

/* Overlay gradiente na imagem */
.sob-qs-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(38, 74, 55, .65) 0%, transparent 55%);
    pointer-events: none;
}

/* Badge flutuante fundação */
.sob-founded-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--grad-gold);
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(161, 125, 36, .45);
    text-align: center;
    z-index: 2;
}

.sob-founded-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.sob-founded-badge span {
    font-size: 11px;
    font-weight: 700;
    opacity: .88;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Decoração dourada atrás da imagem */
.sob-qs-deco-ring {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid rgba(241, 179, 28, .25);
    pointer-events: none;
}

/* Coluna de texto */
.sob-qs-text {
    padding-right: 8px;
}

.sob-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.sob-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    flex-shrink: 0;
}

.sob-qs-text h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -.6px;
    margin-bottom: 6px;
}

.sob-qs-text h2 span {
    color: var(--green);
}

.sob-qs-text .sob-meaning {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(51, 95, 70, .07);
    border: 1px solid rgba(51, 95, 70, .18);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 8px;
}

.sob-qs-text .sob-meaning i {
    font-size: 11px;
    color: var(--gold-dark);
}

.sob-qs-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 18px;
}

.sob-qs-text p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Pilares em chips verdes */
.sob-pilares {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
}

.sob-pilar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sob-pilar-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.sob-pilar-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.sob-pilar-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats bar */
.sob-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 0;
}

.sob-stat {
    padding: 16px 14px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.sob-stat:last-child {
    border-right: none;
}

.sob-stat:hover {
    background: #fff;
}

.sob-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -.5px;
}

.sob-stat-lbl {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.3;
    display: block;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — MISSÃO & VISÃO (bento cards)
  ═══════════════════════════════════════════════ */
.sob-mv-section {
    padding: 0 0 96px;
    background: #fff;
}

.sob-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.sob-mv-card {
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sob-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

/* Missão — verde escuro */
.sob-mv-card.missao {
    background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
    grid-column: span 2;
}

.sob-mv-card.missao::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 30px solid rgba(241, 179, 28, .1);
}

/* Visão — ouro */
.sob-mv-card.visao {
    background: linear-gradient(145deg, var(--gold-dark) 0%, #8b6820 100%);
}

/* Card decorativo icon */
.sob-mv-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sob-mv-card-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sob-mv-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.sob-mv-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — VALORES
  ═══════════════════════════════════════════════ */
.sob-valores {
    padding: 96px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Padrão de fundo sutil */
.sob-valores::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(51, 95, 70, .04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.sob-valores-inner {
    position: relative;
    z-index: 1;
}

.sob-valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.sob-valor-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

/* Número grande decorativo */
.sob-valor-card::before {
    content: attr(data-num);
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(51, 95, 70, .045);
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -3px;
}

.sob-valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    border-color: transparent;
}

/* Linha dourada ao hover */
.sob-valor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.sob-valor-card:hover::after {
    transform: scaleX(1);
}

.sob-valor-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: transform .25s;
    position: relative;
    z-index: 1;
}

.sob-valor-card:hover .sob-valor-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* Paleta de ícones por valor */
.vi-green {
    background: rgba(51, 95, 70, .1);
    color: var(--green);
}

.vi-gold {
    background: rgba(161, 125, 36, .1);
    color: var(--gold-dark);
}

.vi-blue {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
}

.vi-purple {
    background: rgba(139, 92, 246, .1);
    color: #8b5cf6;
}

.vi-red {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.vi-teal {
    background: rgba(20, 184, 166, .1);
    color: #14b8a6;
}

.sob-valor-card h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sob-valor-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — HISTÓRIA / TIMELINE
  ═══════════════════════════════════════════════ */
.sob-historia {
    padding: 100px 0;
    background: linear-gradient(150deg, #1e3028 0%, var(--green-dark) 50%, #1a3a28 100%);
    position: relative;
    overflow: hidden;
}

.sob-historia::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(241, 179, 28, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.sob-historia-deco {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 70px solid rgba(241, 179, 28, .05);
    pointer-events: none;
}

.sob-historia-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.sob-historia-left {
    position: sticky;
    top: 140px;
}

.sob-historia-left .sob-eyebrow {
    color: var(--gold);
}

.sob-historia-left .sob-eyebrow::before {
    background: var(--gold);
}

.sob-historia-left h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.sob-historia-left h2 em {
    font-style: normal;
    color: var(--gold);
}

.sob-historia-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sob-historia-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 179, 28, .15);
    border: 1px solid rgba(241, 179, 28, .3);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s;
}

.sob-historia-cta:hover {
    background: rgba(241, 179, 28, .25);
}

/* Timeline */
.sob-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 8px;
}

.sob-tl-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding-bottom: 44px;
    position: relative;
}

/* Linha vertical */
.sob-tl-item::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(241, 179, 28, .4), rgba(255, 255, 255, .08));
}

.sob-tl-item:last-child::after {
    display: none;
}

.sob-tl-item:last-child {
    padding-bottom: 0;
}

/* Dot */
.sob-tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(241, 179, 28, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.sob-tl-dot i {
    font-size: 18px;
    color: rgba(241, 179, 28, .7);
    transition: color .3s;
}

.sob-tl-item.featured .sob-tl-dot {
    background: var(--grad-gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(241, 179, 28, .15), 0 0 0 12px rgba(241, 179, 28, .06);
}

.sob-tl-item.featured .sob-tl-dot i {
    color: #fff;
}

/* Conteúdo */
.sob-tl-content {
    padding-top: 10px;
}

.sob-tl-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(241, 179, 28, .12);
    border: 1px solid rgba(241, 179, 28, .25);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sob-tl-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sob-tl-content p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — LIDERANÇA
  ═══════════════════════════════════════════════ */
.sob-lideranca {
    padding: 96px 0;
    background: #fff;
}

.sob-lideranca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.sob-lider-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    text-align: center;
}

.sob-lider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    border-color: rgba(241, 179, 28, .3);
}

.sob-lider-photo-wrap {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    overflow: hidden;
}

.sob-lider-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .9;
    transition: transform .5s ease, opacity .3s;
}

.sob-lider-card:hover .sob-lider-photo-wrap img {
    transform: scale(1.05);
    opacity: 1;
}

/* Fallback avatar para quando não há foto */
.sob-lider-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255, 255, 255, .3);
}

/* Badge de cargo */
.sob-lider-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(161, 125, 36, .4);
}

.sob-lider-body {
    padding: 22px 20px 24px;
}

.sob-lider-body h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sob-lider-cargo {
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 12px;
}

.sob-lider-company {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 14px;
}

.sob-lider-company i {
    font-size: 10px;
    color: var(--gold-dark);
}

.sob-lider-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sob-lider-social a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(51, 95, 70, .08);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.sob-lider-social a:hover {
    background: var(--green);
    color: #fff;
}

/* ═══════════════════════════════════════════════
     SECÇÃO — PARCEIROS
  ═══════════════════════════════════════════════ */
.sob-parceiros {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.sob-parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.sob-parceiro-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all .3s ease;
    text-decoration: none;
    cursor: default;
}

.sob-parceiro-card:hover {
    border-color: rgba(241, 179, 28, .4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
}

.sob-parceiro-logo-wrap {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sob-parceiro-logo-wrap img {
    max-height: 52px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .5;
    transition: all .35s;
}

.sob-parceiro-card:hover .sob-parceiro-logo-wrap img {
    filter: none;
    opacity: 1;
}

.sob-parceiro-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    transition: color .2s;
}

.sob-parceiro-card:hover .sob-parceiro-name {
    color: var(--text-dark);
}

/* Quote strip */
.sob-quote-strip {
    background: var(--green-dark);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.sob-quote-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(241, 179, 28, .045) 1px, transparent 1px);
    background-size: 24px 24px;
}

.sob-quote-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sob-quote-icon {
    font-size: 48px;
    color: rgba(241, 179, 28, .35);
    margin-bottom: 20px;
    display: block;
}

.sob-quote-text {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -.3px;
    margin-bottom: 20px;
}

.sob-quote-text em {
    font-style: normal;
    color: var(--gold);
}

.sob-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sob-quote-author-line {
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    opacity: .5;
}

.sob-quote-author span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
}

/* ═══════════════════════════════════════════════
     SECTION HEADER UTILITÁRIO
  ═══════════════════════════════════════════════ */
.sob-section-header {
    text-align: center;
    margin-bottom: 0;
}

.sob-section-header h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.sob-section-header h2 span {
    color: var(--green);
}

.sob-section-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 560px;
    margin: 0 auto;
}

.sob-section-header.light h2 {
    color: #fff;
}

.sob-section-header.light p {
    color: rgba(255, 255, 255, .65);
}

/* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sob-lideranca-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sob-parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sob-hero {
        padding: 108px 0 100px;
    }

    /* header(64) + respiro(44) */
    .sob-mv-grid {
        grid-template-columns: 1fr;
    }

    .sob-mv-card.missao {
        grid-column: span 1;
    }

    .sob-historia-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sob-historia-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .sob-hero {
        padding: 96px 0 80px;
    }

    /* header(64) + respiro(32) */
    .sob-hero-inner {
        grid-template-columns: 1fr;
    }

    .sob-hero-panel {
        display: none;
    }

    .sob-qs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sob-qs-img-frame img {
        height: 320px;
    }

    .sob-qs-deco-ring {
        display: none;
    }

    .sob-valores-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sob-lideranca-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .sob-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .sob-stats-bar .sob-stat:nth-child(2) {
        border-right: none;
    }

    .sob-stats-bar .sob-stat:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .sob-stats-bar .sob-stat:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none;
    }
}

@media (max-width: 540px) {
    .sob-hero {
        padding: 88px 0 64px;
    }

    /* header(64) + respiro(24) */
    .sob-valores-grid {
        grid-template-columns: 1fr;
    }

    .sob-parceiros-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sob-hero-chips {
        gap: 6px;
    }

    .sob-chip {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .sob-qs-text {
        padding-right: 0;
    }

    .sob-mv-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
     DESTAQUE PAGE — ESTILOS COMPLETOS
  ══════════════════════════════════════════════════ */

/* ── Hero Destaque do Mês ── */
.hero-destaque {
    background: var(--green);
    position: relative;
    overflow: hidden;
    padding: 160px 0 0;
    /* topbar(36) + header(72) + respiro(52) */
}

.hero-destaque::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg-banner.png') center / cover no-repeat;
    opacity: .07;
    pointer-events: none;
}

/* Bolhas decorativas */
.hero-destaque::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 179, 28, .15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-destaque-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 0;
    align-items: end;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Conteúdo esquerdo */
.hero-destaque-content {
    padding: 48px 0 56px;
}

.hero-destaque-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 179, 28, .18);
    border: 1px solid rgba(241, 179, 28, .35);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-destaque-content h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.hero-destaque-content h1 span {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-destaque-cargo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-destaque-cargo .empresa-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.hero-destaque-cargo .empresa-chip img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
}

.hero-destaque-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-destaque-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-ver-perfil-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--grad-gold);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(161, 125, 36, .4);
    transition: all var(--trans-mid);
    cursor: pointer;
    border: none;
}

.btn-ver-perfil-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(161, 125, 36, .5);
}

.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--trans-fast);
    padding: 0;
}

.btn-scroll-down:hover {
    color: var(--gold);
}

/* Stats no hero */
.hero-destaque-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

/* Foto do destaque (direita) */
.hero-destaque-foto {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding-top: 24px;
}

.hero-destaque-foto-wrap {
    position: relative;
    width: 360px;
}

.hero-destaque-foto img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 -8px 40px rgba(0, 0, 0, .35));
    position: relative;
    z-index: 1;
}

/* Anel decorativo atrás da foto */
.hero-foto-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(241, 179, 28, .08);
    border: 1px solid rgba(241, 179, 28, .15);
    z-index: 0;
}

/* Badge flutuante */
.hero-destaque-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Breadcrumb integrado no hero */
.hero-breadcrumb {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-breadcrumb .container {
    display: flex;
    align-items: center;
    height: 44px;
}

.hero-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: color var(--trans-fast);
}

.hero-breadcrumb a:hover {
    color: var(--gold);
}

.hero-breadcrumb .sep {
    opacity: .35;
}

/* ── SECÇÃO PRINCIPAL DE PERFIS ── */
.destaque-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

/* Toolbar: pesquisa + filtros + contador + ordenação */
.destaque-toolbar {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toolbar-row-top {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Campo de pesquisa melhorado */
.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 240px;
    max-width: 400px;
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.search-field:focus-within {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(161, 125, 36, .1);
    background: #fff;
}

.search-field i {
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

.search-field input {
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    color: var(--text-dark);
    width: 100%;
    font-family: var(--font-primary);
}

.search-field input::placeholder {
    color: var(--text-light);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 13px;
    padding: 2px;
    border-radius: 50%;
    display: none;
    transition: color var(--trans-fast);
}

.search-clear:hover {
    color: var(--text-dark);
}

.search-clear.visible {
    display: block;
}

/* Ordenação */
.sort-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-left: auto;
}

.sort-select label {
    font-weight: 600;
    white-space: nowrap;
}

.sort-select select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color var(--trans-fast);
}

.sort-select select:focus {
    border-color: var(--gold-dark);
}

/* Filtros por empresa */
.toolbar-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label-txt {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-mid);
    cursor: pointer;
    transition: all var(--trans-fast);
    white-space: nowrap;
}

.chip:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.chip.active {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
}

.chip img {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .6;
    transition: filter var(--trans-fast), opacity var(--trans-fast);
}

.chip.active img {
    filter: brightness(0) invert(1);
    opacity: .9;
}

/* Contador de resultados */
.results-count {
    font-size: 12.5px;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.results-count strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ── GRID DE CARDS ── */
.perfis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── CARD UNIFORME ── */
.perfil-card-v2 {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans-mid), box-shadow var(--trans-mid), border-color var(--trans-mid);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.perfil-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(161, 125, 36, .3);
}

/* Foto + overlay de hover */
.card-foto-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-light);
    flex-shrink: 0;
}

.card-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--trans-slow);
    display: block;
}

.perfil-card-v2:hover .card-foto-wrap img {
    transform: scale(1.07);
}

/* Overlay gradiente que aparece no hover */
.card-foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(51, 95, 70, .92) 0%,
            rgba(51, 95, 70, .4) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity var(--trans-mid);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.perfil-card-v2:hover .card-foto-overlay {
    opacity: 1;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px;
    background: var(--gold);
    color: #222;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background var(--trans-fast);
    letter-spacing: .2px;
}

.overlay-btn:hover {
    background: #fff;
}

.overlay-social {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.overlay-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    transition: all var(--trans-fast);
}

.overlay-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #222;
}

/* Badge de cargo no canto superior */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    backdrop-filter: blur(8px);
}

.card-badge.presidente {
    background: rgba(241, 179, 28, .9);
    color: #5a3a00;
}

.card-badge.vice {
    background: rgba(51, 95, 70, .9);
    color: #fff;
}

.card-badge.membro {
    background: rgba(255, 255, 255, .85);
    color: var(--text-mid);
}

/* Body do card */
.card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card-nome {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -.3px;
}

.card-cargo-linha {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.card-cargo-linha i {
    color: var(--gold-dark);
    font-size: 11px;
}

/* Chip de empresa */
.card-empresa-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.card-empresa-chip img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.card-empresa-chip span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-mid);
}

/* Separador */
.card-divider {
    height: 1px;
    background: var(--border);
    margin: 2px 0;
}

/* Botão ver perfil no card */
.card-ver-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all var(--trans-fast);
    width: 100%;
    text-align: left;
}

.card-ver-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
}

.card-ver-btn i {
    transition: transform var(--trans-fast);
}

.card-ver-btn:hover i {
    transform: translateX(4px);
}

/* Estado vazio (sem resultados) */
.no-results {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
}

.no-results.visible {
    display: block;
}

.no-results i {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: block;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════
     MODAL "VER PERFIL" — REDESENHO COMPLETO
     Layout split: painel esquerdo fixo | painel direito com tabs
  ══════════════════════════════════════════════════ */

/* ── Overlay ── */
.perfil-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 10, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.perfil-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ── Setas laterais de navegação (fora do modal) ── */
.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.modal-arrow:hover:not(:disabled) {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-50%) scale(1.08);
}

.modal-arrow:disabled {
    opacity: .2;
    cursor: default;
}

.modal-arrow-left {
    left: -72px;
}

.modal-arrow-right {
    right: -72px;
}

/* ── Contentor do modal ── */
.perfil-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    transform: translateY(32px) scale(.96);
    transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .06);
}

.perfil-modal-overlay.open .perfil-modal {
    transform: translateY(0) scale(1);
}

/* ══ PAINEL ESQUERDO (fixo, verde) ══ */
.modal-panel-left {
    width: 300px;
    flex-shrink: 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Foto da pessoa como background desfocado */
.modal-left-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    opacity: .22;
    filter: blur(16px) saturate(1.3);
    transform: scale(1.15);
    z-index: 0;
    transition: background-image .4s ease;
}

/* Gradiente verde por cima */
.modal-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(51, 95, 70, .55) 0%,
            rgba(38, 74, 55, .88) 55%,
            rgba(30, 58, 44, 1) 100%);
    z-index: 1;
}

/* Padrão decorativo */
.modal-left-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 10%, rgba(241, 179, 28, .12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 179, 28, .08) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

/* Conteúdo do painel esquerdo */
.modal-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 32px;
    flex: 1;
    text-align: center;
}

/* Avatar grande */
.modal-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 3px solid rgba(241, 179, 28, .6);
    box-shadow: 0 0 0 6px rgba(241, 179, 28, .12), 0 12px 32px rgba(0, 0, 0, .35);
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: box-shadow .25s ease;
}

.modal-avatar:hover {
    box-shadow: 0 0 0 8px rgba(241, 179, 28, .22), 0 16px 40px rgba(0, 0, 0, .4);
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Nome e cargo no painel esq */
.modal-left-nome {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.4px;
    line-height: 1.15;
    margin-bottom: 6px;
}

.modal-left-cargo {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 16px;
}

/* Chip empresa no painel esq */
.modal-left-empresa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.modal-left-empresa img {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
}

/* Tags no painel esq */
.modal-left-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
}

.modal-left-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2px;
}

.modal-left-tag.gold {
    background: rgba(241, 179, 28, .2);
    color: var(--gold);
    border: 1px solid rgba(241, 179, 28, .35);
}

.modal-left-tag.green {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .2);
}

.modal-left-tag.blue {
    background: rgba(147, 197, 253, .12);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, .25);
}

/* Divisor no painel esq */
.modal-left-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin-bottom: 20px;
}

/* Info rápida no painel esq */
.modal-left-infos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.modal-left-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.modal-left-info-row .mli-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(241, 179, 28, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-left-info-row .mli-text {
    flex: 1;
}

.modal-left-info-row .mli-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 1px;
}

.modal-left-info-row .mli-value {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    line-height: 1.3;
}

/* Redes sociais no painel esq */
.modal-left-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    padding-top: 16px;
}

.modal-left-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    transition: all .2s ease;
}

.modal-left-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

/* Botão fechar no painel esq */
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    cursor: pointer;
    transition: all .2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
    transform: rotate(90deg);
}

/* ══ PAINEL DIREITO (scroll) ══ */
.modal-panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

/* ── Tab bar ── */
.modal-tabs-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 0 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.modal-tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 4px;
    margin-right: 28px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: color .18s ease, border-color .18s ease;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.modal-tab-btn i {
    font-size: 12px;
}

.modal-tab-btn:hover {
    color: var(--text-dark);
}

.modal-tab-btn.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}

/* ── Conteúdo das tabs ── */
.modal-tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.modal-tab-content::-webkit-scrollbar {
    width: 5px;
}

.modal-tab-content::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.modal-tab-panel {
    display: none;
}

.modal-tab-panel.active {
    display: block;
}

/* ── Separador de secção ── */
.modal-section-title {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section-title .mst-icon {
    width: 24px;
    height: 24px;
    background: var(--grad-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
}

.modal-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── TAB 1: SOBRE ── */
/* Indicador de experiência */
.modal-exp-bar-wrap {
    margin-bottom: 28px;
}

.modal-exp-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.modal-exp-label span:first-child {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.modal-exp-label span:last-child {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold-dark);
}

.modal-exp-track {
    height: 7px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.modal-exp-fill {
    height: 100%;
    background: var(--grad-gold);
    border-radius: 4px;
    width: 0;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Biografia */
.modal-bio-txt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 28px;
}

.modal-bio-txt p {
    margin-bottom: 12px;
}

.modal-bio-txt p:last-child {
    margin-bottom: 0;
}

/* Grid de info rápida (tab Sobre) */
.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: border-color .18s ease;
}

.modal-info-item:hover {
    border-color: rgba(161, 125, 36, .3);
}

.modal-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(161, 125, 36, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 12px;
    flex-shrink: 0;
}

.modal-info-text {
    flex: 1;
    min-width: 0;
}

.modal-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}

.modal-info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-info-value img {
    height: 16px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── TAB 2: CARREIRA (timeline) ── */
.modal-timeline {
    position: relative;
    padding-left: 24px;
}

/* linha vertical */
.modal-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--gold) 0%,
            rgba(161, 125, 36, .3) 80%,
            transparent 100%);
    border-radius: 2px;
}

.modal-tl-item {
    position: relative;
    padding: 0 0 28px 28px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .35s ease, transform .35s ease;
}

.modal-tl-item.tl-visible {
    opacity: 1;
    transform: translateX(0);
}

.modal-tl-item:last-child {
    padding-bottom: 0;
}

/* Dot da timeline */
.modal-tl-dot {
    position: absolute;
    left: -24px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold-dark);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(161, 125, 36, .2);
}

.modal-tl-dot.first {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Conteúdo de cada item */
.modal-tl-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.modal-tl-card:hover {
    border-color: rgba(161, 125, 36, .35);
    box-shadow: 0 4px 16px rgba(161, 125, 36, .08);
}

.modal-tl-year {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-tl-year::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.modal-tl-titulo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.modal-tl-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── TAB 3: CONQUISTAS ── */
.modal-conquistas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.conquista-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all .2s ease;
    cursor: default;
}

.conquista-card:hover {
    border-color: var(--gold-dark);
    background: rgba(161, 125, 36, .04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(161, 125, 36, .1);
}

.conquista-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(161, 125, 36, .25);
}

.conquista-card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ── FOOTER do modal ── */
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 32px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-footer-counter {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-footer-counter strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Dots de navegação */
.modal-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.modal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: all .2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.modal-dot.active {
    background: var(--gold-dark);
    width: 18px;
    border-radius: 3px;
}

/* Botão Junte-se */
.modal-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--grad-gold);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    text-decoration: none;
    font-family: var(--font-primary);
}

.modal-footer-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(161, 125, 36, .35);
}

/* Botões outline (prev/next inline do footer) */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-mid);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s ease;
    font-family: var(--font-primary);
}

.btn-outline-dark:hover:not(:disabled) {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.btn-outline-dark:disabled {
    opacity: .3;
    cursor: default;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 12px;
}

/* ── Swipe hint mobile ── */
.modal-swipe-hint {
    display: none;
}

/* ── Tags para hero (fora do modal) ── */
.perfil-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: .3px;
}

.perfil-tag.gold {
    background: rgba(241, 179, 28, .2);
    border: 1px solid rgba(241, 179, 28, .4);
    color: var(--gold);
}

.perfil-tag.green {
    background: rgba(51, 95, 70, .2);
    border: 1px solid rgba(51, 95, 70, .4);
    color: #a7f3c9;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .modal-arrow {
        display: none;
    }

    .perfil-modal {
        max-width: 100%;
    }

    .modal-panel-left {
        width: 240px;
    }

    .modal-left-nome {
        font-size: 17px;
    }

    .modal-tabs-bar {
        padding: 0 20px;
    }

    .modal-tab-content {
        padding: 24px 20px;
    }

    .modal-footer {
        padding: 12px 20px;
    }

    .modal-conquistas-grid {
        grid-template-columns: 1fr;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .perfil-modal {
        flex-direction: column;
        max-height: 95vh;
    }

    .modal-panel-left {
        width: 100%;
        padding: 0;
    }

    .modal-left-content {
        flex-direction: row;
        align-items: center;
        padding: 20px;
        text-align: left;
        gap: 16px;
    }

    .modal-avatar {
        width: 72px;
        height: 72px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .modal-left-middle {
        flex: 1;
        min-width: 0;
    }

    .modal-left-nome {
        font-size: 16px;
    }

    .modal-left-cargo {
        margin-bottom: 6px;
    }

    .modal-left-empresa {
        margin-bottom: 0;
    }

    .modal-left-tags,
    .modal-left-divider,
    .modal-left-infos,
    .modal-left-social {
        display: none;
    }

    .modal-tabs-bar {
        padding: 0 16px;
        overflow-x: auto;
    }

    .modal-tab-btn {
        margin-right: 18px;
        font-size: 12px;
    }

    .modal-tab-content {
        padding: 20px 16px;
    }

    .modal-footer {
        padding: 10px 16px;
    }

    .modal-footer-cta span {
        display: none;
    }

    .modal-conquistas-grid {
        grid-template-columns: 1fr;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Redes sociais na tab conquistas */
.modal-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-mid);
    font-size: 13px;
    font-weight: 600;
    transition: all .18s ease;
    text-decoration: none;
    background: #fff;
}

.modal-social-link:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: rgba(161, 125, 36, .04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(161, 125, 36, .1);
}

.modal-social-link i {
    font-size: 14px;
}

/* ── Quote band ── */
.destaque-quote-band {
    background: var(--green);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.destaque-quote-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg-banner.png') center / cover no-repeat;
    opacity: .05;
}

.destaque-quote {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.destaque-quote-icon {
    font-size: 32px;
    color: var(--gold);
    opacity: .6;
    margin-bottom: 20px;
    display: block;
}

.destaque-quote p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: #fff;
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 24px;
    letter-spacing: -.2px;
}

.destaque-quote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.destaque-quote cite {
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    font-style: normal;
    letter-spacing: .3px;
}

.destaque-quote footer span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

/* Focus ring acessível nas cards */
.perfil-card-v2:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(241, 179, 28, .18), var(--shadow-md);
}

/* Animação staggered de entrada — gerida via JS IntersectionObserver */

/* Dots indicador de posição no modal */
.modal-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 12px 0 0;
}

.modal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--trans-fast);
    cursor: pointer;
    border: none;
    padding: 0;
}

.modal-dot.active {
    background: var(--gold-dark);
    width: 20px;
    border-radius: 3px;
}

/* Indicador de swipe no mobile */
@media (max-width: 640px) {
    .modal-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 11px;
        color: var(--text-light);
        padding: 8px 0 0;
    }
}

.modal-swipe-hint {
    display: none;
}

/* Melhorar secção hero com wave divider */
.hero-destaque-wave {
    display: block;
    width: 100%;
    height: 48px;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
    margin-top: -2px;
}

.hero-destaque-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Chip hover com logo colorida */
.chip:hover img {
    filter: none;
    opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .perfis-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-destaque-foto-wrap {
        width: 300px;
    }
}

@media (max-width: 900px) {
    .hero-destaque {
        padding: 108px 0 0;
    }

    /* header(64) + respiro(44) */
}

@media (max-width: 768px) {
    .hero-destaque {
        padding: 96px 0 0;
    }

    /* header(64) + respiro(32) */
    .hero-destaque-inner {
        grid-template-columns: 1fr;
    }

    .hero-destaque-foto {
        display: none;
    }

    .hero-destaque-content {
        padding: 36px 0 40px;
    }

    .hero-destaque-stats {
        gap: 20px;
    }

    .perfis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .toolbar-row-top {
        flex-direction: column;
        align-items: stretch;
    }

    .search-field {
        max-width: 100%;
    }

    .sort-select {
        margin-left: 0;
        justify-content: space-between;
    }

    .modal-tab-content {
        padding: 20px;
    }

    .modal-footer {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .perfis-grid {
        grid-template-columns: 1fr;
    }

    .filter-chips {
        gap: 6px;
    }

    .card-foto-wrap {
        aspect-ratio: 4 / 3;
    }
}

/* ═══════════════════════════════════════════════
     HERO DA GALERIA
  ═══════════════════════════════════════════════ */
.gal-hero {
    background: linear-gradient(150deg, #0f2318 0%, var(--green-dark) 45%, #1a3a28 75%, #1e2d26 100%);
    position: relative;
    overflow: hidden;
    padding: 168px 0 100px;
    /* topbar(36) + header(72) + respiro(60) */
}

.gal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(241, 179, 28, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.gal-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 90px solid rgba(241, 179, 28, .06);
    pointer-events: none;
}

/* Glow central hero */
.gal-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(51, 95, 70, .25) 0%, transparent 70%);
    pointer-events: none;
}

.gal-hero-deco {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, .03);
    pointer-events: none;
}

.gal-hero-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: .5;
}

.gal-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 56px;
}

.gal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px;
}

.gal-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.gal-breadcrumb a:hover {
    color: var(--gold);
}

.gal-breadcrumb i {
    font-size: 9px;
}

.gal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 179, 28, .15);
    border: 1px solid rgba(241, 179, 28, .3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gal-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.gal-hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.gal-hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: .4;
}

.gal-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

/* Stat chips hero */
.gal-hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gal-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50px;
    padding: 8px 16px;
    backdrop-filter: blur(4px);
}

.gal-stat-chip strong {
    font-size: 15px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.gal-stat-chip span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

/* Painel decorativo direita — PREMIUM */
.gal-hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 260px;
    flex-shrink: 0;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .5));
}

/* Badge "Arquivo" flutuante no painel */
.gal-hero-panel-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #1a2e20;
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(241, 179, 28, .4);
    z-index: 10;
    letter-spacing: .04em;
}

.gal-hero-thumb {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    border: 1.5px solid rgba(255, 255, 255, .08);
}

.gal-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transition: transform .4s ease;
}

.gal-hero-thumb:hover img {
    transform: scale(1.08);
}

.gal-hero-thumb:first-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
    border-radius: 14px 14px 8px 8px;
    position: relative;
}

.gal-hero-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 35, 24, .7) 0%, rgba(0, 0, 0, .15) 60%, transparent 100%);
}

/* Contador de fotos no painel */
.gal-hero-panel-count {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.gal-hero-panel-count i {
    color: var(--gold);
    font-size: 10px;
}

/* Wave */
.gal-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
     GALERIA MAIN — LAYOUT GERAL
  ═══════════════════════════════════════════════ */
.gal-main {
    padding: 48px 0 80px;
    background: var(--bg-light);
    min-height: 60vh;
}

/* ── Tabs wrap + label ── */
.gal-tabs-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.gal-tabs-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
}

/* ── Tabs principais ── */
.gal-tabs-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06), 0 0 0 1px var(--border);
}

.gal-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all .22s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.gal-tab-btn i {
    font-size: 13px;
}

.gal-tab-btn .gal-tab-count {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 10.5px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
    transition: all .22s;
}

.gal-tab-btn:hover {
    color: var(--text-dark);
}

.gal-tab-btn.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(51, 95, 70, .3);
}

.gal-tab-btn.active .gal-tab-count {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

/* Tab Vídeos — badge "Em Breve" */
.gal-tab-btn .gal-tab-soon {
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #dc2626;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Tab panels */
.gal-tab-panel {
    display: none;
}

.gal-tab-panel.active {
    display: block;
    animation: tabFadeIn .25s ease-out;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Toolbar de fotos ── */
.gal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.gal-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Filtros de categoria */
.gal-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1.5px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.gal-filter-btn .gal-filter-count {
    font-size: 10px;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0 5px;
    min-width: 16px;
    text-align: center;
    color: var(--text-muted);
    transition: all .2s;
}

.gal-filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.gal-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.gal-filter-btn.active .gal-filter-count {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

/* Contador de itens */
.gal-counter {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.gal-counter strong {
    color: var(--text-dark);
}

/* View toggle */
.gal-view-toggle {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
}

.gal-view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all .18s;
}

.gal-view-btn.active,
.gal-view-btn:hover {
    background: var(--green);
    color: #fff;
}

/* ── GRID MASONRY ── */
.gal-masonry {
    columns: 4;
    column-gap: 14px;
}

.gal-masonry.cols-3 {
    columns: 3;
}

.gal-masonry.cols-2 {
    columns: 2;
}

.gal-photo-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: block;
    transition: box-shadow .35s ease, transform .35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.gal-photo-item:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    transform: translateY(-2px);
}

.gal-photo-item.hidden {
    display: none;
}

.gal-photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    border-radius: 16px;
}

.gal-photo-item:hover img {
    transform: scale(1.05);
}

/* Overlay sobre cada foto */
.gal-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 16, .9) 0%, rgba(0, 0, 0, .15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.gal-photo-item:hover .gal-photo-overlay {
    opacity: 1;
}

/* Botão expand centrado */
.gal-photo-expand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.65);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(241, 179, 28, .2);
    border: 2px solid rgba(241, 179, 28, .6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
    opacity: 0;
    transition: all .28s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 0 0 8px rgba(241, 179, 28, .08);
}

.gal-photo-item:hover .gal-photo-expand {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Número de foto (canto superior direito ao hover) */
.gal-photo-num {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, .85);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    opacity: 0;
    transition: opacity .25s ease;
    letter-spacing: .04em;
}

.gal-photo-item:hover .gal-photo-num {
    opacity: 1;
}

/* Info no rodapé do overlay */
.gal-photo-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.gal-photo-caption {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.gal-photo-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-assembleia {
    background: rgba(241, 179, 28, .22);
    color: var(--gold);
    border: 1px solid rgba(241, 179, 28, .45);
}

.cat-eventos {
    background: rgba(51, 95, 70, .35);
    color: #6ee7b7;
    border: 1px solid rgba(110, 231, 183, .35);
}

.cat-formacao {
    background: rgba(59, 130, 246, .22);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, .35);
}

/* Vista lista */
.gal-masonry.list-view {
    columns: 1;
}

.gal-masonry.list-view .gal-photo-item {
    margin-bottom: 12px;
    border-radius: 14px;
}

.gal-masonry.list-view .gal-photo-item img {
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

/* Estado vazio */
.gal-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    display: none;
}

.gal-empty i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.gal-empty p {
    font-size: 15px;
}

/* ── Shimmer placeholder ── */
@keyframes shimmerPulse {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.gal-photo-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 600px 100%;
    animation: shimmerPulse 1.4s infinite;
    border-radius: 16px;
    min-height: 180px;
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════
     VÍDEOS
  ═══════════════════════════════════════════════ */

/* Cabeçalho da secção de vídeos */
.gal-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.gal-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gal-section-title-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(51, 95, 70, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 14px;
}

.gal-section-title h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -.3px;
}

.gal-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(51, 95, 70, .08);
    border: 1px solid rgba(51, 95, 70, .15);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.gal-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gal-video-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    position: relative;
}

.gal-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.gal-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--green-dark);
}

.gal-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    opacity: .85;
}

.gal-video-card:hover .gal-video-thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.gal-video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 35, 25, .7) 0%, rgba(0, 0, 0, .2) 100%);
}

/* Botão play */
.gal-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 20px;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
    padding-left: 4px;
    position: relative;
}

/* Pulse ring no play */
.gal-video-play-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    opacity: 0;
    transition: opacity .25s;
}

.gal-video-card:hover .gal-video-play-btn::after {
    opacity: 1;
}

.gal-video-card:hover .gal-video-play-btn {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .4);
}

/* Badge "Em Breve" */
.gal-video-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 38, 38, .88);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* Duração badge */
.gal-video-dur {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}

/* Body do card de vídeo */
.gal-video-body {
    padding: 18px 18px 20px;
}

.gal-video-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.gal-video-tag {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--green);
    background: rgba(51, 95, 70, .1);
    padding: 3px 9px;
    border-radius: 5px;
    border: 1px solid rgba(51, 95, 70, .15);
}

.gal-video-date {
    font-size: 11.5px;
    color: var(--text-muted);
}

.gal-video-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
    letter-spacing: -.2px;
}

.gal-video-body p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Placeholder de vídeos em breve */
.gal-videos-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, #1a3a28 0%, var(--green-dark) 60%, #0f2318 100%);
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
}

.gal-videos-cta::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(241, 179, 28, .08);
    pointer-events: none;
}

.gal-videos-cta::after {
    content: '';
    position: absolute;
    left: -20px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 95, 70, .4) 0%, transparent 70%);
    pointer-events: none;
}

.gal-videos-cta-left {
    position: relative;
    z-index: 1;
}

.gal-videos-cta h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.gal-videos-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
    max-width: 480px;
}

.gal-videos-cta-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.gal-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.gal-social-btn:hover {
    background: rgba(255, 255, 255, .2);
}

/* ═══════════════════════════════════════════════
     DOCUMENTOS
  ═══════════════════════════════════════════════ */

/* Cabeçalho docs + contador */
.gal-docs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.gal-docs-count {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.gal-docs-count strong {
    color: var(--text-dark);
}

/* Empty state documentos */
.gal-docs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    display: none;
}

.gal-docs-empty i {
    font-size: 40px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.gal-docs-empty p {
    font-size: 14px;
}

.gal-docs-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gal-docs-search {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

.gal-docs-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
}

.gal-docs-search input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px 12px 9px 36px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    color: var(--text-dark);
}

.gal-docs-search input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(51, 95, 70, .1);
}

.gal-docs-filter-btns {
    display: flex;
    gap: 6px;
}

.gal-docs-filter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1.5px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.gal-docs-filter.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.gal-docs-filter:hover:not(.active) {
    border-color: var(--green);
    color: var(--green);
}

/* Grid de documentos */
.gal-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gal-doc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* Brilho de hover no doc card */
.gal-doc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 95, 70, .03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.gal-doc-card:hover::after {
    opacity: 1;
}

.gal-doc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
    transition: transform .3s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.gal-doc-card:hover::before {
    transform: scaleY(1);
}

.gal-doc-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
    border-color: rgba(51, 95, 70, .15);
    transform: translateY(-3px);
}

.gal-doc-card.type-pdf::before {
    background: #ef4444;
}

.gal-doc-card.type-pptx::before {
    background: #f97316;
}

.gal-doc-card.type-word::before {
    background: #3b82f6;
}

.gal-doc-card.type-xls::before {
    background: #22c55e;
}

/* Ícone por tipo */
.gal-doc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform .25s;
}

.gal-doc-card:hover .gal-doc-icon {
    transform: scale(1.08);
}

.icon-pdf {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.icon-pptx {
    background: rgba(249, 115, 22, .1);
    color: #f97316;
}

.icon-word {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
}

.icon-xls {
    background: rgba(34, 197, 94, .1);
    color: #22c55e;
}

.gal-doc-info {
    flex: 1;
    min-width: 0;
}

.gal-doc-info h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.2px;
}

.gal-doc-info p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.gal-doc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gal-doc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.gal-doc-meta-item i {
    font-size: 10px;
    color: var(--gold-dark);
}

.gal-doc-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    letter-spacing: .01em;
}

.gal-doc-dl-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

/* ═══════════════════════════════════════════════
     LIGHTBOX PREMIUM
  ═══════════════════════════════════════════════ */
.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 16, 12, 0.97);
    backdrop-filter: blur(12px);
    animation: lbFadeIn .22s ease;
}

.gal-lightbox.open {
    display: flex;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Imagem central */
.gal-lb-img-wrap {
    position: relative;
    max-width: calc(100vw - 300px);
    max-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

#galLbImg {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    border-radius: 14px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .7);
    object-fit: contain;
    display: block;
}

@keyframes lbImgIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sidebar de info */
.gal-lb-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 270px;
    background: rgba(10, 18, 14, .7);
    border-left: 1px solid rgba(255, 255, 255, .07);
    padding: 72px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Logótipo MEA no topo da sidebar */
.gal-lb-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.gal-lb-sidebar-brand span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
}

.gal-lb-sidebar-brand-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .07);
}

.gal-lb-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 4px;
}

.gal-lb-sidebar-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(241, 179, 28, .18);
    border: 1px solid rgba(241, 179, 28, .3);
    color: var(--gold);
    margin-bottom: 14px;
}

.gal-lb-sidebar-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
    margin-top: 6px;
}

.gal-lb-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
}

/* Contador e dots */
.gal-lb-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    text-align: center;
}

.gal-lb-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.gal-lb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .2s;
}

.gal-lb-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
}

/* Partilha */
.gal-lb-share-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 8px;
}

.gal-lb-share-btns {
    display: flex;
    gap: 8px;
}

.gal-lb-share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    text-decoration: none;
    transition: background .2s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.gal-lb-share-btn:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* Botões de navegação LB */
.gal-lb-prev,
.gal-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(6px);
    z-index: 9010;
}

.gal-lb-prev {
    left: 16px;
}

.gal-lb-next {
    right: 286px;
}

.gal-lb-prev:hover,
.gal-lb-next:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%) scale(1.08);
}

.gal-lb-prev:disabled,
.gal-lb-next:disabled {
    opacity: .3;
    cursor: default;
}

/* Fechar */
.gal-lb-close {
    position: fixed;
    top: 16px;
    right: 280px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 9010;
}

.gal-lb-close:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

/* Hint teclado */
.gal-lb-key-hint {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .25);
    text-align: center;
    line-height: 1.5;
    margin-top: auto;
}

.gal-lb-key-hint kbd {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════
     CTA STRIP
  ═══════════════════════════════════════════════ */
.gal-cta-strip {
    background: linear-gradient(135deg, #f7f5f0 0%, #fdf8f0 100%);
    border-top: 1px solid var(--border);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.gal-cta-strip::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 179, 28, .08) 0%, transparent 70%);
    pointer-events: none;
}

.gal-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.gal-cta-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.gal-cta-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.gal-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gal-lb-sidebar {
        width: 230px;
    }

    .gal-lb-next {
        right: 246px;
    }

    .gal-lb-close {
        right: 240px;
    }

    .gal-lb-img-wrap {
        max-width: calc(100vw - 250px);
    }

    .gal-docs-grid {
        grid-template-columns: 1fr;
    }

    .gal-hero-inner {
        grid-template-columns: 1fr 220px;
        gap: 36px;
    }
}

@media (max-width: 960px) {
    .gal-masonry {
        columns: 3;
    }

    .gal-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gal-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gal-hero-panel {
        display: none;
    }

    .gal-toolbar {
        padding: 10px 12px;
    }
}

@media (max-width: 900px) {
    .gal-hero {
        padding: 108px 0 100px;
    }

    /* header(64) + respiro(44) */
}

@media (max-width: 768px) {
    .gal-hero {
        padding: 96px 0 80px;
    }

    /* header(64) + respiro(32) */
    .gal-masonry {
        columns: 2;
    }

    .gal-lb-sidebar {
        display: none;
    }

    .gal-lb-next {
        right: 16px;
    }

    .gal-lb-close {
        right: 16px;
        top: 16px;
    }

    .gal-lb-img-wrap {
        max-width: 100vw;
        padding: 0 70px;
    }

    .gal-videos-grid {
        grid-template-columns: 1fr;
    }

    .gal-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .gal-cta-actions {
        justify-content: center;
    }

    .gal-toolbar {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 14px;
    }

    .gal-toolbar-left {
        gap: 6px;
    }

    .gal-videos-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .gal-videos-cta-social {
        justify-content: center;
    }

    .gal-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gal-docs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gal-cta-strip {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .gal-masonry {
        columns: 1;
    }

    .gal-tabs-wrap {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gal-tab-btn {
        padding: 9px 14px;
        font-size: 12.5px;
    }

    .gal-tab-btn span:not(.gal-tab-count):not(.gal-tab-soon) {
        display: none;
    }

    .gal-docs-grid {
        grid-template-columns: 1fr;
    }

    .gal-hero {
        padding: 88px 0 80px;
    }

    /* header(64) + respiro(24) */
    .gal-doc-card {
        flex-direction: column;
    }

    .gal-doc-dl-btn {
        align-self: flex-start;
    }
}