/* ============================================================
   ESTRUTURA GERAL E LAYOUT
   ============================================================ */
.sazec-public-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Cabeçalho Home */
.sazec-header {
    text-align: center;
    margin-bottom: 50px;
}

.sazec-header h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sazec-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================================
   BARRA DE PESQUISA (UNIFICADA)
   ============================================================ */
.sazec-search-box {
    position: relative;
    margin-bottom: 40px;
    max-width: 100%;
}

.sazec-search-box form {
    display: flex;
    gap: 12px;
}

.sazec-search-box input,
.sazec-search-box select {
    width: 100%;
    padding: 16px 20px !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.sazec-search-box input::placeholder {
    color: #9ca3af;
}

.sazec-search-box input:focus,
.sazec-search-box select:focus {
    border-color: #4b10ff;
    box-shadow: 0 0 0 4px rgba(75, 16, 255, 0.1);
}

.sazec-search-box select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236b7280%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
    padding-right: 40px !important;
    cursor: pointer;
}

.sazec-btn-search {
    background: #4b10ff;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 30px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.sazec-btn-search:hover {
    background: #3706cc;
}

/* ============================================================
   NÍVEL 1: GRID DE EVENTOS (CARDS)
   ============================================================ */
.sazec-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.sazec-card-wrapper {
    display: flex;
}

.sazec-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.sazec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.sazec-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f8f9fa;
}

.sazec-no-img {
    background-image: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sazec-no-img::after {
    content: "🏁 SAZEC EVENTOS";
    color: #9ca3af;
    font-weight: bold;
    font-size: 14px;
}

.sazec-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sazec-card-content h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.sazec-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.sazec-info-item span {
    margin-right: 12px;
    font-size: 16px;
}

.sazec-organizador {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* ============================================================
   NÍVEL 2: TABELA DE RESULTADOS (INTERNA)
   ============================================================ */
.sazec-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.sazec-header-left .sazec-back-link {
    text-decoration: none;
    color: #4b10ff;
    font-weight: 700;
}

.sazec-header-right {
    text-align: right;
}

.sazec-header-right h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.sazec-table-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow-x: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sazec-modern-table {
    width: 100%;
    border-collapse: collapse;
}

.sazec-modern-table th {
    background: #fff;
    padding: 15px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    border-bottom: 2px solid #f0f0f0;
}

.sazec-modern-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

.sazec-rank-circle {
    background: #f0f0f0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
}

.atleta-name-cell {
    font-weight: 600;
    color: #000;
}

.tempo-liquido-cell {
    font-weight: 800;
    color: #4b10ff;
}

.sazec-badge-faixa {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #555;
    font-weight: 700;
    border: 1px solid #e0e0e0;
}

.sazec-btn-action {
    background: #4b10ff;
    color: #fff !important;
    text-decoration: none;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

/* ============================================================
   NÍVEL 3 - CERTIFICADO PREMIUM (Ajuste Final A4 Paisagem)
   ============================================================ */
/* ============================================================
   CONTROLES DO CERTIFICADO (v3.1.26)
   ============================================================ */
.sazec-cert-controls {
    text-align: center;
    margin: 20px 0 16px;
}

.sazec-cert-action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.sazec-btn-print-main,
.sazec-btn-share-main,
.sazec-btn-download-main {
    padding: 13px 28px !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.sazec-btn-print-main {
    background: #1a1e27 !important;
    color: #fff !important;
}

.sazec-btn-print-main:hover {
    background: #2d3348 !important;
    transform: translateY(-1px);
}

.sazec-btn-share-main {
    background: #4b10ff !important;
    color: #fff !important;
}

.sazec-btn-share-main:hover {
    background: #3a0dcc !important;
    transform: translateY(-1px);
}

.sazec-btn-download-main {
    background: #f3f4f6 !important;
    color: #1a1e27 !important;
    border: 1px solid #e5e7eb !important;
}

.sazec-btn-download-main:hover {
    background: #e5e7eb !important;
    transform: translateY(-1px);
}

.sazec-share-hint {
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
}

/* ============================================================
   WRAPPER RESPONSIVO DO CERTIFICADO (v3.1.26)
   O frame tem tamanho fixo A4 (1000x700px); o wrapper aplica
   transform:scale via JS para encaixar em qualquer tela.
   ============================================================ */
.sazec-cert-responsive-wrapper {
    width: 100%;
    overflow: hidden;
    /* altura definida dinamicamente pelo JS */
}

/* Moldura Principal - Proporção A4 */
.sazec-certificate-frame {
    width: 1000px !important;
    height: 700px !important;
    margin: 0 !important;
    /* margem gerenciada pelo wrapper */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transform-origin: top left;
    /* scale parte do canto sup. esquerdo */
}

.sazec-bg-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    object-fit: fill !important;
}

.sazec-cert-inner-content {
    width: 90% !important;
    height: 85% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 20px 0 !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Cabeçalho do Certificado (Compactado) */
.sazec-cert-header {
    margin-bottom: 5px !important;
}

.sazec-produtor-logo {
    max-height: 90px !important;
    width: auto !important;
    margin-bottom: 5px !important;
    object-fit: contain !important;
}

.sazec-master-logo {
    font-size: 16px !important;
    color: #1a1e27 !important;
    font-weight: 900 !important;
    margin: 0 !important;
}

.sazec-master-logo span {
    color: #4b10ff !important;
    font-size: 10px !important;
}

.sazec-cert-type {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-size: 9px !important;
    margin: 0;
}

/* Nomes e Títulos (Reduzidos para Caber Tudo) */
.sazec-event-name {
    font-size: 16px !important;
    color: #444 !important;
    margin: 5px 0 !important;
    font-weight: 700 !important;
}

.sazec-athlete-name {
    font-size: 32px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #000 !important;
    border-bottom: 3px solid #1a1e27 !important;
    display: inline-block !important;
    padding: 0 20px !important;
    margin: 5px auto !important;
    line-height: 1.1 !important;
}

.sazec-congrats {
    font-weight: bold;
    color: #222;
    margin: 5px 0;
    font-size: 13px !important;
}

/* Bloco do Tempo */
.sazec-time-container small {
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px !important;
}

.sazec-time-val {
    font-size: 48px !important;
    /* Reduzido de 85px para 48px */
    font-weight: 900 !important;
    color: #1a1e27 !important;
    line-height: 1 !important;
    margin: 5px 0 !important;
}

/* Rodapé Técnico em 6 Colunas (Compactado) */
.sazec-data-grid-small {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    background: rgba(0, 0, 0, 0.04) !important;
    padding: 10px !important;
    border-radius: 10px !important;
    margin-top: 15px !important;
}

.sazec-grid-item {
    text-align: center !important;
    border-right: 1px solid #ccc;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.sazec-grid-item:last-child {
    border-right: none;
}

.sazec-grid-item strong {
    display: block !important;
    font-size: 13px !important;
    color: #555 !important;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.sazec-cert-footer-line {
    font-size: 10px !important;
    color: #888 !important;
    margin-top: 10px;
}

/* ============================================================
   REGRAS DE IMPRESSÃO - FORÇAR A4 PAISAGEM
   ============================================================ */

@media print {

    /* 1. Força a remoção de qualquer margem física da página */
    @page {
        size: A4 landscape;
        margin: 0 !important;
    }

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 297mm !important;
        height: 210mm !important;
        overflow: hidden !important;
        /* Remove o espaço que alguns temas de WP colocam no topo (admin bar) */
        top: 0 !important;
    }

    /* Esconde o resto */
    body * {
        visibility: hidden !important;
    }

    .sazec-no-print,
    #wpadminbar {
        display: none !important;
    }

    /* 2. Fixa o certificado no zero absoluto da folha */
    #sazec-printable-certificate {
        visibility: visible !important;
        position: fixed !important;
        /* Mudado para fixed para ignorar rolagens */
        left: 0 !important;
        top: 0 !important;
        width: 297mm !important;
        height: 210mm !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        z-index: 99999 !important;
    }

    /* 3. Garante que a imagem de fundo não tenha deslocamento */
    .sazec-bg-img {
        visibility: visible !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important;
        display: block !important;
    }

    /* Conteúdo interno alinhado */
    .sazec-cert-inner-content {
        visibility: visible !important;
        z-index: 100 !important;
        margin: 0 auto !important;
    }

    /* Garante que todos os textos internos apareçam */
    #sazec-printable-certificate * {
        visibility: visible !important;
    }
}

/* ============================================================
   MOBILE — botões do certificado em coluna (v3.1.26)
   ============================================================ */
@media (max-width: 600px) {
    .sazec-cert-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .sazec-btn-print-main,
    .sazec-btn-share-main,
    .sazec-btn-download-main {
        width: 100% !important;
        text-align: center;
    }
}

/* ============================================================
   PAGINAÇÃO (PUBLIC)
   ============================================================ */
.sazec-pagination-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 30px;
}

.sazec-pagination-container a,
.sazec-pagination-container span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: #fff;
    font-weight: bold;
    transition: 0.2s;
}

.sazec-pagination-container span.current {
    background: #1a1e27 !important;
    color: #fff !important;
    border-color: #1a1e27 !important;
}

.sazec-pagination-container a:hover {
    background: #f0f0f0 !important;
    border-color: #ccc !important;
}

/* ============================================================
   ESTILOS DE BUSCA MINI
   ============================================================ */
.sazec-btn-clear-mini {
    padding: 0 20px;
    background: #dc3545;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}


.sazec-search-form-mini {
    display: flex;
    gap: 10px;
}

.sazec-search-form-hero {
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.sazec-btn-search-hero {
    padding: 16px 32px;
    background: #1a1e27;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(26, 30, 39, 0.1);
}

.sazec-btn-search-hero:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(26, 30, 39, 0.2);
}

.sazec-btn-clear-hero {
    padding: 16px 24px;
    background: #fef2f2;
    color: #dc3545 !important;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #fecaca;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sazec-btn-clear-hero:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c !important;
}

/* ============================================================
   GRID DE SELEÇÃO DE CATEGORIAS (v2.0.0)
   ============================================================ */
.sazec-grid-selection-header {
    text-align: center;
    margin: 40px 0 30px;
}

.sazec-grid-selection-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.sazec-grid-selection-header p {
    color: #666;
    font-size: 16px;
}

.sazec-categories-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.sazec-category-selection-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sazec-category-selection-card:hover {
    transform: translateY(-5px);
    border-color: #4b10ff;
    box-shadow: 0 10px 20px rgba(75, 16, 255, 0.1);
}

.sazec-cat-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: #f3f0ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sazec-category-selection-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}

.sazec-cat-card-btn {
    font-size: 12px;
    font-weight: 800;
    color: #4b10ff;
    letter-spacing: 1px;
    border-top: 1px solid #f3f4f6;
    width: 100%;
    padding-top: 15px;
    transition: 0.3s;
}

.sazec-category-selection-card:hover .sazec-cat-card-btn {
    color: #3a0dcc;
}

/* NAVEGAÇÃO ENTRE CATEGORIAS (PREMIUM v2.0.1) */
.sazec-categories-title {
    font-size: 14px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 15px 0 10px 5px;
}

.sazec-categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 30px 0;
    padding: 10px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* ============================================================
   BOTÕES DE AÇÃO DO CERTIFICADO (PREMIUM v3.1.0)
   ============================================================ */
.sazec-cert-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sazec-cert-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.sazec-cert-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Botão Imprimir (Dark) */
.sazec-btn-print {
    background: #1e252b;
    color: #ffffff;
}

.sazec-btn-print:hover {
    background: #111518;
}

/* Botão Compartilhar (Sazec Primary Purple) */
.sazec-btn-share {
    background: #4b10ff;
    color: #ffffff;
}

.sazec-btn-share:hover {
    background: #3706cc;
}

/* Botão Baixar Imagem (Light) */
.sazec-btn-download {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.sazec-btn-download:hover {
    background: #e2e8f0;
}

/* Ícones dentro dos botões */
.sazec-cert-actions button i,
.sazec-cert-actions button span {
    font-size: 16px;
}

/* Responsividade extra para o Container do Certificado */
#sazec-cert-wrapper {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.sazec-cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0px;
    width: 100px;
    height: 90px;
    padding: 0px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.sazec-cat-link:hover {
    background: #ffffff;
    border-color: #4b10ff;
    color: #4b10ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(75, 16, 255, 0.1);
}

.sazec-cat-link.is-active {
    background: linear-gradient(135deg, #4b10ff 0%, #7042ff 100%);
    border-color: #4b10ff;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(75, 16, 255, 0.4);
}

.sazec-cat-icon-mini {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sazec-cat-link:hover .sazec-cat-icon-mini {
    transform: scale(1.2) rotate(5deg);
}

.sazec-cat-link.is-active .sazec-cat-icon-mini {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .sazec-categories-nav {
        padding: 15px;
        gap: 8px;
        justify-content: center;
    }

    .sazec-cat-link {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1 1 auto;
        /* Permite que os botões cresçam para ocupar a largura no mobile */
        justify-content: center;
    }

    /* Ajuste dos botões do certificado no mobile */
    .sazec-cert-actions {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .sazec-cert-actions button {
        width: 100%;
        /* Ocupa 100% da tela no celular */
        padding: 16px;
        font-size: 14px;
        /* Fonte levemente maior para leitura no celular */
    }
}

/* ============================================================
   RODAPÉ GLOBAL SAZEC
   ============================================================ */
.sazec-global-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 100px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    font-size: 11px;
    color: #94a3b8;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sazec-global-footer:hover {
    opacity: 1;
}

.sazec-global-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4b10ff;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 11px;
}

.sazec-global-footer a:hover {
    color: #3706cc;
    text-shadow: 0 0 10px rgba(75, 16, 255, 0.1);
}

.sazec-brand-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.sazec-brand-version {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    margin-left: 2px;
}

/* Garante que o rodapé não apareça na impressão do certificado */
@media print {
    .sazec-global-footer {
        display: none !important;
    }
}