/* ============================================================
   DAIRY VISION AWARDS 2026 — Design System
   Escala tipográfica coerente:
   · Eyebrow / label : 12px  uppercase  letter-spacing 3px
   · Corpo          : 18px  line-height 1.8
   · Card body      : 17px
   · Cat / step     : 17px
   · Sub-preço      : 14px
   · Preço          : 44px
   · CTA title      : 52px
   ============================================================ */

:root {
    --gold:        #C9A84C;
    --gold-60:     rgba(201,168,76,.60);
    --gold-30:     rgba(201,168,76,.30);
    --gold-10:     rgba(201,168,76,.10);
    --gold-glow:   rgba(201,168,76,.40);
    --bg:          #0e1a2e;
    --bg2:         #111e32;
    --text:        #e8dfc8;
    --muted:       #b8b098;
    --dim:         #7a7060;
    --border:      1px solid rgba(201,168,76,.18);
    /* Dairy Vision event brand */
    --dv-blue:     #005784;
    --dv-blue-80:  rgba(0,87,132,.80);
    --dv-blue-20:  rgba(0,87,132,.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 18px; }          /* base = 18px → tudo em px explícito abaixo */

body {
    font-family: 'Raleway', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { text-decoration: none; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes floatup {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}
@keyframes fadeDown {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}
.float   { animation: floatup 4s ease-in-out infinite; }
.fade-in { animation: fadeDown .22s ease; }

/* ─── EVENT CONTEXT STRIP ────────────────────────── */
.event-strip {
    background: var(--dv-blue);
    padding: 8px 80px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.event-strip-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1180px;
    margin: 0 auto;
}
.event-strip-tag {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.45);
    font-weight: 700;
    flex-shrink: 0;
}
.event-strip-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
    flex-shrink: 0;
    transition: opacity .2s;
}
.event-strip-name:hover { opacity: .80; }
.event-strip-sep {
    color: rgba(255,255,255,.25);
    font-size: 13px;
    flex-shrink: 0;
}
.event-strip-info {
    font-size: 12px;
    color: rgba(255,255,255,.62);
    flex: 1;
}
.event-strip-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255,255,255,.80);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 4px;
    padding: 4px 12px;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.event-strip-cta:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

/* ─── NAVBAR ─────────────────────────────────────── */
/* 72px de altura total; logo 46px; texto nav 15px   */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 80px;
    background: rgba(14,26,46,.97);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201,168,76,.20);
    backdrop-filter: blur(8px);
    gap: 32px;
}
.navbar-logo img {
    height: 58px;
    display: block;
    object-fit: contain;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.72);
    transition: color .2s;
    white-space: nowrap;
}
.nav-link:hover { color: #ffffff; }
.navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn-ver-evento {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    padding: 8px 16px;
    border: 1px solid rgba(0,87,132,.55);
    border-radius: 4px;
    background: var(--dv-blue-20);
    transition: background .2s, color .2s, border-color .2s;
}
.btn-ver-evento:hover {
    background: var(--dv-blue);
    color: #fff;
    border-color: var(--dv-blue);
}

.btn-regulamento {
    color: var(--gold-60);
    font-size: 15px;
    padding: 10px 22px;
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 4px;
    transition: color .2s, border-color .2s;
}
.btn-regulamento:hover { color: var(--gold); border-color: var(--gold-60); }

.btn-inscrito {
    border-color: rgba(0,87,132,.40) !important;
    color: rgba(90,180,214,.70) !important;
}
.btn-inscrito:hover {
    background: rgba(0,87,132,.12) !important;
    color: #5ab4d6 !important;
    border-color: #5ab4d6 !important;
}

.btn-cta-nav {
    font-family: 'Oswald', sans-serif;
    background: var(--gold);
    color: #0e1a2e;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 30px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px var(--gold-glow);
    transition: opacity .2s;
    text-transform: uppercase;
}
.btn-cta-nav:hover { opacity: .88; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: #080e1a;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 520px 520px at 15% 60%, rgba(201,168,76,.18) 0%, transparent 70%),
        radial-gradient(ellipse 320px 320px at 72% 30%, rgba(201,168,76,.13) 0%, transparent 65%),
        radial-gradient(ellipse 200px 200px at 85% 70%, rgba(201,168,76,.10) 0%, transparent 60%),
        radial-gradient(ellipse 160px 160px at 40% 20%, rgba(201,168,76,.09) 0%, transparent 55%),
        radial-gradient(ellipse 400px 500px at 90% 50%, rgba(180,140,60,.08) 0%, transparent 70%);
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle 6px at 22% 35%, rgba(201,168,76,.55) 0%, transparent 100%),
        radial-gradient(circle 4px at 65% 25%, rgba(201,168,76,.45) 0%, transparent 100%),
        radial-gradient(circle 8px at 78% 60%, rgba(201,168,76,.35) 0%, transparent 100%),
        radial-gradient(circle 5px at 30% 72%, rgba(201,168,76,.40) 0%, transparent 100%),
        radial-gradient(circle 3px at 50% 45%, rgba(255,220,120,.50) 0%, transparent 100%),
        radial-gradient(circle 7px at 88% 20%, rgba(201,168,76,.30) 0%, transparent 100%),
        radial-gradient(circle 4px at 10% 80%, rgba(201,168,76,.35) 0%, transparent 100%),
        radial-gradient(circle 5px at 55% 80%, rgba(201,168,76,.28) 0%, transparent 100%);
    filter: blur(2px);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(8,14,26,.55) 0%, rgba(8,14,26,.30) 50%, rgba(8,14,26,.65) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 80px 60px;
    max-width: 1180px;
    width: 100%;
}

/* Corpo 2 colunas: troféu | cta */
.hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-medal-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-medal-img {
    width: 100%;
    max-width: 380px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(201,168,76,.30));
}
.hero-cta-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Tagline grande — headline do hero */
.hero-tagline-title {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Linha de evento / localização */
.hero-event-line {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(201,168,76,.72);
    text-transform: uppercase;
    margin-top: -8px;
}

/* Botões hero */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 15px 40px;
    background: var(--gold);
    color: #0e1a2e;
    border-radius: 4px;
    box-shadow: 0 0 28px rgba(201,168,76,.35);
    transition: opacity .2s;
    text-transform: uppercase;
}
.btn-hero-primary:hover { opacity: .88; }
.btn-hero-secondary {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: 1.5px solid rgba(201,168,76,.45);
    color: rgba(201,168,76,.82);
    border-radius: 4px;
    background: rgba(8,14,26,.40);
    transition: border-color .2s, color .2s;
    text-transform: uppercase;
}
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* countdown box */
.countdown-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(8,14,26,.75);
    border: 1px solid rgba(201,168,76,.30);
    border-radius: 10px;
    padding: 18px 28px 20px;
    backdrop-filter: blur(12px);
}

/* Preço de Lançamento pill (legado) */
.early-pill {
    display: inline-block;
    font-size: 13px;
    padding: 8px 20px;
    background: rgba(10,18,30,.80);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 30px;
    color: rgba(201,168,76,.75);
    letter-spacing: .3px;
}

/* ─── SECTIONS ───────────────────────────────────── */
.section {
    padding: 56px 80px;
}
.section-alt        { background: var(--bg2); }

/* Sobre o Prêmio texto — fundo dourado champagne */
.section-about {
    padding: 64px 80px;
    background:
        linear-gradient(135deg, #c9a84c 0%, #e8c96a 25%, #f0d878 45%, #c9a84c 65%, #a8872e 85%, #c9a84c 100%);
    color: #1a1208;
    position: relative;
}
.section-about::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: .5;
    pointer-events: none;
}
.section-about .section-label {
    color: rgba(30,18,4,.60);
    position: relative;
}
.section-about .center-text h2,
.section-about .center-text .section-label { position: relative; }
.section-about .about-text {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(20,12,2,.78);
    max-width: 740px;
    margin: 0 auto;
    position: relative;
}
.section-about .about-text strong { color: rgba(10,6,0,.90); }

/* Stats — fundo escuro tipo hero */
.section-stats-dark {
    background: #0d1420;
    color: var(--text);
    padding: 72px 80px;
}
.section-stats-dark .section-label  { color: var(--gold); }
.section-stats-dark .tl-title       { color: rgba(255,255,255,.72); }
.section-stats-dark .tl-date        { color: rgba(255,255,255,.48); }
.section-stats-dark .tl-event       { color: var(--gold-60); }
.section-stats-dark .timeline-h-track { background: rgba(255,255,255,.10); }

/* Seções claras (categorias, como funciona, investimento) */
.section-white {
    background: #f2efea;
    color: #1a1208;
}
.section-white .section-label { color: var(--gold); }

/* keep legacy aliases */
.section-dark       { background: #0a0f1c; color: var(--text); }
.section-light      { background: #f5f3ef; }

/* Eyebrow label — gold sobre dark */
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 36px;
}
/* label escuro sobre fundo branco/claro */
.section-label-dark {
    color: var(--gold);
}
.left-label { text-align: left; margin-bottom: 24px; }

.section-inner {
    max-width: 840px;
    margin: 0 auto;
}
.center-text { text-align: center; }

/* ─── SOBRE O PRÊMIO — texto ─────────────────────── */
.section-about .about-text {
    font-size: 18px;
    line-height: 1.85;
    color: #4a3f30;
    max-width: 720px;
    margin: 0 auto;
}
.section-about .about-text strong { color: #8a6d30; }
.section-about .section-label { color: #1a1208; font-weight: 700; }
/* fallback para versões antigas */
.about-text {
    font-size: 18px;
    line-height: 1.85;
    color: #ddd5c0;
}
.about-text strong { color: var(--gold); }

/* ─── CATEGORIAS ─────────────────────────────────── */
/* versão dark (fundo escuro, legado) */
.cat-list {
    border: var(--border);
    border-radius: 12px;
    overflow: hidden;
}
/* versão white (fundo branco) */
.cat-list-white {
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.cat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    border-bottom: 1px solid rgba(201,168,76,.10);
    transition: background .15s;
    background: transparent;
}
.cat-list-white .cat-item {
    border-bottom-color: #f0ece4;
}
.cat-item:last-of-type { border-bottom: none; }
.cat-item:hover      { background: rgba(201,168,76,.06); }
.cat-item.active     { background: rgba(201,168,76,.08); }
.cat-list-white .cat-item:hover  { background: #faf8f4; }
.cat-list-white .cat-item.active { background: #f5f0e8; }

.cat-num  { color: var(--gold); font-size: 12px; font-weight: 700; min-width: 26px; }
.cat-name { font-size: 16px; color: var(--text); flex: 1; }
.cat-list-white .cat-name { color: #2a1e0a; }
.cat-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(201,168,76,.50); transition: color .2s; }
.cat-icon svg { width: 18px; height: 18px; }
.cat-item:hover .cat-icon, .cat-item.active .cat-icon { color: var(--gold); }
.cat-list-white .cat-icon { color: #b8922a; }

.cat-arrow {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(201,168,76,.40);
    transition: transform .22s, color .2s;
    flex-shrink: 0;
}
.cat-arrow svg { width: 18px; height: 18px; }
.cat-list-white .cat-arrow { color: #c0a860; }
.cat-item.active .cat-arrow { transform: rotate(180deg); color: var(--gold); }

.cat-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    padding: 18px 24px 18px 56px;
    background: rgba(201,168,76,.04);
    border-top: 1px solid rgba(201,168,76,.10);
    border-left: 3px solid rgba(201,168,76,.40);
    animation: fadeDown .2s ease;
}
.cat-list-white .cat-desc {
    color: #5a4a2a;
    background: #faf7f0;
    border-top-color: #e8e0d0;
    border-left-color: var(--gold);
}

.cat-hint { font-size: 13px; color: rgba(201,168,76,.38); text-align: center; margin-top: 16px; }
.cat-hint-dark { color: #b8a080; }

/* ─── COMO FUNCIONA — nova versão ────────────────── */
.steps-new {
    display: flex;
    align-items: flex-start;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}
/* A linha é desenhada como pseudo-element no container
   para evitar cálculo de posição absoluta difícil */
.step-n {
    font-size: 88px;
    font-weight: 900;
    color: #1a1208;
    line-height: 1;
    letter-spacing: -4px;
    user-select: none;
    display: block;
    margin-bottom: 0;
}
.step-new {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Linha entre hexágonos — via border-top no wrapper */
.step-new + .step-new::before {
    display: none; /* não usar pseudo-element por step */
}
/* Container da linha horizontal */
.steps-new-track {
    position: absolute;
    /* posição vertical: abaixo do número (88px line-height + 0 margin) + metade do hex */
    top: calc(88px + 18px);   /* 88 = número, 18 = metade do hex 36px */
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: #d8d0c4;
    z-index: 0;
}
.step-hex {
    width: 34px; height: 34px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 4px auto 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.step-title-new { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: #1a1208; margin-bottom: 4px; }
.step-sub-new   { font-size: 13px; color: #7a6a50; line-height: 1.55; }

/* linha horizontal legado */
.steps-line-new {
    position: absolute;
    top: calc(88px + 18px);
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: #d8d0c4;
}

/* ─── STEPS legado (manter compatibilidade) ──────── */
.steps {
    display: flex;
    align-items: flex-start;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.steps-line {
    position: absolute;
    top: 24px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: rgba(201,168,76,.18);
}
.step         { flex: 1; text-align: center; position: relative; z-index: 1; padding-top: 4px; }
.step-circle  { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #0e1a2e; font-size: 19px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-hex-dot { width: 44px; height: 44px; background: var(--gold); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-num-big { font-size: 72px; font-weight: 900; color: rgba(0,0,0,.08); line-height: 1; margin-bottom: -14px; letter-spacing: -3px; user-select: none; }
.step-title   { font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.step-sub     { font-size: 14px; color: rgba(201,168,76,.48); line-height: 1.55; }

/* ─── POR QUE PARTICIPAR (legado) ────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card { background: var(--gold-10); border: var(--border); border-radius: 12px; padding: 28px 30px; }
.why-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-bottom: 14px; }
.why-text { font-size: 17px; line-height: 1.7; color: var(--text); }

/* ─── JÚRI ───────────────────────────────────────── */
.jury-section-inner {
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Carrossel spotlight ─────────────────────────── */
.jury-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.jury-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.30);
    background: rgba(201,168,76,.07);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 10;
}
.jury-nav-btn svg { width: 22px; height: 22px; }
.jury-nav-btn:hover { background: rgba(201,168,76,.18); border-color: var(--gold-60); }

.jury-carousel {
    flex: 1;
    position: relative;
    height: 390px;
    overflow: hidden;
}

/* Cada slot é posicionado absolutamente no centro do carrossel */
.jury-slot {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform .40s cubic-bezier(.25,.8,.25,1),
                opacity   .40s cubic-bezier(.25,.8,.25,1);
}

.slot-center  { transform: translate(-50%, -50%) scale(1);    opacity: 1;    z-index: 5; }
.slot-adj-l   { transform: translate(calc(-50% - 246px), -50%) scale(0.80); opacity: 0.65; z-index: 3; }
.slot-adj-r   { transform: translate(calc(-50% + 246px), -50%) scale(0.80); opacity: 0.65; z-index: 3; }
.slot-far-l   { transform: translate(calc(-50% - 438px), -50%) scale(0.60); opacity: 0.28; z-index: 1; }
.slot-far-r   { transform: translate(calc(-50% + 438px), -50%) scale(0.60); opacity: 0.28; z-index: 1; }
.slot-hidden  { transform: translate(-50%, -50%) scale(0.40); opacity: 0;    z-index: 0; pointer-events: none; }

.juror-card {
    width: 218px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.18);
    background: #0b1525;
}

.slot-center .juror-card {
    border-color: rgba(201,168,76,.55);
    box-shadow: 0 20px 52px rgba(0,0,0,.6), 0 0 30px rgba(201,168,76,.08);
}

/* Role/company shown statically below the name */
.juror-role-text {
    font-size: 12px;
    color: var(--gold-60);
    text-align: center;
    line-height: 1.4;
    margin-top: 3px;
    letter-spacing: .2px;
}

/* Photo wrap — 3:4 portrait ratio */
.juror-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(201,168,76,.05);
}

/* Initials shown behind photo as fallback */
.juror-initials-fb {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; font-weight: 600; letter-spacing: 2px;
    color: rgba(201,168,76,.16);
    z-index: 0;
}

.juror-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform .5s ease, opacity .3s;
    z-index: 1;
}

.juror-card:hover .juror-photo img { transform: scale(1.06); }

/* Permanent gradient — fades bottom of photo into card bg */
.juror-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(8,14,26,1) 0%,
        rgba(8,14,26,.2) 38%,
        transparent 60%);
    z-index: 2;
    pointer-events: none;
}

/* Bio panel — cobre TODA a foto ao hover (sem cortar texto) */
.juror-bio {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,11,22,.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px 18px;
    transform: translateY(100%);
    transition: transform .32s cubic-bezier(.25,.8,.25,1);
    z-index: 4;
    border-top: 1px solid rgba(201,168,76,.22);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.juror-card:hover .juror-bio { transform: translateY(0); }

.juror-bio-text {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(221,213,192,.80);
}

/* Name block below photo */
.juror-info {
    padding: 13px 16px 15px;
}

.juror-name-text {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    text-align: center;
    letter-spacing: .5px;
}

/* Role/company shown only inside the bio hover panel */
.juror-bio-role {
    font-size: 12px;
    color: var(--gold-60);
    margin-bottom: 10px;
    line-height: 1.4;
}

.jury-hint {
    font-size: 13px;
    color: rgba(201,168,76,.30);
    text-align: center;
    margin-top: 26px;
    letter-spacing: .3px;
}

/* ─── INVESTIMENTO ────────────────────────────────── */
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}
.invest-right { display: flex; flex-direction: column; }
.trophy-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trophy-img   { width: 320px; display: block; object-fit: contain; }
.trophy-label { font-size: 10px; color: rgba(201,168,76,.38); letter-spacing: 2px; text-align: center; margin-top: 8px; }

/* card sobre fundo escuro */
.invest-card {
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
}
/* card sobre fundo branco */
.invest-card-white {
    background: #ffffff;
    border: 1.5px solid #ddd5c4;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.invest-title {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #1a1208;
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 32px;
    text-align: center;
}
.invest-badge { font-size: 10px; letter-spacing: 2px; color: #9a8870; margin-bottom: 8px; font-weight: 700; }
.invest-price { font-family: 'Oswald', sans-serif; font-size: 48px; font-weight: 600; color: var(--gold); line-height: 1.1; letter-spacing: 1px; }
.invest-price-dark { color: #1a1208; }
.invest-sub   { font-size: 14px; color: rgba(201,168,76,.48); margin-top: 4px; }
.invest-sub-dark { color: #7a6a50; }
.invest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,168,76,.10);
}
.invest-row-white { border-bottom-color: #e8e0d0; }
.invest-row:last-child { border-bottom: none; }
.invest-row-label { font-size: 14px; color: rgba(201,168,76,.55); }
.invest-row-label-dark { color: #7a6a50; }
.invest-row-val      { font-size: 16px; font-weight: 600; color: var(--text); }
.invest-row-val-dark { color: #1a1208; }
.invest-row-val-gold { font-size: 16px; font-weight: 700; color: #7a5a10; }

/* legacy */
.timeline { display: flex; flex-direction: column; gap: 20px; }
.timeline-item { padding-left: 16px; border-left: 2px solid rgba(201,168,76,.28); }
.timeline-item.active-item { border-left-color: var(--gold); }
.timeline-label { font-size: 13px; color: rgba(201,168,76,.50); margin-bottom: 3px; }
.timeline-value { font-size: 17px; color: var(--text); }
.timeline-item.active-item .timeline-value { color: var(--gold); font-weight: 600; }

/* ─── CTA FINAL ──────────────────────────────────── */
.cta-final {
    position: relative;
    padding: 100px 80px;
    text-align: center;
    overflow: hidden;
}
.cta-final-bg {
    position: absolute; inset: 0;
    background: url('../images/bg.jpg') center / cover;
    opacity: .18;
}
.cta-final-overlay {
    position: absolute; inset: 0;
    background: #07101e;
    opacity: .84;
}
.cta-final-content { position: relative; z-index: 2; }
.cta-edition { font-size: 12px; letter-spacing: 4px; color: rgba(201,168,76,.48); margin-bottom: 16px; }
.cta-title   { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 600; color: var(--gold); margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.cta-sub {
    font-size: 19px;
    color: rgba(232,223,200,.65);
    line-height: 1.8;
    margin-bottom: 44px;
}
.btn-cta-final {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 56px;
    background: var(--gold);
    color: #0e1a2e;
    border-radius: 4px;
    box-shadow: 0 0 36px var(--gold-glow);
    transition: opacity .2s;
}
.btn-cta-final:hover { opacity: .88; }
.cta-footnote { font-size: 13px; color: rgba(201,168,76,.32); margin-top: 24px; }
.cta-footnote-link {
    color: rgba(201,168,76,.50);
    transition: color .2s;
}
.cta-footnote-link:hover { color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: #060d18;
    border-top: .5px solid rgba(201,168,76,.10);
    padding: 52px 80px 28px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto 36px;
    padding-bottom: 36px;
    border-bottom: .5px solid rgba(201,168,76,.08);
}
.footer-logo {
    height: 52px;
    display: block;
    object-fit: contain;
}
.footer-contact-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(201,168,76,.35);
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(232,223,200,.50);
    transition: color .2s;
}
.footer-contact-link svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
    color: var(--dv-blue);
}
.footer-contact-link:hover { color: var(--text); }
.footer-realizacao {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.footer-realizacao-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(201,168,76,.35);
    font-weight: 700;
}
.footer-milkpoint-pill {
    background: rgba(255,255,255,.90);
    border-radius: 6px;
    padding: 6px 16px;
    display: inline-block;
}
.footer-milkpoint-pill img {
    height: 34px;
    display: block;
    object-fit: contain;
}
.footer-dv-link {
    font-size: 12px;
    color: rgba(0,87,132,.70);
    border-bottom: 1px solid rgba(0,87,132,.30);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}
.footer-dv-link:hover {
    color: #3399cc;
    border-color: #3399cc;
}
.footer-copy {
    font-size: 10px;
    color: rgba(201,168,76,.18);
    letter-spacing: 2px;
    text-align: center;
}

/* ─── INSCRIÇÃO ──────────────────────────────────── */
.insc-hero { padding-bottom: 20px; }
.insc-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
    font-size: 13px;
    color: var(--gold-60);
    letter-spacing: .3px;
}
.insc-hero-sep { color: rgba(201,168,76,.25); }

.insc-body { max-width: 720px; }

/* Section header with large number */
.insc-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: .5px solid rgba(201,168,76,.14);
}
.insc-section-num {
    font-size: 28px;
    font-weight: 700;
    color: rgba(201,168,76,.18);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -1px;
}
.insc-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
}

/* Hint bullet list */
.form-hint-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}
.form-hint-list li {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
}
.form-hint-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--gold);
    opacity: .5;
}

/* Required field marker */
.form-required { color: rgba(201,168,76,.55); font-size: 13px; }

/* Input validation states */
.input-error {
    border-color: rgba(239,68,68,.50) !important;
    background: rgba(239,68,68,.04) !important;
}
.form-error {
    font-size: 12px;
    color: rgba(239,68,68,.75);
    margin-top: 5px;
}

/* Char counter row */
.form-char-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 5px;
}
.char-over { color: rgba(239,68,68,.70) !important; }

/* Submit area */
.insc-submit-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: .5px solid rgba(201,168,76,.12);
}
.insc-submit-btn {
    font-size: 16px;
    padding: 18px 80px;
    letter-spacing: 1px;
}
.insc-submit-note {
    font-size: 13px;
    color: rgba(201,168,76,.32);
    text-align: center;
    line-height: 1.6;
}
.insc-submit-error {
    font-size: 13px;
    color: rgba(239,68,68,.70);
    text-align: center;
}

/* Success state */
.insc-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 20px 64px;
}
.insc-success-icon {
    width: 52px; height: 52px;
    color: #4ade80;
    border: 1.5px solid rgba(74,222,128,.30);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.insc-success-icon svg { width: 28px; height: 28px; }
.insc-success-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--gold);
    margin-bottom: 12px;
}
.insc-success-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 32px;
}
.insc-success-text strong { color: var(--gold-60); font-weight: 600; }
.insc-success-divider {
    border: none;
    border-top: .5px solid rgba(201,168,76,.18);
    width: 100%;
    margin-bottom: 24px;
}
.insc-success-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--dim);
    margin-bottom: 18px;
}
.insc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,.14);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    margin-bottom: 28px;
    text-align: left;
}
.insc-step-card {
    background: var(--bg2);
    padding: 16px 14px;
}
.insc-step-n {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: rgba(201,168,76,.18);
    line-height: 1;
    margin-bottom: 8px;
}
.insc-step-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-60);
    letter-spacing: .3px;
    margin-bottom: 5px;
}
.insc-step-desc {
    font-size: 12px;
    color: var(--dim);
    line-height: 1.55;
}
.insc-step-link { color: var(--gold-60); border-bottom: .5px solid rgba(201,168,76,.30); }
.insc-success-spam {
    font-size: 12px;
    color: var(--dim);
    margin-bottom: 28px;
}
.insc-success-spam strong { color: var(--muted); }
.insc-success-contact {
    font-size: 12px;
    color: rgba(201,168,76,.35);
    margin-top: 20px;
}
.insc-success-contact a {
    color: var(--gold-60);
    border-bottom: .5px solid rgba(201,168,76,.25);
    padding-bottom: 1px;
    transition: color .2s;
}
.insc-success-contact a:hover { color: var(--gold); }

@media (max-width: 600px) {
    .insc-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── REGULAMENTO ────────────────────────────────── */
.reg-hero {
    background: var(--bg2);
    padding: 32px 80px 24px;
    border-bottom: 1px solid rgba(201,168,76,.18);
    text-align: center;
}
.reg-eyebrow { font-size: 11px; letter-spacing: 3px; color: var(--gold-60); margin-bottom: 10px; }
.reg-logo    { width: 150px; display: block; margin: 0 auto 10px; object-fit: contain; }
.reg-title   { font-size: 15px; font-style: italic; color: var(--muted); }

.reg-body {
    max-width: 880px;
    margin: 0 auto;
    padding: 72px 80px 96px;
}
.reg-section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin: 56px 0 18px;
    padding-bottom: 10px;
    border-bottom: .5px solid rgba(201,168,76,.18);
}
.reg-section-title:first-child { margin-top: 0; }
.reg-subsection-title { font-size: 17px; font-weight: 600; color: var(--gold-60); margin: 32px 0 12px; }
.reg-p { font-size: 16px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }

.reg-ul, .reg-ol { list-style: none; padding: 0; margin: 0 0 20px; }
.reg-ul li, .reg-ol li {
    font-size: 16px; color: var(--muted);
    line-height: 1.9; padding: 4px 0 4px 26px;
    position: relative;
}
.reg-ul li::before {
    content: ''; position: absolute; left: 0; top: 13px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); opacity: .6;
}
.reg-ol { counter-reset: rc; }
.reg-ol li { counter-increment: rc; }
.reg-ol li::before {
    content: counter(rc) ".";
    position: absolute; left: 0;
    color: var(--gold); font-weight: 600; font-size: 15px;
}

.reg-table { width: 100%; border-collapse: collapse; margin: 0 0 24px; }
.reg-table th {
    background: rgba(201,168,76,.10); color: var(--gold);
    padding: 13px 18px; text-align: left; font-size: 13px; font-weight: 600;
    letter-spacing: .5px; border-bottom: 1px solid rgba(201,168,76,.22);
}
.reg-table td {
    padding: 13px 18px; font-size: 15px; color: var(--muted);
    border-bottom: .5px solid rgba(201,168,76,.08);
}
.reg-table td:last-child { color: var(--gold); font-weight: 600; }

.reg-divider { border: none; border-top: 1px solid rgba(201,168,76,.14); margin: 64px 0; }

.reg-form-section-title { font-size: 28px; font-weight: 700; color: var(--gold); text-align: center; margin-bottom: 10px; }
.reg-form-subtitle      { font-size: 15px; font-style: italic; color: var(--muted); text-align: center; margin-bottom: 52px; }

/* ─── FORM ───────────────────────────────────────── */
.form-group { margin-bottom: 28px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .8px; color: var(--gold-60); margin-bottom: 8px; }
.form-hint  { font-size: 14px; color: var(--dim); line-height: 1.55; margin-bottom: 8px; }

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.20);
    border-radius: 5px;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-60); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(201,168,76,.25); }
.form-select option { background: #111e32; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-char-hint { font-size: 12px; color: var(--dim); text-align: right; margin-top: 5px; }

.form-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group-title {
    font-size: 18px; font-weight: 600; color: var(--gold);
    margin: 44px 0 22px; padding-bottom: 10px;
    border-bottom: .5px solid rgba(201,168,76,.18);
}
.form-section-badge {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold);
    background: rgba(201,168,76,.10); border: 1px solid rgba(201,168,76,.25);
    border-radius: 20px; padding: 5px 16px; margin-bottom: 20px;
}
.form-submit-row { display: flex; justify-content: center; margin-top: 52px; }
.btn-submit {
    font-size: 16px; font-weight: 700; letter-spacing: .8px;
    padding: 18px 64px;
    background: var(--gold); color: #0e1a2e;
    border: none; border-radius: 4px; cursor: pointer;
    box-shadow: 0 0 32px var(--gold-glow);
    transition: opacity .2s;
}
.btn-submit:hover { opacity: .88; }

/* ─── NAVBAR EARLY BIRD BADGE (#8) ──────────────── */
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: .5; }
}
.earlybird-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4ade80;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 20px;
    padding: 6px 14px;
}
.earlybird-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ─── COUNTDOWN TIMER (#1) ───────────────────────── */
.countdown-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(8,14,26,.70);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px;
    padding: 18px 28px 20px;
    backdrop-filter: blur(8px);
}
.countdown-eyebrow {
    font-size: 13px;
    letter-spacing: .3px;
    color: rgba(255,255,255,.72);
    font-weight: 500;
}
.countdown-eyebrow strong {
    color: var(--gold);
    font-weight: 700;
}
.countdown-row {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}
.cd-num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}
.cd-unit {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(201,168,76,.45);
    margin-top: 4px;
}
.cd-sep {
    font-size: 28px;
    font-weight: 300;
    color: rgba(201,168,76,.30);
    line-height: 1;
    padding-top: 6px;      /* alinha visualmente com os dígitos */
    align-self: flex-start;
}

/* ─── STATS ROW ─────────────────────────────────── */
.stats-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.stat-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px 20px;
}
.stat-divider {
    width: 1px;
    background: rgba(201,168,76,.20);
    flex-shrink: 0;
    align-self: stretch;
    margin: 16px 0;
}
.stat-icon {
    width: 28px; height: 28px;
    color: rgba(201,168,76,.60);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2px;
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}
.stat-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 120px;
}
/* legacy grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ─── CATEGORY ICONS (#3) ───────────────────────── */
.cat-icon {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: rgba(201,168,76,.45);
    transition: color .2s;
}
.cat-icon svg { width: 18px; height: 18px; }
.cat-item:hover .cat-icon,
.cat-item.active .cat-icon { color: var(--gold); }

/* ─── JURY CREDIBILITY LINE (#4) ────────────────── */
.jury-credibility {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: .3px;
    font-style: italic;
}

/* ─── HORIZONTAL TIMELINE (#5) ──────────────────── */
.timeline-h-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 8px;
}
.timeline-h {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    min-width: 680px;
    padding: 0 20px;
}

/* connecting line */
.timeline-h-track {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background: rgba(201,168,76,.18);
}

.timeline-h-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.timeline-h-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,.30);
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}
.timeline-h-dot svg { width: 16px; height: 16px; color: transparent; }

/* Active step */
.tl-active .timeline-h-dot {
    border-color: var(--gold);
    background: rgba(201,168,76,.10);
    box-shadow: 0 0 16px rgba(201,168,76,.25);
}
.tl-active .timeline-h-dot svg { color: var(--gold); }
.tl-active .tl-title { color: var(--gold); font-weight: 600; }
.tl-active .tl-date  { color: var(--gold-60); }

/* section heading for Cronograma */
.tl-section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: none;
    margin: 0 0 40px;
    line-height: 1.1;
}

.tl-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 10px;
    display: inline-block;
}
.tl-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 6px;
}
.tl-date {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}
.tl-event {
    font-size: 12px;
    letter-spacing: 1.2px;
    color: var(--gold-60);
    margin-top: 4px;
}

/* ─── TIMELINE HEX ICONS ─────────────────────────── */
.tl-hex-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.tl-hex-icon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tl-hex-done {
    width: 80px; height: 80px;
    background: var(--gold);
    color: #0e1a2e;
}
.tl-hex-done svg { width: 28px; height: 28px; }
.tl-hex-active {
    width: 64px; height: 64px;
    background: rgba(201,168,76,.18);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: var(--gold);
    box-shadow: 0 0 24px rgba(201,168,76,.35);
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}
.tl-hex-active svg { width: 22px; height: 22px; }
.tl-hex-future {
    width: 50px; height: 50px;
    background: rgba(255,255,255,.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
/* badge variants */
.tl-badge-closed {
    font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
    color: rgba(255,255,255,.50);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 20px; padding: 4px 12px; margin-bottom: 10px;
    display: inline-block;
}
.tl-badge-open {
    font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
    color: #4ade80;
    background: rgba(74,222,128,.10);
    border: 1px solid rgba(74,222,128,.30);
    border-radius: 20px; padding: 4px 12px; margin-bottom: 10px;
    display: inline-block;
}
.tl-badge-soon {
    font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
    color: #c9a84c;
    background: rgba(201,168,76,.10);
    border: 1px solid rgba(201,168,76,.32);
    border-radius: 20px; padding: 4px 12px; margin-bottom: 10px;
    display: inline-block;
}
/* section-dark timeline overrides */
.section-dark .timeline-h-track { background: rgba(255,255,255,.08); }
.section-dark .tl-title  { color: rgba(255,255,255,.70); }
.section-dark .tl-date   { color: rgba(255,255,255,.45); }
.section-dark .section-label { color: var(--gold); }

/* ─── FOOTER NEW ─────────────────────────────────── */
.footer-new {
    background: #080d18;
    border-top: 1px solid rgba(201,168,76,.12);
    padding: 24px 80px;
}
.footer-new-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-new-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-realizacao-label {
    font-size: 12px;
    color: rgba(201,168,76,.40);
    letter-spacing: 1px;
    font-weight: 600;
}
.footer-logo-pill {
    background: rgba(255,255,255,.90);
    border-radius: 6px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
}
.footer-logo-pill img {
    height: 32px;
    display: block;
    object-fit: contain;
}
.footer-new-right {}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.25);
    letter-spacing: .3px;
}

/* ─── CTA REALIZAÇÃO / LOGOS (#7) ───────────────── */
.cta-realizacao {
    margin-top: 52px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.cta-realizacao-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(201,168,76,.30);
    font-weight: 600;
}
.cta-realizacao-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.cta-logo-pill {
    background: rgba(255,255,255,.92);
    border-radius: 8px;
    padding: 8px 22px;
}
.cta-logo-pill img {
    height: 42px;
    display: block;
    object-fit: contain;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .navbar  { padding: 13px 48px; }
    .section { padding: 72px 60px; }
    .cta-final { padding: 80px 60px; }
    .reg-body { padding: 60px 60px 80px; }
    .reg-hero { padding: 28px 60px 20px; }
    .hero-content { padding: 56px 60px 64px; }
    .hero-body { gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-content   { padding: 56px 40px 64px; }
    .hero-body      { grid-template-columns: 1fr; gap: 36px; }
    .hero-medal-col { display: none; }
    .hero-cta-col   { align-items: center; text-align: center; }
    .hero-actions   { justify-content: center; }
    .hero-tagline-title { font-size: 26px; }
    .section        { padding: 60px 40px; }
    .section-about  { padding: 40px 40px; }
    .section-stats-dark { padding: 52px 40px; }
    .stats-row      { flex-wrap: wrap; }
    .stat-col       { min-width: calc(50% - 1px); padding: 16px 8px; }
    .stat-divider   { display: none; }
    .invest-grid    { grid-template-columns: 1fr; gap: 28px; }
    .trophy-col     { display: none; }
    .footer-new     { padding: 24px 28px; }
    .footer-new-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .steps-new-track { display: none; }
    .steps-line-new  { display: none; }
    .steps-new      { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .step-new       { min-width: 130px; flex: none; }
    .step-n         { font-size: 60px; }
}

@media (max-width: 768px) {
    .event-strip { padding: 7px 24px; }
    .event-strip-tag { display: none; }
    .event-strip-cta { display: none; }
    .footer { padding: 40px 28px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .navbar  { padding: 12px 24px; }
    .navbar-logo img { height: 44px; }
    .btn-ver-evento { display: none; }
    .earlybird-badge { display: none; }
    .section { padding: 56px 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .invest-grid { grid-template-columns: 1fr; gap: 36px; }
    .trophy-col { display: none; }
    .hero-content { padding: 48px 24px 56px; }
    .hero-body { gap: 28px; }
    .hero-logo          { max-width: 280px; }
    .hero-sub           { font-size: 17px; }
    .hero-tagline       { font-size: 15px; }
    .hero-tagline-title { font-size: 20px; }
    .invest-grid        { grid-template-columns: 1fr; gap: 28px; }
    .trophy-col         { display: none; }
    .cd-num { font-size: 26px; }
    .cd-block { min-width: 36px; }
    .countdown-wrap { padding: 12px 18px 14px; }
    .cta-title { font-size: 38px; }
    .cta-final { padding: 64px 28px; }
    .reg-body { padding: 44px 24px 72px; }
    .reg-hero { padding: 24px 24px 16px; }
    .form-name-row { grid-template-columns: 1fr; }
    .juror-card { width: calc(50% - 10px); }
    .timeline-h { min-width: 480px; }
}

/* ─── ENVIO PAGE — SUCCESS STATE ────────────────── */
.envio-success {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 0 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.envio-success-icon {
    width: 56px; height: 56px;
    color: var(--gold);
    margin-bottom: 4px;
}
.envio-success-icon svg { width: 100%; height: 100%; }
.envio-success-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}
.envio-success-text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.envio-success-spam {
    font-size: 13px;
    color: rgba(201,168,76,.45);
}
.envio-success-contact {
    font-size: 13px;
    color: rgba(201,168,76,.35);
    margin-top: 4px;
}
.envio-success-contact a {
    color: rgba(201,168,76,.6);
    text-decoration: none;
    transition: color .2s;
}
.envio-success-contact a:hover { color: var(--gold); }

/* ─── ENVIO PAGE — CODE ENTRY ────────────────────── */
.envio-code-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 28px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.envio-code-icon {
    width: 72px; height: 72px;
    color: rgba(201,168,76,.35);
    margin-bottom: 8px;
}
.envio-code-icon svg { width: 100%; height: 100%; }
.envio-code-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
}
.envio-code-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 400px;
}
.envio-code-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}
.envio-code-input {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 24px;
}
.envio-code-btn {
    font-size: 15px;
    padding: 16px 56px;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-loading { opacity: .72; cursor: not-allowed; }
.btn-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(14,26,46,.3);
    border-top-color: #0e1a2e;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.envio-code-note {
    font-size: 13px;
    color: rgba(201,168,76,.32);
    margin-top: 8px;
}
.envio-code-note a {
    color: rgba(201,168,76,.55);
    transition: color .2s;
}
.envio-code-note a:hover { color: var(--gold); }

/* ─── ENVIO PAGE — INFO BAR ──────────────────────── */
.envio-info-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}
.envio-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 120px;
}
.envio-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(201,168,76,.40);
}
.envio-info-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}
.envio-info-sep {
    width: 1px;
    background: rgba(201,168,76,.15);
    align-self: stretch;
    flex-shrink: 0;
}

/* ─── ENVIO PAGE — FILE UPLOAD ───────────────────── */
.upload-zone {
    position: relative;
    border: 1.5px dashed rgba(201,168,76,.25);
    border-radius: 10px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: rgba(201,168,76,.02);
    overflow: hidden;
}
.upload-zone:hover {
    border-color: rgba(201,168,76,.45);
    background: rgba(201,168,76,.05);
}
.upload-zone-error {
    border-color: rgba(239,68,68,.45) !important;
    background: rgba(239,68,68,.03) !important;
}
.upload-zone-icon {
    width: 48px; height: 48px;
    color: rgba(201,168,76,.30);
    margin-bottom: 4px;
}
.upload-zone-icon svg { width: 100%; height: 100%; }
.upload-zone-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-60);
}
.upload-zone-hint {
    font-size: 13px;
    color: var(--dim);
}
/* Full-area invisible file input */
.upload-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-file-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.upload-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 6px;
    padding: 10px 14px;
}
.upload-file-icon {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.upload-file-icon svg { width: 18px; height: 18px; }
.upload-file-icon-img {
    background: rgba(201,168,76,.10);
    color: var(--gold-60);
}
.upload-file-icon-doc {
    background: rgba(0,87,132,.15);
    color: rgba(0,87,132,.85);
    color: #5ab4d6;
}
.upload-file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.upload-file-name {
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.upload-file-size {
    font-size: 12px;
    color: var(--dim);
}
.upload-file-remove {
    width: 28px; height: 28px;
    border: none;
    background: rgba(239,68,68,.08);
    color: rgba(239,68,68,.55);
    border-radius: 4px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
    padding: 0;
}
.upload-file-remove:hover {
    background: rgba(239,68,68,.18);
    color: rgba(239,68,68,.85);
}
.upload-file-remove svg { width: 12px; height: 12px; }
.upload-count {
    font-size: 12px;
    color: rgba(201,168,76,.40);
    text-align: right;
    margin-top: 6px;
}

/* ─── ENVIO PAGE — QUESTION HEADER ──────────────── */
.envio-q-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 40px 0 16px;
}
.envio-q-header:first-of-type { margin-top: 0; }
.envio-q-num {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}
.envio-q-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--fg);
    margin: 0;
    line-height: 1.3;
}
.envio-q-peso {
    font-size: 13px;
    font-weight: 600;
    color: #5ab4d6;
    margin-left: 6px;
}

/* ─── form-hint bullet list ─────────────────────── */
.form-hint-list {
    margin: 6px 0 12px 20px;
    padding: 0;
    list-style: disc;
}
.form-hint-list li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── ENVIO PAGE — CRITERIA BOX ──────────────────── */
.envio-criterios {
    background: rgba(0,87,132,.08);
    border: 1px solid rgba(0,87,132,.22);
    border-radius: 10px;
    padding: 28px 32px;
    margin: 40px 0 0;
}
.envio-criterios-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(90,180,214,.55);
    margin-bottom: 18px;
}
.envio-criterios-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.envio-criterio-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "nome peso" "desc desc";
    gap: 4px 12px;
    padding: 12px 0;
    border-bottom: .5px solid rgba(0,87,132,.18);
}
.envio-criterio-item:last-child { border-bottom: none; }
.envio-criterio-nome {
    grid-area: nome;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    align-self: center;
}
.envio-criterio-peso {
    grid-area: peso;
    font-size: 13px;
    font-weight: 700;
    color: #5ab4d6;
    letter-spacing: .3px;
    align-self: center;
    white-space: nowrap;
}
.envio-criterio-desc {
    grid-area: desc;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}
.envio-criterios-note {
    font-size: 12px;
    color: rgba(90,180,214,.38);
    font-style: italic;
    line-height: 1.6;
    margin-top: 4px;
}

/* ─── ENVIO — IMAGE THUMBNAILS ───────────────────── */
.upload-thumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 6px;
}
.upload-thumb-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 80px;
}
.upload-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,.22);
    display: block;
    background: rgba(201,168,76,.04);
}
.upload-thumb-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: rgba(201,168,76,.07);
    border: 1px dashed rgba(201,168,76,.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,.35);
}
.upload-thumb-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    width: 80px;
}
.upload-thumb-info .upload-file-name {
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    display: block;
}
.upload-thumb-info .upload-file-size {
    font-size: 10px;
}
.upload-thumb-item .upload-file-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.30);
    color: rgba(239,68,68,.75);
    padding: 0;
}
.upload-thumb-item .upload-file-remove:hover {
    background: rgba(239,68,68,.28);
    color: rgba(239,68,68,1);
}
.upload-thumb-item .upload-file-remove svg { width: 10px; height: 10px; }

/* ─── ENVIO — PAGED NAVIGATION ───────────────────── */
.envio-page-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 36px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,.10);
}
.envio-page-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(201,168,76,.45);
    text-transform: uppercase;
    flex: 1;
}
.envio-page-dots {
    display: flex;
    gap: 6px;
}
.envio-page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201,168,76,.15);
    transition: background .25s, transform .25s;
}
.envio-page-dot.active {
    background: var(--gold);
    transform: scale(1.25);
}
.envio-page-dot.done {
    background: rgba(201,168,76,.40);
}
.envio-page-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(201,168,76,.10);
}
.envio-page-nav-right {
    margin-left: auto;
}
.btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid rgba(201,168,76,.22);
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-prev:hover {
    border-color: rgba(201,168,76,.45);
    color: var(--gold-60);
}

/* ─── RESPONSIVE (envio additions) ──────────────── */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 40px; }
    /* Jury: single column on very small screens */
    .juror-card { width: 100%; max-width: 320px; }
    .envio-page-nav { flex-direction: column-reverse; gap: 10px; }
    .envio-page-nav .btn-prev,
    .envio-page-nav .btn-submit { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   AUTH (Login) — /admin e /juri
═══════════════════════════════════════════════════ */
.auth-wrap {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}
.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg2);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 16px;
    padding: 48px 40px 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.auth-logo {
    width: 180px;
    display: block;
    margin: 0 auto 28px;
    object-fit: contain;
}
.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 6px;
}
.auth-subtitle {
    font-size: 13px;
    color: var(--dim);
    text-align: center;
    margin-bottom: 28px;
}
.auth-card .form-group { margin-bottom: 20px; }

.auth-help {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.auth-help-label {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}
.auth-help-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.auth-help-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    opacity: .85;
    transition: opacity .15s;
}
.auth-help-item:hover { opacity: 1; }
.auth-help-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   ADMIN DASHBOARD
═══════════════════════════════════════════════════ */
.admin-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top bar */
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14,26,46,.98);
    border-bottom: 1px solid rgba(201,168,76,.18);
    padding: 12px 32px;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    gap: 16px;
    flex-wrap: wrap;
}
.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.admin-topbar-logo { height: 38px; object-fit: contain; }
.admin-topbar-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-60);
}
.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.admin-tab-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(201,168,76,.22);
    background: transparent;
    color: var(--muted);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.admin-tab-btn.active,
.admin-tab-btn:hover {
    background: rgba(201,168,76,.12);
    color: var(--gold);
    border-color: var(--gold-60);
}
.admin-logout-btn {
    font-size: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(239,68,68,.28);
    background: transparent;
    color: rgba(239,68,68,.55);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s;
    font-weight: 600;
}
.admin-logout-btn:hover {
    background: rgba(239,68,68,.10);
    color: rgba(239,68,68,.85);
}
.juri-header-user {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    padding: 0 4px;
}

/* Content area */
.admin-content {
    flex: 1;
    padding: 28px 32px 48px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.admin-loading { color: var(--dim); padding: 48px; text-align: center; }
.admin-empty   { color: var(--dim); padding: 48px; text-align: center; font-style: italic; }

/* Filters */
.admin-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.admin-search {
    flex: 1;
    min-width: 220px;
    font-size: 14px;
    padding: 10px 14px;
}
.admin-filter-sel {
    min-width: 180px;
    font-size: 14px;
    padding: 10px 14px;
}

/* Table */
.admin-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,.14);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    background: rgba(201,168,76,.07);
    color: rgba(201,168,76,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 14px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(201,168,76,.14);
}
.admin-table td {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--muted);
    border-bottom: .5px solid rgba(201,168,76,.06);
    vertical-align: middle;
}
.admin-table tbody tr {
    cursor: pointer;
    transition: background .15s;
}
.admin-table tbody tr:hover { background: rgba(201,168,76,.04); }
.admin-row-selected { background: rgba(201,168,76,.07) !important; }
.admin-row-top3 { background: rgba(201,168,76,.04); }

.admin-td-id    { font-size: 12px; color: var(--dim); font-weight: 700; white-space: nowrap; }
.admin-td-email { font-size: 13px; color: var(--dim); }
.admin-td-center { text-align: center; }
.admin-td-actions { white-space: nowrap; }
.admin-td-produto { font-size: 14px; font-weight: 600; color: var(--text); }
.admin-td-empresa { font-size: 12px; color: var(--dim); margin-top: 2px; }
.admin-td-rank  { font-size: 18px; text-align: center; }

/* Status badges */
.admin-status-badge {
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px; white-space: nowrap;
    display: inline-block;
}
.status-aguardando  { background: rgba(148,163,184,.10); color: #94a3b8; border: 1px solid rgba(148,163,184,.25); }
.status-paga        { background: rgba(74,222,128,.08);  color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.status-enviado     { background: rgba(96,165,250,.08);  color: #60a5fa; border: 1px solid rgba(96,165,250,.25); }
.status-avaliacao   { background: rgba(251,191,36,.08);  color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.status-finalista   { background: rgba(201,168,76,.12);  color: var(--gold); border: 1px solid rgba(201,168,76,.30); }
.status-vencedora   { background: rgba(201,168,76,.20);  color: var(--gold); border: 1px solid var(--gold-60); }
.status-desclassif  { background: rgba(239,68,68,.08);   color: rgba(239,68,68,.70); border: 1px solid rgba(239,68,68,.20); }

/* Category badge */
.admin-cat-badge {
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px;
    background: rgba(0,87,132,.15); color: #5ab4d6;
    border: 1px solid rgba(0,87,132,.25);
    white-space: nowrap;
    display: inline-block;
}

/* Score */
.admin-score      { font-size: 17px; font-weight: 700; color: var(--gold); }
.admin-score-lg   { font-size: 20px; }
.admin-score-count{ font-size: 12px; color: var(--dim); margin-left: 3px; }
.admin-no-score   { color: var(--dim); font-size: 13px; }
.admin-rank-gold, .admin-rank-silver, .admin-rank-bronze { font-size: 20px; }

/* Actions in table */
.admin-action-btn {
    width: 30px; height: 30px;
    border: 1px solid rgba(201,168,76,.25);
    background: rgba(201,168,76,.05);
    color: var(--gold-60);
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
    padding: 0;
    vertical-align: middle;
    margin-right: 6px;
}
.admin-action-btn svg { width: 14px; height: 14px; }
.admin-action-btn:hover { background: rgba(201,168,76,.14); color: var(--gold); }
.admin-status-sel {
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.18);
    color: var(--muted);
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
}
.admin-status-sel option { background: #111e32; }

/* Pagination */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
}
.admin-pagination button {
    font-size: 13px;
    padding: 8px 18px;
    border: 1px solid rgba(201,168,76,.22);
    background: transparent;
    color: var(--gold-60);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s;
}
.admin-pagination button:hover:not(:disabled) { background: rgba(201,168,76,.08); }
.admin-pagination button:disabled { opacity: .35; cursor: default; }

/* Detail panel */
.admin-detail-panel {
    margin-top: 24px;
    background: rgba(201,168,76,.04);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 12px;
    overflow: hidden;
}
.admin-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(201,168,76,.12);
}
.admin-detail-title { font-size: 18px; font-weight: 700; color: var(--gold); }
.admin-detail-close {
    font-size: 16px;
    color: var(--dim);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .15s;
}
.admin-detail-close:hover { color: var(--text); }
.admin-detail-body { padding: 24px; }
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.admin-detail-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    color: rgba(201,168,76,.40); margin-bottom: 5px;
}
.admin-detail-val { font-size: 14px; color: var(--text); }
.admin-detail-code {
    font-family: monospace; font-size: 16px; letter-spacing: 2px; color: var(--gold);
}
.admin-code-msg {
    background: rgba(74,222,128,.06); border: 1px solid rgba(74,222,128,.22);
    border-radius: 6px; padding: 12px 16px;
    font-size: 14px; color: #4ade80; margin-top: 8px;
}
.admin-status-msg {
    background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.18);
    border-radius: 6px; padding: 12px 16px;
    font-size: 14px; color: var(--gold-60); margin-top: 8px;
}

/* Section header (users) */
.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.admin-section-title { font-size: 20px; font-weight: 700; color: var(--gold); }
.admin-add-btn {
    font-size: 13px; font-weight: 600;
    padding: 9px 20px;
    border: 1px solid rgba(201,168,76,.30);
    background: rgba(201,168,76,.08);
    color: var(--gold-60);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.admin-add-btn:hover { background: rgba(201,168,76,.15); color: var(--gold); }
.admin-user-form {
    background: rgba(201,168,76,.04);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}
.admin-papel-badge {
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px;
    display: inline-block;
}
.admin-papel-admin  { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.28); }
.admin-papel-jurado { background: rgba(0,87,132,.15);   color: #5ab4d6;     border: 1px solid rgba(0,87,132,.28); }
.admin-ativo   { font-size: 13px; color: #4ade80; }
.admin-inativo { font-size: 13px; color: rgba(239,68,68,.55); }

/* ═══════════════════════════════════════════════════
   JURI PORTAL
═══════════════════════════════════════════════════ */
.juri-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.juri-header {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(14,26,46,.98);
    border-bottom: 1px solid rgba(201,168,76,.18);
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
}
.juri-back-btn {
    font-size: 13px; font-weight: 600; letter-spacing: .3px;
    padding: 8px 16px;
    border: 1px solid rgba(201,168,76,.25);
    background: rgba(201,168,76,.06);
    color: var(--gold-60);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.juri-back-btn:hover { background: rgba(201,168,76,.14); color: var(--gold); }
.juri-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.juri-header-produto { font-size: 16px; font-weight: 700; color: var(--gold); }
.juri-header-empresa { font-size: 12px; color: var(--dim); }

/* Cards (lista de inscrições) */
.juri-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    padding: 4px 0;
}
.juri-card {
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.16);
    border-radius: 12px;
    padding: 24px 22px 20px;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .15s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.juri-card:hover {
    border-color: rgba(201,168,76,.36);
    background: rgba(201,168,76,.08);
    transform: translateY(-2px);
}
.juri-card-done {
    opacity: .75;
    border-color: rgba(74,222,128,.22) !important;
}
.juri-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.juri-card-done-badge {
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px;
    background: rgba(74,222,128,.10); color: #4ade80;
    border: 1px solid rgba(74,222,128,.25);
}
.juri-card-produto {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-top: 4px;
}
.juri-card-empresa { font-size: 13px; color: var(--dim); }
.juri-card-score {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.juri-card-score-val { font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
.juri-card-score-lbl { font-size: 13px; color: var(--dim); }
.juri-card-arrow { font-size: 13px; color: var(--gold-60); margin-top: 10px; }

/* Step tabs */
.juri-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(8,14,26,.50);
    border-bottom: 1px solid rgba(201,168,76,.10);
}
.juri-step-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    transition: color .15s;
    letter-spacing: .03em;
}
.juri-step-btn.active { color: var(--gold); }
.juri-step-btn:hover:not(.active) { color: var(--text); }
.juri-step-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.juri-step-btn.active .juri-step-num {
    background: rgba(201,168,76,.18);
    border-color: rgba(201,168,76,.45);
    color: var(--gold);
}
.juri-step-sep { color: var(--dim); font-size: 13px; }
.juri-step-done {
    font-size: 11px; color: #4ade80;
    background: rgba(74,222,128,.10);
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 4px; padding: 1px 6px;
}
.juri-step-draft {
    font-size: 10px; color: rgba(201,168,76,.7);
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 4px; padding: 1px 6px;
}
.juri-step-nav {
    display: flex;
    justify-content: flex-end;
    padding: 32px 0 8px;
}

/* Evaluation content */
.juri-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}
.juri-section {
    padding: 28px 32px 56px;
    max-width: 780px;
    margin: 0 auto;
}
.juri-section-full {
    max-width: 780px;
}
.juri-section + .juri-section { /* não mais usado, mas mantido para segurança */ }
.juri-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: .5px solid rgba(201,168,76,.14);
}
/* ── Content blocks ──────────────── */
.juri-block {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.juri-block:last-child { border-bottom: none; }
.juri-block-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .65;
    margin: 0 0 8px;
}
.juri-block-destaque {
    background: rgba(201,168,76,.05);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 4px;
}
.juri-block-destaque .juri-block-title { opacity: 1; }

/* ── Download CTA ────────────────── */
.juri-dl-cta {
    background: rgba(96,165,250,.06);
    border: 1px solid rgba(96,165,250,.22);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 4px 0 8px;
}
.juri-dl-cta-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #93c5fd;
}
.juri-dl-cta-head svg { width: 22px; height: 22px; flex-shrink: 0; }
.juri-dl-cta-head strong { display: block; font-size: 14px; color: #bfdbfe; }
.juri-dl-cta-head span  { font-size: 12px; color: rgba(147,197,253,.65); }
.juri-dl-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.juri-dl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    padding: 8px 12px;
}
.juri-dl-info { flex: 1; min-width: 0; }
.juri-dl-name {
    display: block;
    font-size: 13px;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.juri-dl-meta { font-size: 11px; color: var(--muted); }
.juri-dl-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    background: rgba(96,165,250,.10);
    border: 1px solid rgba(96,165,250,.28);
    color: #93c5fd;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}
.juri-dl-btn:hover:not(:disabled) { background: rgba(96,165,250,.20); }
.juri-dl-btn:disabled { opacity: .45; cursor: default; }

/* ── Evaluation cards ────────────── */
.juri-eval-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.juri-eval-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 16px 18px 12px;
    transition: border-color .2s;
}
.juri-eval-card:focus-within {
    border-color: rgba(201,168,76,.30);
}
.juri-eval-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.juri-eval-card-nome {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #cbd5e1;
}
.juri-eval-card-peso {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,168,76,.10);
    border: 1px solid rgba(201,168,76,.22);
    border-radius: 4px;
    padding: 2px 8px;
    flex-shrink: 0;
}
.juri-eval-card-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 12px;
}
.juri-eval-slider-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}
.juri-eval-slider-row .juri-range { flex: 1; margin-top: 0; }
.juri-eval-score {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    min-width: 46px;
    text-align: right;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}
.juri-eval-score-dim { color: var(--dim); font-size: 22px; }
.juri-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    white-space: pre-line;
}
.juri-text-destaque {
    background: rgba(201,168,76,.05);
    border-left: 3px solid rgba(201,168,76,.35);
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
}
.juri-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.juri-info-block { }

/* File list (juri) */
.juri-files { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.juri-file-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(201,168,76,.04); border: 1px solid rgba(201,168,76,.12);
    border-radius: 6px; padding: 10px 14px;
}
.juri-file-icon { font-size: 20px; flex-shrink: 0; }
.juri-file-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.juri-file-dl {
    font-size: 13px; font-weight: 600;
    color: #5ab4d6; white-space: nowrap; flex-shrink: 0;
    transition: color .15s;
}
.juri-file-dl:hover { color: #7ecfe8; }

/* Eval section */
.juri-eval-section {
    background: transparent;
}
.juri-criterios { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.juri-criterio { display: flex; flex-direction: column; gap: 8px; }
.juri-criterio-header { display: flex; align-items: flex-start; }
.juri-criterio-nome-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.juri-criterio-top-row {
    display: flex; align-items: center; gap: 8px;
}
.juri-criterio-nome {
    font-size: 15px; font-weight: 700; color: var(--text);
    letter-spacing: .2px;
}
.juri-criterio-desc {
    font-size: 12px; color: var(--dim); line-height: 1.55;
    margin-top: 1px;
}
.juri-criterio-peso {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    color: rgba(90,180,214,.70); background: rgba(0,87,132,.16);
    border: 1px solid rgba(0,87,132,.28); border-radius: 20px;
    padding: 2px 9px; flex-shrink: 0;
}
.juri-criterio-val {
    font-size: 22px; font-weight: 700;
    color: var(--gold); min-width: 48px; text-align: right; line-height: 1;
    flex-shrink: 0;
}
.juri-range {
    width: 100%;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(201,168,76,.18);
    outline: none;
    cursor: pointer;
    margin-top: 4px;
}
.juri-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201,168,76,.45);
    cursor: pointer;
}
.juri-range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
}
.juri-range:disabled { opacity: .45; cursor: not-allowed; }
.juri-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(201,168,76,.28);
    letter-spacing: .3px;
}

/* Score preview */
.juri-score-preview {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(201,168,76,.06);
    border: 1px solid rgba(201,168,76,.22);
    border-radius: 12px;
    padding: 20px 28px;
}
.juri-score-label {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    color: rgba(201,168,76,.40); flex: 1;
}
.juri-score-num {
    font-size: 44px; font-weight: 700;
    color: var(--gold); line-height: 1; letter-spacing: -1px;
}
.juri-score-max { font-size: 18px; color: var(--dim); }

/* Eval actions */
.juri-eval-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.juri-saved-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(74,222,128,.06);
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 10px;
    padding: 16px 22px;
    font-size: 16px;
    color: #4ade80;
    margin-bottom: 24px;
}
.juri-saved-msg svg { width: 22px; height: 22px; flex-shrink: 0; }
.juri-saved-msg strong { color: var(--gold); }

/* ─── Responsive admin/juri ──────────────────────── */
@media (max-width: 900px) {
    .juri-section { padding: 20px 16px 40px; }
    .juri-steps   { padding: 10px 16px; }
    .admin-detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .admin-content    { padding: 16px 16px 48px; }
    .admin-topbar     { padding: 10px 16px; }
    .juri-section     { padding: 20px 16px 36px; }
    .juri-header      { padding: 12px 16px; }
    .admin-detail-grid { grid-template-columns: 1fr; }
    .auth-card        { padding: 36px 24px 40px; }
    .juri-cards       { grid-template-columns: 1fr; }
}

/* ─── Toast global (B5/Q27) ─────────────────────── */
.admin-toast {
    position: fixed;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 32px rgba(0,0,0,.45);
    min-width: 260px;
    max-width: 560px;
    animation: toastIn 0.25s ease;
}
.admin-toast-ok    { background: #1a2e1a; border: 1px solid #4ade80; color: #4ade80; }
.admin-toast-error { background: #2e1a1a; border: 1px solid #e57373; color: #e57373; }
.admin-toast-close {
    background: none; border: none; cursor: pointer;
    color: inherit; font-size: 16px; margin-left: auto;
    padding: 0 2px; opacity: .7;
}
.admin-toast-close:hover { opacity: 1; }
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── Modal de confirmação (Q19/Q20) ─────────────── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1800;
    background: rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
}
.modal-card {
    background: #1c1c22; border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px; padding: 36px 40px;
    width: 100%; max-width: 440px;
    box-shadow: 0 12px 48px rgba(0,0,0,.6);
}
.modal-title {
    font-size: 19px; font-weight: 700; color: var(--gold);
    margin: 0 0 16px; text-transform: uppercase; letter-spacing: .06em;
}
.modal-body { font-size: 15px; color: #ccc; line-height: 1.7; margin: 0 0 28px; }
.modal-btns { display: flex; gap: 12px; justify-content: flex-end; }
.modal-btn-cancel {
    padding: 12px 24px; border-radius: 8px; font-size: 13px; font-weight: 600;
    border: 1px solid rgba(255,255,255,.15); background: transparent; color: #aaa; cursor: pointer;
}
.modal-btn-cancel:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.modal-btn-confirm {
    padding: 12px 28px; border-radius: 8px; font-size: 13px; font-weight: 700;
    border: none; background: var(--gold); color: #0f0f14; cursor: pointer;
    text-transform: uppercase; letter-spacing: .05em;
}
.modal-btn-confirm:hover { background: #e8c96a; }

/* ─── Copiar código (Q24) ────────────────────────── */
.admin-copy-btn {
    background: none; border: 1px solid rgba(201,168,76,.35);
    border-radius: 5px; padding: 3px 6px; cursor: pointer; color: var(--gold);
    vertical-align: middle; margin-left: 8px; line-height: 0;
}
.admin-copy-btn svg { width: 14px; height: 14px; }
.admin-copy-btn:hover { background: rgba(201,168,76,.1); }

/* ─── Relatório agrupado (Q26) ───────────────────── */
.admin-relatorio-cat {
    margin-bottom: 40px;
}
.admin-relatorio-cat-title {
    font-size: 15px; font-weight: 700; color: var(--fg);
    margin: 0 0 14px; display: flex; align-items: center; gap: 10px;
    padding: 0 0 12px; border-bottom: 1px solid rgba(201,168,76,.15);
    text-transform: uppercase; letter-spacing: .05em;
}

/* ─── Chips de critério no detalhe do relatório ──── */
.admin-crit-chip {
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px; padding: 10px 14px; min-width: 160px; flex: 1;
}
.admin-crit-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; color: #aaa;
}
.admin-crit-label small { font-weight: 400; color: #666; margin-left: 4px; }
.admin-crit-val {
    font-size: 22px; font-weight: 700; color: var(--gold);
    font-family: 'Oswald', sans-serif;
}

/* ─── Tabela interna de jurados ─────────────────── */
.admin-table-inner { font-size: 13px; }
.admin-table-inner th { font-size: 11px; }

/* ─── Filtro de categoria (Q23) ──────────────────── */
.admin-filter-cat { min-width: 180px; }
