/* ═══════════════════════════════════════════════════════════════
   Layout-12  "Noite de Gala"
   Prefix: lp12-

   Conceito: Elegância black-tie. O evento como um convite formal
   de cerimônia — fundo quase preto, tipografia em marfim e
   acentos em ouro quente.

   Pilares visuais:
   ├─ Fundo escuro fixo (#0a0a10) com partículas douradas animadas
   ├─ Hero fullscreen: título serif grande + ornamentos em ouro
   ├─ Sem header fixo no topo — dock flutuante na base da tela
   ├─ Sobre: painel escuro com banner + descrição em marfim
   ├─ Programação: timeline vertical com cards alternando L/R
   │   e linha central dourada contínua
   ├─ Inscrição: painel CTA com dupla borda dourada
   └─ Dock bottom: nav pill glassmorphism escuro (novo eixo)
   ═══════════════════════════════════════════════════════════════ */

/* ── Variáveis ────────────────────────────────────────────────── */
.lp12-body {
    --gold:       #c9a84c;
    --gold-lt:    #e4c06e;
    --gold-dk:    #8b6914;
    --gold-tint:  rgba(201,168,76,.08);
    --gold-line:  rgba(201,168,76,.22);
    --ivory:      #f5f0e8;
    --ivory-mid:  rgba(245,240,232,.6);
    --ivory-dim:  rgba(245,240,232,.36);
    --dark-0:     #0a0a10;
    --dark-1:     #111118;
    --dark-2:     #1a1a24;
    --dark-3:     #24242f;
}

/* ── Body ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

.lp12-body {
    background: var(--dark-0);
    color: var(--ivory);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px; line-height: 1.68;
    margin: 0; padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* ── Fundo escuro fixo ────────────────────────────────────────── */
.lp12-bg {
    position: fixed; inset: 0; z-index: 0;
    background: linear-gradient(
        175deg,
        #08080e 0%,
        #0d0d18 45%,
        #0a0810 100%
    );
}

/* ── Partículas douradas (JS popula o container) ──────────────── */
.lp12-particles {
    position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.lp12-particle {
    position: absolute; border-radius: 50%;
    background: var(--gold);
    animation: lp12-glow linear infinite;
}
@keyframes lp12-glow {
    0%, 100% { opacity: 0;    transform: scale(.4); }
    50%       { opacity: .65; transform: scale(1);  }
}

/* ── Botão voltar (canto superior esquerdo) ───────────────────── */
.lp12-back {
    position: fixed; top: 18px; left: 18px; z-index: 100;
    display: flex; align-items: center; gap: 6px;
    padding: 6px 13px;
    background: rgba(10,10,16,.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-line);
    border-radius: 40px;
    font-family: system-ui, sans-serif;
    font-size: .66rem; font-weight: 600;
    color: var(--ivory-mid); text-decoration: none;
    transition: color .2s, border-color .2s;
}
.lp12-back:hover { color: var(--ivory); border-color: rgba(201,168,76,.45); }

/* ── Hero (fullscreen) ────────────────────────────────────────── */
.lp12-hero {
    min-height: 100vh;
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 80px 32px 120px;
}

.lp12-hero-sigla {
    font-family: system-ui, sans-serif;
    font-size: .64rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .35em;
    color: var(--gold); margin: 0 0 20px;
}

/* Ornamento —◇— */
.lp12-ornament {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 0 0 22px;
}
.lp12-ornament::before,
.lp12-ornament::after {
    content: '';
    display: block; width: 48px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.lp12-ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.lp12-ornament-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.lp12-hero-title {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -.02em; color: var(--ivory);
    margin: 0 0 22px; max-width: 800px;
}

.lp12-hero-meta {
    display: flex; gap: 24px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 32px;
}
.lp12-hero-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-family: system-ui, sans-serif;
    font-size: .78rem; color: var(--ivory-mid);
}
.lp12-hero-meta-item i { color: var(--gold); font-size: .72rem; }

.lp12-hero-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: system-ui, sans-serif;
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    padding: 3px 10px; border: 1px solid currentColor; border-radius: 2px;
}
.lp12-hero-status.aberto    { color: #4ade80; }
.lp12-hero-status.futuro    { color: #60a5fa; }
.lp12-hero-status.andamento { color: #fbbf24; }
.lp12-hero-status.encerrado { color: var(--ivory-dim); }

/* Indicador de scroll */
.lp12-scroll-hint {
    position: absolute; bottom: 90px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; opacity: .5; transition: opacity .2s;
    animation: lp12-bounce 2.4s ease-in-out infinite;
}
.lp12-scroll-hint:hover { opacity: .9; }
.lp12-scroll-hint span {
    font-family: system-ui, sans-serif;
    font-size: .58rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
}
.lp12-scroll-hint i { color: var(--gold); font-size: .78rem; }
@keyframes lp12-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Conteúdo principal ───────────────────────────────────────── */
.lp12-page { position: relative; z-index: 2; }

.lp12-container {
    max-width: 1020px; margin: 0 auto; padding: 0 28px;
}

/* Blocos de Informação + Comissão Científica — alinhar/justificar com as seções do layout */
#blocos-informacao, #comissao-cientifica { padding: 0; }
#blocos-informacao .container, #comissao-cientifica .container { max-width: 1020px; width: 100%; margin: 0 auto; padding: 48px 28px; }

.lp12-section {
    padding: 64px 0 72px;
    border-bottom: 1px solid rgba(201,168,76,.1);
}
.lp12-section:last-of-type {
    border-bottom: none;
    padding-bottom: 120px; /* espaço para o dock */
}

/* Cabeçalho de seção */
.lp12-section-head {
    text-align: center; margin-bottom: 44px;
}
.lp12-section-ornament {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 12px;
}
.lp12-section-ornament::before,
.lp12-section-ornament::after {
    content: ''; display: block; height: 1px;
    width: 50px; flex-shrink: 0;
    background: var(--gold-line);
}
.lp12-section-icon { color: var(--gold); font-size: .64rem; }
.lp12-section-label {
    font-family: system-ui, sans-serif;
    font-size: .62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em; color: var(--gold);
    display: block; margin-bottom: 6px;
}
.lp12-section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 900; color: var(--ivory);
    margin: 0; letter-spacing: -.01em;
}

/* ── SOBRE: painel escuro com banner ──────────────────────────── */
.lp12-sobre-wrap {
    max-width: 760px; margin: 0 auto;
}
.lp12-sobre-banner {
    width: 100%; height: auto;
    display: block;
    border: 1px solid var(--gold-line);
    margin-bottom: 28px;
    filter: brightness(.88) contrast(1.05);
}
.lp12-sobre-eyebrow {
    font-family: system-ui, sans-serif;
    font-size: .58rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .2em;
    color: var(--gold); margin: 0 0 10px;
}
.lp12-sobre-text {
    font-size: 1rem; line-height: 1.82;
    color: var(--ivory-mid);
    margin: 0;
}
.lp12-sobre-text::first-letter {
    float: left;
    font-size: 3.2em; line-height: .82;
    font-weight: 900; color: var(--gold);
    margin: 3px 10px 0 0;
    font-family: Georgia, serif;
}

/* ── PROGRAMAÇÃO: timeline L/R ────────────────────────────────── */
/* Cabeçalho do dia */
.lp12-day-block { margin-bottom: 52px; }
.lp12-day-head {
    display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
}
.lp12-day-rule { flex: 1; height: 1px; background: var(--gold-line); }
.lp12-day-center { text-align: center; flex-shrink: 0; }
.lp12-day-wk {
    display: block; font-family: system-ui, sans-serif;
    font-size: .58rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .22em; color: var(--gold);
}
.lp12-day-date {
    display: block; font-family: Georgia, serif;
    font-size: .88rem; color: var(--ivory-mid); margin-top: 2px;
}

/* Timeline wrapper com linha central */
.lp12-timeline-wrap { position: relative; }
.lp12-timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(
        180deg, transparent 0%, var(--gold-line) 6%,
        var(--gold-line) 94%, transparent 100%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

/* Item da timeline */
.lp12-tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    margin-bottom: 28px;
    align-items: start;
}
.lp12-tl-void { /* espaço vazio do outro lado */ }

/* Centro: dot + hora */
.lp12-tl-mid {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; padding-top: 18px; position: relative; z-index: 2;
}
.lp12-tl-dot {
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--dark-0);
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(201,168,76,.5);
    flex-shrink: 0;
}
.lp12-tl-time {
    font-family: system-ui, sans-serif;
    font-size: .58rem; font-weight: 700;
    color: var(--gold); text-align: center; white-space: nowrap;
}

/* Card da atividade */
.lp12-tl-card {
    background: rgba(255,255,255,.026);
    border: 1px solid var(--gold-line);
    border-radius: 12px; padding: 18px 20px;
    transition: border-color .25s, background .25s;
}
.lp12-tl-card:hover {
    border-color: rgba(201,168,76,.38);
    background: var(--gold-tint);
}

/* Card na esquerda: margem à direita + alinhamento à direita */
.lp12-tl-item.lp12-left .lp12-tl-card {
    margin-right: 18px;
}
/* Card na direita: margem à esquerda */
.lp12-tl-item.lp12-right .lp12-tl-card {
    margin-left: 18px;
}

.lp12-card-tipo {
    font-family: system-ui, sans-serif;
    font-size: .56rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--gold); margin: 0 0 6px;
}
.lp12-card-title {
    font-family: Georgia, serif;
    font-size: 1rem; font-weight: 700;
    line-height: 1.28; color: var(--ivory);
    margin: 0 0 8px;
}
.lp12-card-meta {
    font-family: system-ui, sans-serif;
    font-size: .68rem; color: var(--ivory-dim);
    display: flex; gap: 8px; flex-wrap: wrap;
    align-items: center; margin: 0 0 6px;
}
.lp12-card-meta i { font-size: .6rem; color: rgba(201,168,76,.5); }
.lp12-card-sep { color: rgba(201,168,76,.3); }
.lp12-card-byline {
    font-family: system-ui, sans-serif;
    font-size: .66rem; font-style: italic; color: var(--ivory-dim);
    margin: 0 0 8px;
}
.lp12-card-desc {
    font-size: .8rem; color: rgba(245,240,232,.45);
    line-height: 1.6; margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lp12-card-foot {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding-top: 8px; border-top: 1px solid rgba(201,168,76,.1);
    margin-top: 4px;
}
.lp12-card-vagas {
    font-family: system-ui, sans-serif;
    font-size: .62rem; color: rgba(245,240,232,.35);
}
.lp12-card-vagas.sem { color: #f87171; font-weight: 700; }
.lp12-card-inscr {
    font-family: system-ui, sans-serif;
    font-size: .62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--gold); background: none;
    border: 1px solid var(--gold-line); padding: 3px 10px;
    border-radius: 2px; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.lp12-card-inscr:hover { background: var(--gold); color: var(--dark-0); border-color: var(--gold); }
.lp12-card-inscrito {
    font-family: system-ui, sans-serif;
    font-size: .62rem; font-weight: 700;
    color: #4ade80; letter-spacing: .06em;
}

/* Programação vazia */
.lp12-prog-empty {
    text-align: center; padding: 48px 0;
    font-family: system-ui, sans-serif;
    font-size: .88rem; color: var(--ivory-dim);
    font-style: italic;
    border: 1px dashed rgba(201,168,76,.15);
    border-radius: 8px;
}

/* ── INSCRIÇÃO: painel CTA ────────────────────────────────────── */
.lp12-inscr-wrap {
    max-width: 560px; margin: 0 auto;
}
.lp12-inscr-panel {
    border: 1px solid var(--gold-line);
    border-radius: 0;
    padding: 0;
    position: relative;
    /* dupla borda: inner shadow simula segunda borda */
    box-shadow: 0 0 0 5px var(--dark-0), 0 0 0 6px rgba(201,168,76,.15);
}
.lp12-inscr-panel-head {
    background: var(--gold-tint);
    border-bottom: 1px solid var(--gold-line);
    padding: 14px 28px;
    text-align: center;
    font-family: system-ui, sans-serif;
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .28em;
    color: var(--gold);
}
.lp12-inscr-body { padding: 28px; text-align: center; }
.lp12-inscr-title {
    font-family: Georgia, serif;
    font-size: 1.4rem; font-weight: 900;
    color: var(--ivory); margin: 0 0 8px; line-height: 1.2;
}
.lp12-inscr-text {
    font-size: .84rem; color: var(--ivory-mid); margin: 0;
}

/* Countdown */
.lp12-countdown {
    display: none; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin: 20px 0 0;
}
.lp12-countdown.visible { display: flex; }
.lp12-cnt-unit { text-align: center; }
.lp12-cnt-num {
    display: block; font-family: Georgia, serif;
    font-size: 1.8rem; font-weight: 900; line-height: 1; color: var(--ivory);
}
.lp12-cnt-lbl {
    font-family: system-ui, sans-serif;
    font-size: .56rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: .14em;
}
.lp12-cnt-sep { font-size: 1.4rem; color: var(--gold-line); align-self: flex-start; padding-top: 2px; }

.lp12-inscr-alert { margin: 12px 0 0; font-family: system-ui, sans-serif; font-size: .78rem; }

.lp12-inscr-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 20px; padding: 12px 32px;
    background: var(--gold); color: var(--dark-0);
    border: none; cursor: pointer;
    font-family: system-ui, sans-serif;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    transition: background .2s, transform .15s;
    border-radius: 2px;
}
.lp12-inscr-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.lp12-inscr-cta:disabled { background: var(--dark-3); color: rgba(245,240,232,.3); cursor: not-allowed; transform: none; }

.lp12-inscr-counter {
    margin-top: 12px;
    font-family: system-ui, sans-serif;
    font-size: .68rem; color: var(--ivory-dim);
}

/* ── DOCK — nav bottom flutuante ──────────────────────────────── */
.lp12-dock {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: rgba(10,10,16,.72);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    border: 1px solid rgba(201,168,76,.22);
    border-radius: 60px;
    padding: 6px 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.06);
    max-width: calc(100vw - 32px);
}
@supports not (backdrop-filter: blur(1px)) {
    .lp12-dock { background: rgba(10,10,16,.94); }
}
.lp12-dock-inner {
    display: flex; align-items: center; gap: 2px;
}
.lp12-dock-link {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 18px; border-radius: 50px;
    color: var(--ivory-dim); text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: .6rem; font-weight: 600;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.lp12-dock-link i { font-size: .84rem; }
.lp12-dock-link:hover  { color: rgba(245,240,232,.82); background: rgba(255,255,255,.05); }
.lp12-dock-link.active { color: var(--gold); background: rgba(201,168,76,.12); }
.lp12-dock-sep {
    width: 1px; height: 28px;
    background: rgba(201,168,76,.15); margin: 0 4px; flex-shrink: 0;
}

/* User no dock */
.lp12-dock-user { position: relative; }
.lp12-dock-user-btn {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 14px; border-radius: 50px;
    background: none; border: none; cursor: pointer;
    color: var(--ivory-dim); transition: color .2s;
}
.lp12-dock-user-btn:hover { color: rgba(245,240,232,.82); }
.lp12-dock-av {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--gold); border: 1.5px solid rgba(201,168,76,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: .58rem; font-weight: 700; color: var(--dark-0);
    overflow: hidden; flex-shrink: 0;
}
.lp12-dock-user-label {
    font-family: system-ui, sans-serif;
    font-size: .6rem; font-weight: 600; white-space: nowrap;
}
.lp12-dock-dropdown {
    position: absolute; bottom: calc(100% + 10px); right: 0;
    min-width: 180px;
    background: var(--dark-1);
    border: 1px solid rgba(201,168,76,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    border-radius: 10px; z-index: 300; display: none; overflow: hidden;
}
.lp12-dock-dropdown.show { display: block; }
.lp12-dock-dropdown a, .lp12-dock-dropdown button {
    display: block; width: 100%; padding: 10px 16px;
    font-family: system-ui, sans-serif; font-size: .78rem;
    color: var(--ivory-mid); text-decoration: none;
    background: none; border: none; border-bottom: 1px solid rgba(255,255,255,.05);
    text-align: left; cursor: pointer; transition: background .1s, color .1s;
}
.lp12-dock-dropdown a:last-child, .lp12-dock-dropdown button:last-child { border-bottom: none; }
.lp12-dock-dropdown a:hover, .lp12-dock-dropdown button:hover {
    background: rgba(201,168,76,.08); color: var(--ivory);
}

/* Botão Login no dock */
.lp12-dock-login {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 5px 16px; border-radius: 50px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    cursor: pointer; color: var(--gold);
    font-family: system-ui, sans-serif;
    font-size: .6rem; font-weight: 700;
    transition: background .2s, border-color .2s;
}
.lp12-dock-login:hover { background: rgba(201,168,76,.22); border-color: var(--gold); }
.lp12-dock-login i { font-size: .84rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.lp12-footer {
    position: relative; z-index: 2;
    border-top: 1px solid rgba(201,168,76,.1);
    padding: 18px 24px;
    font-family: system-ui, sans-serif;
    font-size: .64rem; color: var(--ivory-dim);
    text-align: center;
}
.lp12-footer a { color: var(--ivory-dim); text-decoration: none; transition: color .15s; }
.lp12-footer a:hover { color: var(--gold); }
.lp12-footer-sep { margin: 0 8px; color: rgba(201,168,76,.3); }

/* ── Scroll margin para o dock ────────────────────────────────── */
.lp12-section { scroll-margin-top: 20px; }
#inscricao     { scroll-margin-top: 20px; }

/* ═══════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 860px) {
    /* Timeline: colapsa para single column (dot à esquerda) */
    .lp12-timeline-wrap::before { left: 26px; transform: none; }

    .lp12-tl-item {
        grid-template-columns: 60px 1fr;
    }
    /* Reordenar tudo para coluna única */
    .lp12-tl-item.lp12-left  .lp12-tl-void,
    .lp12-tl-item.lp12-right .lp12-tl-void { display: none; }
    .lp12-tl-item.lp12-left  .lp12-tl-mid,
    .lp12-tl-item.lp12-right .lp12-tl-mid  { grid-column: 1; grid-row: 1; }
    .lp12-tl-item.lp12-left  .lp12-tl-card,
    .lp12-tl-item.lp12-right .lp12-tl-card { grid-column: 2; grid-row: 1; margin-right: 0; margin-left: 0; }
}

@media (max-width: 600px) {
    .lp12-hero-title { font-size: 1.8rem; }
    .lp12-hero-meta  { gap: 14px; }
    .lp12-dock-link span, .lp12-dock-login span, .lp12-dock-user-label { display: none; }
    .lp12-dock-link i { font-size: 1rem; }
    .lp12-dock-link  { padding: 8px 14px; }
    .lp12-dock-login { padding: 8px 12px; }
    .lp12-section { padding: 44px 0 52px; }
    .lp12-container { padding: 0 18px; }
    .lp12-ornament::before,
    .lp12-ornament::after { width: 30px; }
}

/* ── Submissões no estilo "Noite de Gala" (black-tie) ─────────────
   Sobrepõe o estilo autocontido (evsub-*) com a linguagem do 12: separador
   dourado, container alinhado, título serif marfim, cards escuros com borda
   dourada (igual .lp12-tl-card), texto marfim e CTA dourado (igual
   .lp12-inscr-cta). O prefixo #submissoes vence o <style> do partial. */
#submissoes.evsub-section {
    padding: 64px 0 72px;
    border-bottom: 1px solid rgba(201,168,76,.1);
    scroll-margin-top: 20px;
}
#submissoes .evsub-wrap { max-width: 1020px; padding: 0 28px; }

#submissoes .evsub-title {
    font-family: Georgia, serif;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 900; color: var(--ivory);
}
#submissoes .evsub-title i { color: var(--gold); }

#submissoes .evsub-card {
    background: rgba(255,255,255,.026);
    border: 1px solid var(--gold-line);
    border-radius: 12px; box-shadow: none;
}
#submissoes .evsub-head {
    background: var(--gold-tint);
    border-bottom: 1px solid var(--gold-line);
    color: var(--ivory);
}
#submissoes .evsub-card-title { font-family: Georgia, serif; color: var(--gold-lt); }

#submissoes .evsub-desc { color: var(--ivory-mid); }
#submissoes .evsub-info { color: var(--ivory); }
#submissoes .evsub-info li span { color: var(--ivory-dim); }
#submissoes .evsub-i-av { color: var(--ivory-dim); }
#submissoes .evsub-tpls-lbl { color: var(--ivory-dim); }
#submissoes .evsub-tpls a { color: var(--gold-lt); }

/* CTA dourado (igual .lp12-inscr-cta) */
#submissoes .evsub-btn {
    background: var(--gold); color: var(--dark-0);
    border-radius: 2px;
    font-family: system-ui, sans-serif; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em; font-size: .82rem;
}
#submissoes .evsub-btn:hover { background: var(--gold-lt); color: var(--dark-0); }
#submissoes .evsub-btn--off,
#submissoes .evsub-btn:disabled {
    background: var(--dark-3); color: rgba(245,240,232,.3);
    border: none; border-radius: 2px;
}

@media (max-width: 600px) {
    #submissoes.evsub-section { padding: 44px 0 52px; }
    #submissoes .evsub-wrap { padding: 0 18px; }
}
