/* /Components/Shared/Button.razor.rz.scp.css */
/*
    ============================================================================
    Título: Button Component Styles
    Descrição: Estilos para componente de botão com múltiplas variantes,
               tamanhos e estados (hover, active, disabled, loading).
    ============================================================================
*/

/* ============================================================================
   BASE BUTTON STYLES
   Estilos compartilhados por todos os botões
   ============================================================================ */

.btn[b-22o4io8j8x] {
    /* RESET de estilos padrão do navegador */
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    
    /* LAYOUT */
    display: inline-flex; /* Permite alinhar ícones e texto */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    gap: 8px; /* Espaçamento entre ícone e texto */
    
    /* TIPOGRAFIA */
    font-weight: 600; /* Semibold */
    text-decoration: none; /* Remove underline de links */
    text-align: center;
    white-space: nowrap; /* Não quebra linha */
    
    /* VISUAL */
    border-radius: 4px; /* Cantos levemente arredondados */
    
    /* TRANSIÇÕES suaves para hover */
    transition: all 0.2s ease;
    
    /* Remove outline padrão e adiciona focus visível */
    outline: none;
}

/* Estado FOCUS (acessibilidade) - anel visível ao navegar com teclado */
.btn:focus-visible[b-22o4io8j8x] {
    box-shadow: 0 0 0 3px rgba(108, 158, 163, 0.3); /* Anel na cor primária */
}


/* ============================================================================
   BUTTON SIZES - Tamanhos (small, medium, large)
   ============================================================================ */

/* SMALL - Botões pequenos para ações secundárias */
.btn--small[b-22o4io8j8x] {
    padding: 6px 16px; /* Padding compacto */
    font-size: 0.875rem; /* 14px */
    min-height: 32px; /* Altura mínima para touch targets */
}

/* MEDIUM - Tamanho padrão (mais usado) */
.btn--medium[b-22o4io8j8x] {
    padding: 10px 24px; /* Padding confortável */
    font-size: 0.9375rem; /* 15px */
    min-height: 40px;
}

/* LARGE - Botões grandes para CTAs principais */
.btn--large[b-22o4io8j8x] {
    padding: 14px 32px; /* Padding generoso */
    font-size: 1rem; /* 16px */
    min-height: 48px;
}


/* ============================================================================
   BUTTON VARIANTS - Variantes visuais
   ============================================================================ */

/* PRIMARY - Cor primária sólida (ação principal) */
.btn--primary[b-22o4io8j8x] {
    background: var(--color-primary); /* #6C9EA3 */
    color: white;
    border: 2px solid var(--color-primary);
}

.btn--primary:hover:not(:disabled)[b-22o4io8j8x] {
    background: var(--color-dark); /* Escurece no hover */
    border-color: var(--color-dark);
    transform: translateY(-2px); /* Efeito de elevação */
    box-shadow: 0 4px 12px rgba(108, 158, 163, 0.3);
}

.btn--primary:active:not(:disabled)[b-22o4io8j8x] {
    transform: translateY(0); /* Volta ao normal ao clicar */
}


/* SECONDARY - Cor escura sólida */
.btn--secondary[b-22o4io8j8x] {
    background: var(--color-dark); /* #0D1C24 */
    color: white;
    border: 2px solid var(--color-dark);
}

.btn--secondary:hover:not(:disabled)[b-22o4io8j8x] {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 28, 36, 0.3);
}

.btn--secondary:active:not(:disabled)[b-22o4io8j8x] {
    transform: translateY(0);
}


/* OUTLINE - Apenas borda, fundo transparente */
.btn--outline[b-22o4io8j8x] {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover:not(:disabled)[b-22o4io8j8x] {
    background: var(--color-primary); /* Preenche no hover */
    color: white;
    transform: translateY(-2px);
}

.btn--outline:active:not(:disabled)[b-22o4io8j8x] {
    transform: translateY(0);
}


/* GHOST - Sem borda, apenas hover */
.btn--ghost[b-22o4io8j8x] {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid transparent; /* Borda transparente mantém o tamanho */
}

.btn--ghost:hover:not(:disabled)[b-22o4io8j8x] {
    background: rgba(108, 158, 163, 0.1); /* Fundo levemente colorido */
    border-color: transparent;
}


/* DANGER - Vermelho para ações destrutivas (deletar, remover) */
.btn--danger[b-22o4io8j8x] {
    background: #dc3545; /* Vermelho */
    color: white;
    border: 2px solid #dc3545;
}

.btn--danger:hover:not(:disabled)[b-22o4io8j8x] {
    background: #c82333; /* Vermelho mais escuro */
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn--danger:active:not(:disabled)[b-22o4io8j8x] {
    transform: translateY(0);
}


/* ============================================================================
   BUTTON STATES - Estados (disabled, loading)
   ============================================================================ */

/* DISABLED - Botão desabilitado */
.btn:disabled[b-22o4io8j8x],
.btn--disabled[b-22o4io8j8x] {
    opacity: 0.5; /* Fica mais transparente */
    cursor: not-allowed; /* Cursor de "proibido" */
    pointer-events: none; /* Não responde a eventos */
}


/* LOADING - Estado de carregamento */
.btn--loading[b-22o4io8j8x] {
    position: relative; /* Contexto para posicionar spinner */
    pointer-events: none; /* Não clicável durante loading */
}


/* ============================================================================
   BUTTON CONTENT - Elementos internos
   ============================================================================ */

/* Conteúdo do botão (texto) */
.btn__content[b-22o4io8j8x] {
    display: inline-flex;
    align-items: center;
}

/* Ícones */
.btn__icon[b-22o4io8j8x] {
    display: inline-flex;
    font-size: 1.2em; /* 20% maior que o texto */
}

/* Ícone à esquerda tem margem negativa para compensar gap */
.btn__icon--left[b-22o4io8j8x] {
    margin-left: -4px;
}

/* Ícone à direita tem margem negativa */
.btn__icon--right[b-22o4io8j8x] {
    margin-right: -4px;
}


/* ============================================================================
   LOADING SPINNER - Animação de carregamento
   ============================================================================ */

/* Keyframe da animação de rotação */
@keyframes spin-b-22o4io8j8x {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Spinner circular */
.btn__spinner[b-22o4io8j8x] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Borda transparente */
    border-top-color: white; /* Topo colorido cria o efeito */
    border-radius: 50%; /* Círculo perfeito */
    animation: spin-b-22o4io8j8x 0.6s linear infinite; /* Rotação contínua */
}

/* Texto de loading */
.btn__loading-text[b-22o4io8j8x] {
    margin-left: 8px;
}


/* ============================================================================
   FULL WIDTH - Botão ocupa largura total
   ============================================================================ */

.btn--full-width[b-22o4io8j8x] {
    width: 100%;
}


/* ============================================================================
   ICON ONLY - Botão apenas com ícone (sem texto)
   ============================================================================ */

.btn--icon-only[b-22o4io8j8x] {
    padding: 10px; /* Padding igual em todos os lados */
    aspect-ratio: 1; /* Mantém quadrado */
}

.btn--icon-only.btn--small[b-22o4io8j8x] {
    padding: 6px;
}

.btn--icon-only.btn--large[b-22o4io8j8x] {
    padding: 14px;
}


/* ============================================================================
   RESPONSIVE - Mobile
   ============================================================================ */

@media (max-width: 768px) {
    
    /* Aumenta área de toque em mobile */
    .btn[b-22o4io8j8x] {
        min-height: 44px; /* Recomendação Apple para touch targets */
    }
    
    .btn--small[b-22o4io8j8x] {
        min-height: 36px;
        padding: 8px 16px;
    }
    
    .btn--large[b-22o4io8j8x] {
        min-height: 52px;
        padding: 16px 32px;
    }
}
/* /Components/Shared/Card.razor.rz.scp.css */
/*
    ============================================================================
    Título: Card Component Styles
    Descrição: Estilos para o componente Card reutilizável seguindo design
               editorial minimalista WPDev.
    ============================================================================
*/

/* ============================================================================
   BASE CARD STYLES
   ============================================================================ */

.card[b-iiddkt917b] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(13, 28, 36, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover[b-iiddkt917b] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13, 28, 36, 0.08);
}

.card[onclick][b-iiddkt917b] {
    cursor: pointer;
}

/* ============================================================================
   CARD IMAGE
   ============================================================================ */

.card__image[b-iiddkt917b] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #0D1C24 0%,
        #16293a 60%,
        rgba(108, 158, 163, 0.12) 100%
    );
}

.card__image img[b-iiddkt917b] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card__image img[b-iiddkt917b] {
    transform: scale(1.05);
}

/* ============================================================================
   PLACEHOLDER — quando não há imagem
   ============================================================================ */

.card__image--placeholder[b-iiddkt917b] {
    background: linear-gradient(
        135deg,
        #0D1C24 0%,
        #16293a 60%,
        rgba(108, 158, 163, 0.12) 100%
    );
}

.card__placeholder-content[b-iiddkt917b] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__placeholder-initial[b-iiddkt917b] {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(108, 158, 163, 0.25);
    user-select: none;
}

/* ============================================================================
   CARD BADGE
   ============================================================================ */

.card__badge[b-iiddkt917b] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================================================
   CARD CONTENT
   ============================================================================ */

.card__content[b-iiddkt917b] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 24px;
}

/* ============================================================================
   CARD HEADER
   ============================================================================ */

.card__header[b-iiddkt917b] {
    font-size: 0.875rem;
    color: rgba(13, 28, 36, 0.55);
    margin-bottom: 4px;
}

/* ============================================================================
   CARD TITLE
   ============================================================================ */

.card__title[b-iiddkt917b] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    margin: 0;
    transition: color 0.2s ease;
}

.card:hover .card__title[b-iiddkt917b] {
    color: var(--color-primary);
}

/* ============================================================================
   CARD DESCRIPTION
   ============================================================================ */

.card__description[b-iiddkt917b] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(13, 28, 36, 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================================
   CARD BODY & FOOTER
   ============================================================================ */

.card__body[b-iiddkt917b] {
    flex: 1;
}

.card__footer[b-iiddkt917b] {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 28, 36, 0.08);
}

/* ============================================================================
   VARIANTE: HORIZONTAL
   ============================================================================ */

.card--horizontal[b-iiddkt917b] {
    flex-direction: row;
}

.card--horizontal .card__image[b-iiddkt917b] {
    width: 280px;
    padding-bottom: 0;
    min-height: 200px;
}

.card--horizontal .card__image img[b-iiddkt917b] {
    position: static;
    height: 100%;
}

/* ============================================================================
   VARIANTE: MINIMAL
   ============================================================================ */

.card--minimal[b-iiddkt917b] {
    padding: 20px;
    box-shadow: none;
    border: 1px solid rgba(13, 28, 36, 0.08);
}

.card--minimal:hover[b-iiddkt917b] {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(108, 158, 163, 0.1);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .card--horizontal[b-iiddkt917b] {
        flex-direction: column;
    }

    .card--horizontal .card__image[b-iiddkt917b] {
        width: 100%;
        padding-bottom: 56.25%;
        min-height: 0;
    }

    .card--horizontal .card__image img[b-iiddkt917b] {
        position: absolute;
    }

    .card__content[b-iiddkt917b] {
        padding: 20px;
    }

    .card__title[b-iiddkt917b] {
        font-size: 1.125rem;
    }

    .card__description[b-iiddkt917b] {
        font-size: 0.875rem;
    }
}
/* /Components/Shared/FilterChip.razor.rz.scp.css */
/*
    ============================================================================
    Título: FilterChip Component Styles
    Descrição: Estilos para chips de filtro clicáveis com estados ativo/inativo,
               contador e botão remover. Design minimalista e responsivo.
    ============================================================================
*/

/* ============================================================================
   BASE FILTER CHIP STYLES
   Estilos compartilhados por todos os chips
   ============================================================================ */

.filter-chip[b-30kymfnkz0] {
    /* RESET de estilos padrão */
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    
    /* LAYOUT */
    display: inline-flex; /* Alinha ícone, label, count e remove */
    align-items: center;
    gap: 6px; /* Espaçamento entre elementos internos */
    
    /* VISUAL */
    background: rgba(13, 28, 36, 0.05); /* Fundo cinza claro */
    color: var(--color-dark);
    border: 2px solid transparent; /* Borda transparente por padrão */
    border-radius: 20px; /* Cantos bem arredondados (pill shape) */
    
    /* TIPOGRAFIA */
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    text-align: center;
    white-space: nowrap; /* Não quebra linha */
    
    /* ESPAÇAMENTO */
    padding: 6px 14px;
    
    /* TRANSIÇÕES suaves */
    transition: all 0.2s ease;
}

/* 
   HOVER
   Efeito ao passar mouse sobre o chip
*/
.filter-chip:hover:not(:disabled)[b-30kymfnkz0] {
    background: rgba(13, 28, 36, 0.1); /* Fundo mais escuro */
    transform: translateY(-1px); /* Sobe levemente */
}

/* 
   ACTIVE (clicado)
   Feedback visual ao clicar
*/
.filter-chip:active:not(:disabled)[b-30kymfnkz0] {
    transform: translateY(0); /* Volta ao normal */
}

/* 
   FOCUS (acessibilidade)
   Outline visível ao navegar com teclado
*/
.filter-chip:focus-visible[b-30kymfnkz0] {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


/* ============================================================================
   FILTER CHIP ELEMENTS - Elementos internos
   ============================================================================ */

/* ÍCONE */
.filter-chip__icon[b-30kymfnkz0] {
    display: inline-flex;
    font-size: 1em; /* Mesmo tamanho do texto */
}

/* LABEL (texto principal) */
.filter-chip__label[b-30kymfnkz0] {
    display: inline-flex;
}

/* CONTADOR */
.filter-chip__count[b-30kymfnkz0] {
    /* Visual diferenciado para o número */
    display: inline-flex;
    font-size: 0.75em; /* Menor que o label */
    opacity: 0.7; /* Mais transparente */
    font-weight: 500; /* Menos bold que o label */
}

/* BOTÃO REMOVER (X) */
.filter-chip__remove[b-30kymfnkz0] {
    /* Layout circular */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    
    /* Visual */
    font-size: 0.875em;
    border-radius: 50%; /* Círculo perfeito */
    margin-left: 2px; /* Pequeno espaço extra */
    
    /* Transição */
    transition: background 0.2s ease;
}

.filter-chip__remove:hover[b-30kymfnkz0] {
    background: rgba(0, 0, 0, 0.1); /* Fundo ao passar mouse */
}


/* ============================================================================
   ACTIVE STATE - Chip selecionado/ativo
   ============================================================================ */

.filter-chip--active[b-30kymfnkz0] {
    /* Visual destacado quando selecionado */
    background: var(--color-primary); /* Fundo na cor primária */
    color: white; /* Texto branco para contraste */
    border-color: var(--color-primary);
}

.filter-chip--active:hover:not(:disabled)[b-30kymfnkz0] {
    background: var(--color-dark); /* Escurece no hover */
    border-color: var(--color-dark);
}


/* ============================================================================
   DISABLED STATE - Chip desabilitado
   ============================================================================ */

.filter-chip:disabled[b-30kymfnkz0] {
    opacity: 0.4; /* Fica transparente */
    cursor: not-allowed; /* Cursor de proibido */
    pointer-events: none; /* Não responde a eventos */
}


/* ============================================================================
   SIZES - Tamanhos
   ============================================================================ */

/* SMALL - Chip pequeno */
.filter-chip--small[b-30kymfnkz0] {
    padding: 4px 10px;
    font-size: 0.75rem; /* 12px */
    gap: 4px;
}

.filter-chip--small .filter-chip__remove[b-30kymfnkz0] {
    width: 14px;
    height: 14px;
}

/* MEDIUM - Tamanho padrão (já definido acima) */
/* Mantém os valores base */

/* LARGE - Chip grande */
.filter-chip--large[b-30kymfnkz0] {
    padding: 8px 18px;
    font-size: 1rem; /* 16px */
    gap: 8px;
}

.filter-chip--large .filter-chip__remove[b-30kymfnkz0] {
    width: 18px;
    height: 18px;
}


/* ============================================================================
   VARIANTS - Variantes de cor
   ============================================================================ */

/* DEFAULT - Cor neutra (já definido acima) */
/* Mantém fundo cinza */

/* PRIMARY - Cor primária quando ativo */
.filter-chip--primary.filter-chip--active[b-30kymfnkz0] {
    background: var(--color-primary); /* #6C9EA3 */
    border-color: var(--color-primary);
}

.filter-chip--primary.filter-chip--active:hover:not(:disabled)[b-30kymfnkz0] {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

/* SECONDARY - Cor escura quando ativo */
.filter-chip--secondary.filter-chip--active[b-30kymfnkz0] {
    background: var(--color-dark); /* #0D1C24 */
    border-color: var(--color-dark);
}

.filter-chip--secondary.filter-chip--active:hover:not(:disabled)[b-30kymfnkz0] {
    background: var(--color-primary);
    border-color: var(--color-primary);
}


/* ============================================================================
   OUTLINE VARIANT - Apenas borda, sem fundo
   ============================================================================ */

.filter-chip--outline[b-30kymfnkz0] {
    background: transparent;
    border-color: rgba(13, 28, 36, 0.2);
}

.filter-chip--outline:hover:not(:disabled)[b-30kymfnkz0] {
    background: rgba(13, 28, 36, 0.05);
    border-color: rgba(13, 28, 36, 0.3);
}

.filter-chip--outline.filter-chip--active[b-30kymfnkz0] {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-chip--outline.filter-chip--active:hover:not(:disabled)[b-30kymfnkz0] {
    background: rgba(108, 158, 163, 0.1);
}


/* ============================================================================
   RESPONSIVE - Mobile
   ============================================================================ */

@media (max-width: 768px) {
    
    /* Aumenta área de toque em mobile */
    .filter-chip[b-30kymfnkz0] {
        min-height: 36px; /* Touch target mínimo */
        padding: 8px 16px;
    }
    
    .filter-chip--small[b-30kymfnkz0] {
        min-height: 32px;
        padding: 6px 12px;
    }
    
    .filter-chip--large[b-30kymfnkz0] {
        min-height: 44px;
        padding: 10px 20px;
    }
}
/* /Components/Shared/ImageUpload.razor.rz.scp.css */
/* ImageUpload - Componente de upload via Cloudinary */

.image-upload[b-3a8ozsw5y6] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.image-preview[b-3a8ozsw5y6] {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.image-preview img[b-3a8ozsw5y6] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 160px;
}

.image-preview__remove[b-3a8ozsw5y6] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.image-preview__remove:hover[b-3a8ozsw5y6] {
    background: rgba(224,85,85,0.9);
}

.image-upload__area[b-3a8ozsw5y6] {
    border: 2px dashed #e8ecec;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
    cursor: pointer;
}

.image-upload__area:hover[b-3a8ozsw5y6],
.image-upload__area.dragging[b-3a8ozsw5y6] {
    border-color: #6C9EA3;
    background: rgba(108,158,163,0.04);
}

.upload-label[b-3a8ozsw5y6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.upload-icon[b-3a8ozsw5y6] {
    font-size: 1.5rem;
    color: #6C9EA3;
}

.upload-text[b-3a8ozsw5y6] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D1C24;
}

.upload-hint[b-3a8ozsw5y6] {
    font-size: 0.78rem;
    color: #A3A9AB;
}

.upload-input[b-3a8ozsw5y6] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-progress[b-3a8ozsw5y6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #A3A9AB;
    font-size: 0.875rem;
}

.upload-spinner[b-3a8ozsw5y6] {
    width: 24px;
    height: 24px;
    border: 2px solid #e8ecec;
    border-top-color: #6C9EA3;
    border-radius: 50%;
    animation: spin-b-3a8ozsw5y6 0.7s linear infinite;
}

@keyframes spin-b-3a8ozsw5y6 {
    to { transform: rotate(360deg); }
}

.upload-error[b-3a8ozsw5y6] {
    color: #e05555;
    font-size: 0.8rem;
    margin: 0;
}

.upload-url-row[b-3a8ozsw5y6] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-url-label[b-3a8ozsw5y6] {
    font-size: 0.78rem;
    color: #A3A9AB;
    white-space: nowrap;
}

.upload-url-input[b-3a8ozsw5y6] {
    flex: 1;
}
/* /Components/Shared/LoadingSkeleton.razor.rz.scp.css */
/*
    ============================================================================
    Título: Loading Skeleton Styles
    Descrição: Estilos para componente de skeleton com animação shimmer.
               Cria efeito de "brilho deslizante" que indica carregamento.
    ============================================================================
*/

/* ============================================================================
   ANIMAÇÃO SHIMMER
   Define a animação de "brilho deslizante" aplicada aos skeletons
   ============================================================================ */

@keyframes shimmer-b-qdyh7sa70h {
    /*
        Animação de gradiente que se move da esquerda para direita
        Cria efeito visual de "carregando" ou "processando"
    */
    0% {
        background-position: -468px 0; /* Início: gradiente à esquerda (fora da tela) */
    }
    100% {
        background-position: 468px 0; /* Fim: gradiente à direita (fora da tela) */
    }
}


/* ============================================================================
   BASE SKELETON
   Estilos compartilhados por todos os tipos de skeleton
   ============================================================================ */

.skeleton[b-qdyh7sa70h] {
    /*
        BACKGROUND ANIMADO
        Cria o efeito shimmer com gradiente linear que se move
        - #f0f0f0: cor base (cinza claro)
        - #e0e0e0: cor do "brilho" (cinza um pouco mais escuro)
        - background-size maior que 100% permite o movimento
    */
    background: linear-gradient(
        90deg,                    /* Direção: da esquerda para direita */
        #f0f0f0 0%,              /* Cor base no início */
        #e0e0e0 50%,             /* Cor de brilho no meio */
        #f0f0f0 100%             /* Volta para cor base no fim */
    );
    background-size: 468px 100%; /* Tamanho maior que o elemento para permitir movimento */
    
    /*
        ANIMAÇÃO
        Aplica a animação shimmer definida acima
        - shimmer: nome da animação
        - 1.2s: duração (1.2 segundos por ciclo)
        - ease-in-out: aceleração suave no início e fim
        - infinite: repete infinitamente
    */
    animation: shimmer-b-qdyh7sa70h 1.2s ease-in-out infinite;
    
    /* FORMA */
    border-radius: 4px; /* Cantos levemente arredondados */
    
    /* DIMENSÕES PADRÃO */
    width: 100%; /* Ocupa toda largura disponível por padrão */
}


/* ============================================================================
   SKELETON CARD
   Simula estrutura completa de um card (imagem + conteúdo)
   ============================================================================ */

.skeleton-card[b-qdyh7sa70h] {
    /* Layout */
    display: flex;
    flex-direction: column; /* Empilha imagem e conteúdo verticalmente */
    
    /* Visual */
    background: var(--color-bg-light); /* Fundo claro #F4F7F7 */
    border-radius: 4px;
    overflow: hidden; /* Esconde overflow para respeitar border-radius */
    
    /* Dimensões */
    height: 100%; /* Ocupa altura total do container */
}

.skeleton-card__image[b-qdyh7sa70h] {
    /*
        PROPORÇÃO 16:9 usando padding-bottom trick
        Mesmo método usado no Card.razor para manter consistência
    */
    width: 100%;
    padding-bottom: 56.25%; /* 9 ÷ 16 = 0.5625 = 56.25% */
    
    /* Visual */
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 50%, #e0e0e0 100%);
    background-size: 468px 100%;
    animation: shimmer-b-qdyh7sa70h 1.2s ease-in-out infinite;
}

.skeleton-card__content[b-qdyh7sa70h] {
    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Espaçamento entre linhas (mesmo do Card real) */
    flex: 1; /* Ocupa espaço restante */
    
    /* Espaçamento */
    padding: 24px; /* Mesmo padding do Card real */
}


/* ============================================================================
   SKELETON LINES
   Linhas genéricas usadas para simular texto
   ============================================================================ */

.skeleton-line[b-qdyh7sa70h] {
    /*
        Linha padrão: largura total, altura de 1 linha de texto
        Usado para simular parágrafos e descrições
    */
    height: 16px; /* Altura aproximada de uma linha de texto */
    width: 100%;  /* Largura total */
    border-radius: 2px; /* Cantos muito sutis */
    
    /* Visual animado (herda do .skeleton pai) */
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 50%, #e0e0e0 100%);
    background-size: 468px 100%;
    animation: shimmer-b-qdyh7sa70h 1.2s ease-in-out infinite;
}

/* 
   VARIANTES DE LINHA
   Diferentes tamanhos para simular hierarquia de texto
*/

/* Linha pequena: para metadados, datas, tags */
.skeleton-line--small[b-qdyh7sa70h] {
    width: 40%; /* 40% da largura disponível */
    height: 14px; /* Mais baixa que linha padrão */
}

/* Linha de título: mais grossa para simular h2/h3 */
.skeleton-line--title[b-qdyh7sa70h] {
    width: 70%; /* 70% da largura */
    height: 24px; /* Mais alta, simula fonte de título */
}

/* Linha curta: para última linha de parágrafo */
.skeleton-line--short[b-qdyh7sa70h] {
    width: 80%; /* 80% da largura (não chega até o fim) */
}


/* ============================================================================
   SKELETON TEXT
   Container para múltiplas linhas de texto
   ============================================================================ */

.skeleton-text[b-qdyh7sa70h] {
    /* Layout vertical com espaçamento */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espaçamento entre linhas */
}


/* ============================================================================
   SKELETON CIRCLE
   Elemento circular para avatares ou ícones
   ============================================================================ */

.skeleton-circle[b-qdyh7sa70h] {
    /* Dimensões padrão (pode ser sobrescrito via parâmetro Height/Width) */
    width: 48px;
    height: 48px;
    
    /* Forma circular */
    border-radius: 50%; /* 50% = círculo perfeito */
    
    /* Visual animado */
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 50%, #e0e0e0 100%);
    background-size: 468px 100%;
    animation: shimmer-b-qdyh7sa70h 1.2s ease-in-out infinite;
}


/* ============================================================================
   SKELETON RECTANGLE
   Retângulo genérico para imagens, thumbnails, banners
   ============================================================================ */

.skeleton-rectangle[b-qdyh7sa70h] {
    /* Dimensões padrão */
    width: 100%;
    height: 200px; /* Altura padrão (pode ser sobrescrita) */
    
    /* Visual */
    border-radius: 4px;
    
    /* Animação */
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 50%, #e0e0e0 100%);
    background-size: 468px 100%;
    animation: shimmer-b-qdyh7sa70h 1.2s ease-in-out infinite;
}


/* ============================================================================
   SKELETON DEFAULT
   Variante padrão quando nenhuma específica é escolhida
   ============================================================================ */

.skeleton-default[b-qdyh7sa70h] {
    /* Dimensões mínimas */
    width: 100%;
    min-height: 20px; /* Altura mínima para ser visível */
    
    /* Visual */
    border-radius: 4px;
    
    /* Animação (herda do pai .skeleton) */
}


/* ============================================================================
   RESPONSIVE - Mobile
   Ajustes para telas menores
   ============================================================================ */

@media (max-width: 768px) {
    
    /* Reduz padding do card skeleton em mobile */
    .skeleton-card__content[b-qdyh7sa70h] {
        padding: 20px; /* 24px → 20px */
        gap: 10px;     /* 12px → 10px */
    }
    
    /* Ajusta altura das linhas em mobile */
    .skeleton-line[b-qdyh7sa70h] {
        height: 14px; /* 16px → 14px */
    }
    
    .skeleton-line--title[b-qdyh7sa70h] {
        height: 20px; /* 24px → 20px */
    }
}
/* /Components/Shared/Pagination.razor.rz.scp.css */
/*
    ============================================================================
    Título: Pagination Component Styles
    Descrição: Estilos para componente de paginação com navegação anterior/
               próximo, números de página e informações de registros.
    ============================================================================
*/

/* ============================================================================
   PAGINATION CONTAINER
   Container principal com layout flex
   ============================================================================ */

.pagination[b-cehyguoh1j] {
    /* LAYOUT */
    display: flex;
    flex-direction: column; /* Info em cima, controles embaixo */
    gap: 16px;
    align-items: center; /* Centraliza horizontalmente */
    
    /* ESPAÇAMENTO */
    padding: 20px 0;
}


/* ============================================================================
   PAGINATION INFO - Informação de registros
   ============================================================================ */

.pagination__info[b-cehyguoh1j] {
    /* TIPOGRAFIA */
    font-size: 0.875rem; /* 14px */
    color: var(--color-text-muted);
    text-align: center;
}


/* ============================================================================
   PAGINATION CONTROLS - Container dos botões e números
   ============================================================================ */

.pagination__controls[b-cehyguoh1j] {
    /* LAYOUT */
    display: flex;
    align-items: center;
    gap: 8px; /* Espaçamento entre elementos */
    flex-wrap: wrap; /* Permite quebra em telas pequenas */
    justify-content: center;
}


/* ============================================================================
   PAGINATION BUTTONS - Botões Anterior/Próximo
   ============================================================================ */

.pagination__button[b-cehyguoh1j] {
    /* RESET */
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    
    /* VISUAL */
    background: var(--color-bg-light); /* Fundo claro */
    color: var(--color-dark);
    border: 2px solid rgba(13, 28, 36, 0.1);
    border-radius: 6px;
    
    /* TIPOGRAFIA */
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    
    /* ESPAÇAMENTO */
    padding: 8px 16px;
    min-width: 100px; /* Largura mínima para consistência */
    
    /* TRANSIÇÕES */
    transition: all 0.2s ease;
}

/* HOVER nos botões */
.pagination__button:hover:not(:disabled)[b-cehyguoh1j] {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 158, 163, 0.2);
}

/* ACTIVE (clicado) */
.pagination__button:active:not(:disabled)[b-cehyguoh1j] {
    transform: translateY(0);
}

/* DISABLED */
.pagination__button:disabled[b-cehyguoh1j] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* FOCUS (acessibilidade) */
.pagination__button:focus-visible[b-cehyguoh1j] {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


/* ============================================================================
   PAGINATION PAGES - Container dos números de página
   ============================================================================ */

.pagination__pages[b-cehyguoh1j] {
    /* LAYOUT */
    display: flex;
    align-items: center;
    gap: 4px; /* Espaço pequeno entre números */
}


/* ============================================================================
   PAGINATION PAGE - Botão de número de página
   ============================================================================ */

.pagination__page[b-cehyguoh1j] {
    /* RESET */
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    
    /* LAYOUT */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* DIMENSÕES */
    width: 40px;
    height: 40px;
    min-width: 40px; /* Garante tamanho quadrado */
    
    /* VISUAL */
    background: transparent;
    color: var(--color-dark);
    border: 2px solid transparent;
    border-radius: 6px;
    
    /* TIPOGRAFIA */
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    
    /* TRANSIÇÕES */
    transition: all 0.2s ease;
}

/* HOVER em números de página */
.pagination__page:hover[b-cehyguoh1j] {
    background: rgba(108, 158, 163, 0.1);
    color: var(--color-primary);
}

/* PÁGINA ATIVA (atual) */
.pagination__page--active[b-cehyguoh1j] {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination__page--active:hover[b-cehyguoh1j] {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

/* FOCUS em números */
.pagination__page:focus-visible[b-cehyguoh1j] {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


/* ============================================================================
   PAGINATION ELLIPSIS - Indicador de páginas ocultas (...)
   ============================================================================ */

.pagination__ellipsis[b-cehyguoh1j] {
    /* LAYOUT */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* DIMENSÕES (mesmo tamanho dos números) */
    width: 40px;
    height: 40px;
    
    /* TIPOGRAFIA */
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    
    /* Não é clicável */
    pointer-events: none;
}


/* ============================================================================
   VARIANTS - Variantes de tamanho
   ============================================================================ */

/* SMALL - Paginação compacta */
.pagination--small .pagination__button[b-cehyguoh1j] {
    padding: 6px 12px;
    font-size: 0.75rem; /* 12px */
    min-width: 80px;
}

.pagination--small .pagination__page[b-cehyguoh1j],
.pagination--small .pagination__ellipsis[b-cehyguoh1j] {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.75rem;
}

/* LARGE - Paginação grande */
.pagination--large .pagination__button[b-cehyguoh1j] {
    padding: 12px 20px;
    font-size: 1rem; /* 16px */
    min-width: 120px;
}

.pagination--large .pagination__page[b-cehyguoh1j],
.pagination--large .pagination__ellipsis[b-cehyguoh1j] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1rem;
}


/* ============================================================================
   PAGINATION CENTERED - Centraliza tudo
   ============================================================================ */

.pagination--centered[b-cehyguoh1j] {
    align-items: center;
    text-align: center;
}


/* ============================================================================
   RESPONSIVE - Mobile
   ============================================================================ */

@media (max-width: 768px) {
    
    /* Stack vertical em mobile */
    .pagination[b-cehyguoh1j] {
        gap: 12px;
    }
    
    /* Controles ocupam largura total */
    .pagination__controls[b-cehyguoh1j] {
        width: 100%;
        justify-content: center;
    }
    
    /* Reduz espaçamento entre números */
    .pagination__pages[b-cehyguoh1j] {
        gap: 2px;
    }
    
    /* Botões anterior/próximo menores em mobile */
    .pagination__button[b-cehyguoh1j] {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.8125rem; /* 13px */
    }
    
    /* Números de página menores */
    .pagination__page[b-cehyguoh1j],
    .pagination__ellipsis[b-cehyguoh1j] {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.8125rem;
    }
    
    /* Esconde texto dos botões, mostra apenas setas */
    .pagination__button--prev[b-cehyguoh1j]::before {
        content: "←";
        margin-right: 4px;
    }
    
    .pagination__button--next[b-cehyguoh1j]::after {
        content: "→";
        margin-left: 4px;
    }
}

@media (max-width: 480px) {
    
    /* Em telas muito pequenas, esconde texto dos botões */
    .pagination__button[b-cehyguoh1j] {
        min-width: 44px;
        padding: 8px;
    }
    
    .pagination__button--prev[b-cehyguoh1j] {
        font-size: 0; /* Esconde texto */
    }
    
    .pagination__button--prev[b-cehyguoh1j]::before {
        font-size: 1rem;
        margin: 0;
    }
    
    .pagination__button--next[b-cehyguoh1j] {
        font-size: 0; /* Esconde texto */
    }
    
    .pagination__button--next[b-cehyguoh1j]::after {
        font-size: 1rem;
        margin: 0;
    }
}
/* /Components/Shared/SearchBar.razor.rz.scp.css */
/*
    ============================================================================
    Título: SearchBar Component Styles
    Descrição: Estilos para componente de busca com ícone, input e botão clear.
               Layout compacto e responsivo com transições suaves.
    ============================================================================
*/

/* ============================================================================
   SEARCH BAR CONTAINER
   Container flex que alinha ícone, input e botão clear
   ============================================================================ */

.search-bar[b-7ea6c6mv4n] {
    /* LAYOUT */
    display: flex;
    align-items: center; /* Centraliza verticalmente todos os elementos */
    gap: 12px; /* Espaçamento entre ícone, input e botão */
    
    /* VISUAL */
    background: var(--color-bg-light); /* Fundo claro #F4F7F7 */
    border: 2px solid rgba(13, 28, 36, 0.1); /* Borda sutil */
    border-radius: 8px; /* Cantos arredondados */
    
    /* ESPAÇAMENTO */
    padding: 12px 16px; /* Padding interno confortável */
    
    /* TRANSIÇÕES */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* 
   ESTADO FOCUS
   Quando input está focado, destaca o container inteiro
   Melhora feedback visual de onde usuário está
*/
.search-bar:focus-within[b-7ea6c6mv4n] {
    border-color: var(--color-primary); /* Borda fica na cor primária */
    box-shadow: 0 0 0 3px rgba(108, 158, 163, 0.1); /* Anel sutil */
}


/* ============================================================================
   SEARCH ICON - Ícone de lupa
   ============================================================================ */

.search-bar__icon[b-7ea6c6mv4n] {
    /* VISUAL */
    font-size: 1.25rem; /* 20px - tamanho do emoji */
    color: var(--color-text-muted); /* Cor suave */
    
    /* LAYOUT */
    display: flex; /* Remove espaço extra de inline elements */
    align-items: center;
    flex-shrink: 0; /* Não encolhe quando input cresce */
    
    /* Transição suave de cor */
    transition: color 0.2s ease;
}

/* Ícone fica mais escuro quando search bar está focada */
.search-bar:focus-within .search-bar__icon[b-7ea6c6mv4n] {
    color: var(--color-primary);
}


/* ============================================================================
   SEARCH INPUT - Campo de texto
   ============================================================================ */

.search-bar__input[b-7ea6c6mv4n] {
    /* RESET de estilos padrão */
    border: none;
    outline: none;
    background: transparent;
    
    /* LAYOUT */
    flex: 1; /* Ocupa todo espaço disponível */
    width: 100%;
    
    /* TIPOGRAFIA */
    font-family: var(--font-body); /* Inter */
    font-size: 0.9375rem; /* 15px */
    color: var(--color-dark);
    
    /* Remove espaçamento padrão */
    padding: 0;
    margin: 0;
}

/* 
   PLACEHOLDER
   Texto de ajuda quando campo está vazio
*/
.search-bar__input[b-7ea6c6mv4n]::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7; /* Mais suave */
}

/* 
   FOCUS
   Remove outline padrão do navegador
   O feedback visual vem do container .search-bar:focus-within
*/
.search-bar__input:focus[b-7ea6c6mv4n] {
    outline: none;
}


/* ============================================================================
   CLEAR BUTTON - Botão X para limpar
   ============================================================================ */

.search-bar__clear[b-7ea6c6mv4n] {
    /* RESET */
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    
    /* VISUAL */
    color: var(--color-text-muted);
    font-size: 1.25rem; /* 20px */
    cursor: pointer;
    
    /* LAYOUT */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0; /* Não encolhe */
    
    /* Forma circular no hover */
    border-radius: 50%;
    
    /* TRANSIÇÕES */
    transition: all 0.2s ease;
}

/* 
   HOVER no botão clear
   Fica mais visível e ganha fundo
*/
.search-bar__clear:hover[b-7ea6c6mv4n] {
    color: var(--color-dark);
    background: rgba(13, 28, 36, 0.05); /* Fundo sutil */
    transform: scale(1.1); /* Cresce levemente */
}

/* 
   ACTIVE (clique)
   Feedback tátil ao clicar
*/
.search-bar__clear:active[b-7ea6c6mv4n] {
    transform: scale(0.95); /* Encolhe ao clicar */
}


/* ============================================================================
   VARIANTS - Variantes de tamanho
   ============================================================================ */

/* SearchBar pequena (para sidebars, headers compactos) */
.search-bar--small[b-7ea6c6mv4n] {
    padding: 8px 12px;
}

.search-bar--small .search-bar__input[b-7ea6c6mv4n] {
    font-size: 0.875rem; /* 14px */
}

.search-bar--small .search-bar__icon[b-7ea6c6mv4n],
.search-bar--small .search-bar__clear[b-7ea6c6mv4n] {
    font-size: 1rem; /* 16px */
}

/* SearchBar grande (para hero sections, destaque) */
.search-bar--large[b-7ea6c6mv4n] {
    padding: 16px 20px;
}

.search-bar--large .search-bar__input[b-7ea6c6mv4n] {
    font-size: 1.125rem; /* 18px */
}

.search-bar--large .search-bar__icon[b-7ea6c6mv4n],
.search-bar--large .search-bar__clear[b-7ea6c6mv4n] {
    font-size: 1.5rem; /* 24px */
}


/* ============================================================================
   FULL WIDTH - Ocupa largura total
   ============================================================================ */

.search-bar--full-width[b-7ea6c6mv4n] {
    width: 100%;
}


/* ============================================================================
   RESPONSIVE - Mobile
   ============================================================================ */

@media (max-width: 768px) {
    
    /* SearchBar ocupa largura total em mobile */
    .search-bar[b-7ea6c6mv4n] {
        width: 100%;
    }
    
    /* Aumenta área de toque do botão clear */
    .search-bar__clear[b-7ea6c6mv4n] {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}
/* /Layout/AdminLayout.razor.rz.scp.css */
/* ====================================
   AdminLayout - Estilos do painel admin
   ==================================== */

.admin-shell[b-hogbcj4exv] {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* TOPBAR (oculta em desktop) */
.admin-topbar[b-hogbcj4exv] {
    display: none;
}

/* SIDEBAR */
.admin-sidebar[b-hogbcj4exv] {
    width: 240px;
    min-height: 100vh;
    background-color: #0D1C24;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}

.admin-brand[b-hogbcj4exv] {
    padding: 32px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.admin-logo[b-hogbcj4exv] {
    height: 32px;
    width: auto;
    display: block;
}

.brand-label[b-hogbcj4exv] {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* NAV */
.admin-nav[b-hogbcj4exv] {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-nav__item[b-hogbcj4exv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.admin-nav__item:hover[b-hogbcj4exv] {
    background-color: rgba(108,158,163,0.15);
    color: #fff;
}

.admin-nav__item.active[b-hogbcj4exv] {
    background-color: rgba(108,158,163,0.2);
    color: #6C9EA3;
}

.nav-icon[b-hogbcj4exv] {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    opacity: 0.7;
}

.nav-badge[b-hogbcj4exv] {
    margin-left: auto;
    background-color: #e5484d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* SIDEBAR FOOTER */
.admin-sidebar__footer[b-hogbcj4exv] {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-logout[b-hogbcj4exv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(255,100,100,0.7);
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: all 0.15s ease;
}

.admin-logout:hover[b-hogbcj4exv] {
    background-color: rgba(255,100,100,0.1);
    color: #ff6464;
}

/* MAIN CONTENT */
.admin-main[b-hogbcj4exv] {
    margin-left: 240px;
    flex: 1;
    min-height: 100vh;
}

.admin-content[b-hogbcj4exv] {
    padding: 40px;
    max-width: 1200px;
}

/* OVERLAY (só usado no mobile) */
.admin-overlay[b-hogbcj4exv] {
    display: none;
}

/* RESPONSIVE: TABLET E MOBILE */
@media (max-width: 768px) {

    .admin-topbar[b-hogbcj4exv] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 64px;
        padding: 0 20px;
        background-color: #0D1C24;
        z-index: 200;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-topbar__brand[b-hogbcj4exv] {
        display: flex;
        align-items: center;
    }

    .admin-nav-toggle[b-hogbcj4exv] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .admin-nav-toggle:hover[b-hogbcj4exv] {
        background: rgba(108, 158, 163, 0.15);
    }

    .hb-line[b-hogbcj4exv] {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
        transform-origin: center;
    }

    .hb-line--top.open[b-hogbcj4exv] {
        transform: translateY(7px) rotate(45deg);
    }

    .hb-line--mid.open[b-hogbcj4exv] {
        opacity: 0;
        transform: scaleX(0);
    }

    .hb-line--bot.open[b-hogbcj4exv] {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Sidebar vira painel off-canvas, entra pela esquerda */
    .admin-sidebar[b-hogbcj4exv] {
        width: 280px;
        max-width: 82vw;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 300;
        box-shadow: 8px 0 32px rgba(13, 28, 36, 0.25);
    }

    .admin-sidebar--open[b-hogbcj4exv] {
        transform: translateX(0);
    }

    .admin-overlay[b-hogbcj4exv] {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(13, 28, 36, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 250;
    }

    .admin-overlay--open[b-hogbcj4exv] {
        opacity: 1;
        pointer-events: auto;
    }

    .admin-main[b-hogbcj4exv] {
        margin-left: 0;
        padding-top: 64px;
    }

    .admin-content[b-hogbcj4exv] {
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .admin-sidebar[b-hogbcj4exv],
    .admin-overlay[b-hogbcj4exv],
    .hb-line[b-hogbcj4exv] {
        transition: none !important;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ====================================
   MainLayout.razor.css
   Estilos do layout principal WPDev
   ==================================== */

.wpdev-layout[b-wz6u3xac4n] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wpdev-header[b-wz6u3xac4n] {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    background-color: rgba(244, 247, 247, 0.97);
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wpdev-nav[b-wz6u3xac4n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-link[b-wz6u3xac4n] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.brand-wp[b-wz6u3xac4n] {
    color: #6C9EA3;
}

.brand-dev[b-wz6u3xac4n] {
    color: #0D1C24;
}

.nav-menu-desktop[b-wz6u3xac4n] {
    display: flex;
    list-style: none !important;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-link[b-wz6u3xac4n] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0D1C24;
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.nav-link[b-wz6u3xac4n]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #6C9EA3;
    transition: width 0.3s ease;
}

.nav-link:hover[b-wz6u3xac4n] {
    color: #6C9EA3;
}

.nav-link:hover[b-wz6u3xac4n]::after {
    width: 100%;
}

.nav-toggle[b-wz6u3xac4n] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
    position: relative;
    z-index: 10000;
}

.nav-toggle:hover[b-wz6u3xac4n] {
    background: rgba(108, 158, 163, 0.1);
}

.hb-line[b-wz6u3xac4n] {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0D1C24;
    border-radius: 2px;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    transform-origin: center;
}

.hb-line--top.open[b-wz6u3xac4n] {
    transform: translateY(7px) rotate(45deg);
}

.hb-line--mid.open[b-wz6u3xac4n] {
    opacity: 0;
    transform: scaleX(0);
}

.hb-line--bot.open[b-wz6u3xac4n] {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay[b-wz6u3xac4n] {
    position: fixed;
    inset: 0;
    background-color: rgba(13, 28, 36, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-overlay--open[b-wz6u3xac4n] {
    opacity: 1;
    visibility: visible;
}

.mobile-menu[b-wz6u3xac4n] {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background-color: #F4F7F7;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(13, 28, 36, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu--open[b-wz6u3xac4n] {
    transform: translateX(0);
}

.mobile-menu-header[b-wz6u3xac4n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 64px;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
    flex-shrink: 0;
}

.mobile-close-btn[b-wz6u3xac4n] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0D1C24;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-close-btn:hover[b-wz6u3xac4n] {
    background: rgba(108, 158, 163, 0.12);
    color: #6C9EA3;
}

.mobile-nav[b-wz6u3xac4n] {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-list[b-wz6u3xac4n] {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.mobile-nav-item[b-wz6u3xac4n] {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu--open .mobile-nav-item[b-wz6u3xac4n] {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu--open .mobile-nav-item:nth-child(1)[b-wz6u3xac4n] { transition-delay: 0.06s; }
.mobile-menu--open .mobile-nav-item:nth-child(2)[b-wz6u3xac4n] { transition-delay: 0.11s; }
.mobile-menu--open .mobile-nav-item:nth-child(3)[b-wz6u3xac4n] { transition-delay: 0.16s; }
.mobile-menu--open .mobile-nav-item:nth-child(4)[b-wz6u3xac4n] { transition-delay: 0.21s; }
.mobile-menu--open .mobile-nav-item:nth-child(5)[b-wz6u3xac4n] { transition-delay: 0.26s; }
.mobile-menu--open .mobile-nav-item:nth-child(6)[b-wz6u3xac4n] { transition-delay: 0.31s; }

.mobile-nav-link[b-wz6u3xac4n] {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #0D1C24;
    text-decoration: none;
    padding: 0.625rem 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    border-bottom: 1px solid rgba(13, 28, 36, 0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover[b-wz6u3xac4n] {
    color: #6C9EA3;
    padding-left: 2rem;
}

.mobile-menu-footer[b-wz6u3xac4n] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(13, 28, 36, 0.08);
    flex-shrink: 0;
}

.mobile-menu-footer p[b-wz6u3xac4n] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(13, 28, 36, 0.35);
    margin: 0;
}

.wpdev-main[b-wz6u3xac4n] {
    flex: 1;
}

.error-container[b-wz6u3xac4n] {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.error-container h2[b-wz6u3xac4n] {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #0D1C24;
    margin: 0;
}

.error-container p[b-wz6u3xac4n] {
    color: rgba(13, 28, 36, 0.6);
    margin: 0;
    max-width: 400px;
}

.wpdev-footer[b-wz6u3xac4n] {
    background-color: #0D1C24;
    color: #F4F7F7;
    padding: 2.5rem 0;
}

.footer-content[b-wz6u3xac4n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand[b-wz6u3xac4n] {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.footer-brand .brand-wp[b-wz6u3xac4n] {
    color: #6C9EA3;
}

.footer-brand .brand-dev[b-wz6u3xac4n] {
    color: #F4F7F7;
}

.footer-tagline[b-wz6u3xac4n] {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(244, 247, 247, 0.70);
    margin: 0;
}

.footer-right p[b-wz6u3xac4n] {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(244, 247, 247, 0.70);
    margin: 0;
}

@media (max-width: 768px) {
    .nav-toggle[b-wz6u3xac4n] {
        display: flex !important;
    }

    .nav-menu-desktop[b-wz6u3xac4n] {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu[b-wz6u3xac4n],
    .mobile-overlay[b-wz6u3xac4n] {
        display: none !important;
    }

    .nav-toggle[b-wz6u3xac4n] {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu[b-wz6u3xac4n],
    .mobile-overlay[b-wz6u3xac4n],
    .hb-line[b-wz6u3xac4n],
    .mobile-nav-item[b-wz6u3xac4n],
    .mobile-nav-link[b-wz6u3xac4n],
    .nav-link[b-wz6u3xac4n]::after {
        transition: none !important;
        animation: none !important;
    }
}

/* LOGO IMAGEM */
.brand-logo[b-wz6u3xac4n] {
    height: 44px;
    width: auto;
    display: block;
}

.brand-logo--footer[b-wz6u3xac4n] {
    height: 40px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-64m6719sjr] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-64m6719sjr] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-64m6719sjr] {
    font-size: 1.1rem;
}

.bi[b-64m6719sjr] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-64m6719sjr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-64m6719sjr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-64m6719sjr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-64m6719sjr] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-64m6719sjr] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-64m6719sjr] {
        padding-bottom: 1rem;
    }

    .nav-item[b-64m6719sjr]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-64m6719sjr]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-64m6719sjr]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-64m6719sjr] {
        display: none;
    }

    .collapse[b-64m6719sjr] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-64m6719sjr] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Admin/AdminBlog.razor.rz.scp.css */
/* AdminBlog - reutiliza os mesmos estilos do AdminProjects */

.admin-page__header[b-zs5qe5nizv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-page__title[b-zs5qe5nizv] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.admin-page__subtitle[b-zs5qe5nizv] {
    color: #A3A9AB;
    font-size: 0.875rem;
    margin: 0;
}

.btn-primary[b-zs5qe5nizv] {
    background-color: #6C9EA3;
    color: #0D1C24;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.btn-primary:hover[b-zs5qe5nizv] { opacity: 0.85; }

.admin-loading[b-zs5qe5nizv] { color: #A3A9AB; font-size: 0.95rem; }

.admin-empty[b-zs5qe5nizv] {
    text-align: center;
    padding: 60px 0;
    color: #A3A9AB;
}

.admin-empty a[b-zs5qe5nizv] { color: #6C9EA3; text-decoration: none; font-weight: 600; }

.admin-table-wrapper[b-zs5qe5nizv] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table[b-zs5qe5nizv] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table thead[b-zs5qe5nizv] { background-color: #f8f9fa; }

.admin-table th[b-zs5qe5nizv] {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid #e8ecec;
}

.admin-table td[b-zs5qe5nizv] {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #0D1C24;
}

.admin-table tbody tr:last-child td[b-zs5qe5nizv] { border-bottom: none; }
.admin-table tbody tr:hover[b-zs5qe5nizv] { background-color: #fafafa; }
.td-title[b-zs5qe5nizv] { font-weight: 600; }

.tag[b-zs5qe5nizv] {
    background-color: rgba(108,158,163,0.12);
    color: #6C9EA3;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 4px;
}

.td-actions[b-zs5qe5nizv] { display: flex; gap: 8px; align-items: center; }

.btn-edit[b-zs5qe5nizv] {
    color: #6C9EA3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.15s;
}

.btn-edit:hover[b-zs5qe5nizv] { background-color: rgba(108,158,163,0.1); }

.btn-delete[b-zs5qe5nizv] {
    color: #e05555;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-delete:hover[b-zs5qe5nizv] { background-color: rgba(224,85,85,0.1); }

.confirm-overlay[b-zs5qe5nizv] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.confirm-box[b-zs5qe5nizv] {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.confirm-box p[b-zs5qe5nizv] { margin: 0 0 8px; font-size: 1rem; color: #0D1C24; }
.confirm-box__sub[b-zs5qe5nizv] { color: #A3A9AB; font-size: 0.875rem; margin-bottom: 24px !important; }
.confirm-box__actions[b-zs5qe5nizv] { display: flex; gap: 12px; justify-content: center; }

.btn-cancel[b-zs5qe5nizv] {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-cancel:hover[b-zs5qe5nizv] { background: #f8f9fa; }

.btn-confirm-delete[b-zs5qe5nizv] {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: #e05555;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-confirm-delete:hover[b-zs5qe5nizv] { opacity: 0.85; }
/* /Pages/Admin/AdminBlogForm.razor.rz.scp.css */
/* AdminBlogForm - Formulário de post do blog */

.back-link[b-ch9skq7id1] {
    color: #A3A9AB;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.15s;
}

.back-link:hover[b-ch9skq7id1] { color: #6C9EA3; }

.admin-page__title[b-ch9skq7id1] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0;
}

.form-error[b-ch9skq7id1] {
    background-color: rgba(224,85,85,0.1);
    border: 1px solid rgba(224,85,85,0.25);
    color: #e05555;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-success[b-ch9skq7id1] {
    background-color: rgba(108,158,163,0.12);
    border: 1px solid rgba(108,158,163,0.3);
    color: #4a8a8f;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-grid[b-ch9skq7id1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.form-section[b-ch9skq7id1] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section__title[b-ch9skq7id1] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1C24;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.field[b-ch9skq7id1] { display: flex; flex-direction: column; gap: 6px; }

.field__label[b-ch9skq7id1] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field__input[b-ch9skq7id1],
.field__textarea[b-ch9skq7id1],
.field__select[b-ch9skq7id1] {
    background: #f8f9fa;
    border: 1px solid #e8ecec;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0D1C24;
    outline: none;
    transition: border-color 0.15s;
}

.field__input:focus[b-ch9skq7id1],
.field__textarea:focus[b-ch9skq7id1] { border-color: #6C9EA3; }

.field__textarea[b-ch9skq7id1] { resize: vertical; }

.field__textarea--tall[b-ch9skq7id1] { min-height: 280px; font-family: 'Courier New', monospace; font-size: 0.85rem; }

.field-row[b-ch9skq7id1] { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field--checkbox[b-ch9skq7id1] { flex-direction: row; align-items: center; gap: 8px; }

.field--checkbox label[b-ch9skq7id1] { font-size: 0.9rem; color: #0D1C24; cursor: pointer; }

.tech-input-row[b-ch9skq7id1] { display: flex; gap: 8px; }

.btn-add-tech[b-ch9skq7id1] {
    background: #6C9EA3;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.btn-add-tech:hover[b-ch9skq7id1] { opacity: 0.85; }

.tech-tags[b-ch9skq7id1] { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.tech-tag[b-ch9skq7id1] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,158,163,0.12);
    color: #6C9EA3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-tag button[b-ch9skq7id1] {
    background: none;
    border: none;
    color: #6C9EA3;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.tech-tag button:hover[b-ch9skq7id1] { opacity: 1; }

.form-actions-wrapper[b-ch9skq7id1] { margin-top: 8px; }

.form-actions[b-ch9skq7id1] { display: flex; justify-content: flex-end; gap: 12px; }

.btn-cancel[b-ch9skq7id1] {
    padding: 11px 24px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-cancel:hover[b-ch9skq7id1] { background: #f8f9fa; }

.btn-save[b-ch9skq7id1] {
    padding: 11px 28px;
    border-radius: 6px;
    border: none;
    background: #6C9EA3;
    color: #0D1C24;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-save:hover:not(:disabled)[b-ch9skq7id1] { opacity: 0.85; }

.btn-save:disabled[b-ch9skq7id1] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 900px) {
    .form-grid[b-ch9skq7id1] { grid-template-columns: 1fr; }
}
/* /Pages/Admin/AdminNow.razor.rz.scp.css */
/* AdminNow - Gerenciamento da seção Now */

.admin-page[b-m1yxayl1f2] {
    padding: 32px;
    max-width: 860px;
}

.admin-page__header[b-m1yxayl1f2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-page__title[b-m1yxayl1f2] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0;
}

.admin-page__subtitle[b-m1yxayl1f2] {
    font-size: 0.875rem;
    color: #A3A9AB;
    margin: 4px 0 0;
}

.status-badge[b-m1yxayl1f2] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge--active[b-m1yxayl1f2] {
    background: rgba(108,158,163,0.12);
    color: #4a8a8f;
    border: 1px solid rgba(108,158,163,0.3);
}

.admin-loading[b-m1yxayl1f2] {
    color: #A3A9AB;
    font-size: 0.9rem;
    padding: 40px 0;
}

.now-form-wrapper[b-m1yxayl1f2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.form-section[b-m1yxayl1f2] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section__title[b-m1yxayl1f2] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1C24;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.field[b-m1yxayl1f2] { display: flex; flex-direction: column; gap: 6px; }

.field__label[b-m1yxayl1f2] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field__input[b-m1yxayl1f2],
.field__textarea[b-m1yxayl1f2] {
    background: #f8f9fa;
    border: 1px solid #e8ecec;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0D1C24;
    outline: none;
    transition: border-color 0.15s;
}

.field__input:focus[b-m1yxayl1f2],
.field__textarea:focus[b-m1yxayl1f2] { border-color: #6C9EA3; }

.field__textarea[b-m1yxayl1f2] { resize: vertical; }

.tech-input-row[b-m1yxayl1f2] { display: flex; gap: 8px; }

.btn-add-tech[b-m1yxayl1f2] {
    background: #6C9EA3;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.btn-add-tech:hover[b-m1yxayl1f2] { opacity: 0.85; }

.tech-tags[b-m1yxayl1f2] { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.tech-tag[b-m1yxayl1f2] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,158,163,0.12);
    color: #6C9EA3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-tag button[b-m1yxayl1f2] {
    background: none;
    border: none;
    color: #6C9EA3;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.tech-tag button:hover[b-m1yxayl1f2] { opacity: 1; }

.form-actions-wrapper[b-m1yxayl1f2] { margin-top: 8px; }

.form-actions[b-m1yxayl1f2] { display: flex; justify-content: flex-end; }

.form-error[b-m1yxayl1f2] {
    background-color: rgba(224,85,85,0.1);
    border: 1px solid rgba(224,85,85,0.25);
    color: #e05555;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.form-success[b-m1yxayl1f2] {
    background-color: rgba(108,158,163,0.12);
    border: 1px solid rgba(108,158,163,0.3);
    color: #4a8a8f;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.btn-save[b-m1yxayl1f2] {
    padding: 11px 28px;
    border-radius: 6px;
    border: none;
    background: #6C9EA3;
    color: #0D1C24;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-save:hover:not(:disabled)[b-m1yxayl1f2] { opacity: 0.85; }

.btn-save:disabled[b-m1yxayl1f2] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
    .admin-page[b-m1yxayl1f2] { padding: 20px; }
}

/* Projetos atuais */
.project-input-row[b-m1yxayl1f2] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.project-input-row .field__input[b-m1yxayl1f2] {
    flex: 1;
}

.project-list[b-m1yxayl1f2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.project-item[b-m1yxayl1f2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e8ecec;
    border-radius: 6px;
    padding: 10px 14px;
}

.project-item__info[b-m1yxayl1f2] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-item__name[b-m1yxayl1f2] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D1C24;
}

.project-item__url[b-m1yxayl1f2] {
    font-size: 0.78rem;
    color: #6C9EA3;
}

.project-item__remove[b-m1yxayl1f2] {
    background: none;
    border: none;
    color: #A3A9AB;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.15s;
    flex-shrink: 0;
}

.project-item__remove:hover[b-m1yxayl1f2] { color: #e05555; }
/* /Pages/Admin/AdminProjectForm.razor.rz.scp.css */
/* AdminProjectForm - Formulário de projeto */

.back-link[b-fithysx5p4] {
    color: #A3A9AB;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.15s;
}

.back-link:hover[b-fithysx5p4] {
    color: #6C9EA3;
}

.admin-page__title[b-fithysx5p4] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0;
}

.form-error[b-fithysx5p4] {
    background-color: rgba(224,85,85,0.1);
    border: 1px solid rgba(224,85,85,0.25);
    color: #e05555;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-grid[b-fithysx5p4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.form-section[b-fithysx5p4] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section__title[b-fithysx5p4] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1C24;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.field[b-fithysx5p4] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field__label[b-fithysx5p4] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field__input[b-fithysx5p4],
.field__textarea[b-fithysx5p4],
.field__select[b-fithysx5p4] {
    background: #f8f9fa;
    border: 1px solid #e8ecec;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0D1C24;
    outline: none;
    transition: border-color 0.15s;
}

.field__input:focus[b-fithysx5p4],
.field__textarea:focus[b-fithysx5p4],
.field__select:focus[b-fithysx5p4] {
    border-color: #6C9EA3;
}

.field__textarea[b-fithysx5p4] {
    resize: vertical;
}

.field-row[b-fithysx5p4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field--checkbox[b-fithysx5p4] {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.field--checkbox label[b-fithysx5p4] {
    font-size: 0.9rem;
    color: #0D1C24;
    cursor: pointer;
}

/* TECH TAGS */
.tech-input-row[b-fithysx5p4] {
    display: flex;
    gap: 8px;
}

.btn-add-tech[b-fithysx5p4] {
    background: #6C9EA3;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.btn-add-tech:hover[b-fithysx5p4] {
    opacity: 0.85;
}

.tech-tags[b-fithysx5p4] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tech-tag[b-fithysx5p4] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,158,163,0.12);
    color: #6C9EA3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-tag button[b-fithysx5p4] {
    background: none;
    border: none;
    color: #6C9EA3;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.tech-tag button:hover[b-fithysx5p4] {
    opacity: 1;
}

/* FORM ACTIONS */
.form-actions[b-fithysx5p4] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel[b-fithysx5p4] {
    padding: 11px 24px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-cancel:hover[b-fithysx5p4] {
    background: #f8f9fa;
}

.btn-save[b-fithysx5p4] {
    padding: 11px 28px;
    border-radius: 6px;
    border: none;
    background: #6C9EA3;
    color: #0D1C24;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-save:hover:not(:disabled)[b-fithysx5p4] {
    opacity: 0.85;
}

.btn-save:disabled[b-fithysx5p4] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .form-grid[b-fithysx5p4] {
        grid-template-columns: 1fr;
    }
}

.form-success[b-fithysx5p4] {
    background-color: rgba(108,158,163,0.12);
    border: 1px solid rgba(108,158,163,0.3);
    color: #4a8a8f;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}
/* /Pages/Admin/AdminProjects.razor.rz.scp.css */
/* AdminProjects - Listagem de projetos */

.admin-page__header[b-qb6zmp2m9n] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-page__title[b-qb6zmp2m9n] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.admin-page__subtitle[b-qb6zmp2m9n] {
    color: #A3A9AB;
    font-size: 0.875rem;
    margin: 0;
}

.btn-primary[b-qb6zmp2m9n] {
    background-color: #6C9EA3;
    color: #0D1C24;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.btn-primary:hover[b-qb6zmp2m9n] {
    opacity: 0.85;
}

.admin-loading[b-qb6zmp2m9n] {
    color: #A3A9AB;
    font-size: 0.95rem;
}

.admin-empty[b-qb6zmp2m9n] {
    text-align: center;
    padding: 60px 0;
    color: #A3A9AB;
}

.admin-empty a[b-qb6zmp2m9n] {
    color: #6C9EA3;
    text-decoration: none;
    font-weight: 600;
}

.admin-table-wrapper[b-qb6zmp2m9n] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table[b-qb6zmp2m9n] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table thead[b-qb6zmp2m9n] {
    background-color: #f8f9fa;
}

.admin-table th[b-qb6zmp2m9n] {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid #e8ecec;
}

.admin-table td[b-qb6zmp2m9n] {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #0D1C24;
}

.admin-table tbody tr:last-child td[b-qb6zmp2m9n] {
    border-bottom: none;
}

.admin-table tbody tr:hover[b-qb6zmp2m9n] {
    background-color: #fafafa;
}

.td-title[b-qb6zmp2m9n] {
    font-weight: 600;
}

.tag[b-qb6zmp2m9n] {
    background-color: rgba(108,158,163,0.12);
    color: #6C9EA3;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.td-actions[b-qb6zmp2m9n] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-edit[b-qb6zmp2m9n] {
    color: #6C9EA3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.15s;
}

.btn-edit:hover[b-qb6zmp2m9n] {
    background-color: rgba(108,158,163,0.1);
}

.btn-delete[b-qb6zmp2m9n] {
    color: #e05555;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-delete:hover[b-qb6zmp2m9n] {
    background-color: rgba(224,85,85,0.1);
}

/* CONFIRM DIALOG */
.confirm-overlay[b-qb6zmp2m9n] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.confirm-box[b-qb6zmp2m9n] {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.confirm-box p[b-qb6zmp2m9n] {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #0D1C24;
}

.confirm-box__sub[b-qb6zmp2m9n] {
    color: #A3A9AB;
    font-size: 0.875rem;
    margin-bottom: 24px !important;
}

.confirm-box__actions[b-qb6zmp2m9n] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cancel[b-qb6zmp2m9n] {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-cancel:hover[b-qb6zmp2m9n] {
    background: #f8f9fa;
}

.btn-confirm-delete[b-qb6zmp2m9n] {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: #e05555;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-confirm-delete:hover[b-qb6zmp2m9n] {
    opacity: 0.85;
}
/* /Pages/Admin/AdminTimeline.razor.rz.scp.css */
/* AdminTimeline - Listagem de eventos da timeline */

.admin-page[b-h7ph5shq91] {
    padding: 32px;
    max-width: 1100px;
}

.admin-page__header[b-h7ph5shq91] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-page__title[b-h7ph5shq91] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0;
}

.admin-page__subtitle[b-h7ph5shq91] {
    font-size: 0.875rem;
    color: #A3A9AB;
    margin: 4px 0 0;
}

.btn-primary[b-h7ph5shq91] {
    display: inline-block;
    padding: 10px 20px;
    background: #0D1C24;
    color: #F4F7F7;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.btn-primary:hover[b-h7ph5shq91] { opacity: 0.85; }

.admin-loading[b-h7ph5shq91] {
    color: #A3A9AB;
    font-size: 0.9rem;
    padding: 40px 0;
}

.admin-empty[b-h7ph5shq91] {
    text-align: center;
    padding: 60px 0;
    color: #A3A9AB;
}

.admin-empty a[b-h7ph5shq91] {
    color: #6C9EA3;
    font-weight: 600;
    text-decoration: none;
}

.admin-table-wrapper[b-h7ph5shq91] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table[b-h7ph5shq91] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table thead[b-h7ph5shq91] {
    background: #f8f9fa;
    border-bottom: 1px solid #e8ecec;
}

.admin-table th[b-h7ph5shq91] {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #A3A9AB;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-table td[b-h7ph5shq91] {
    padding: 14px 16px;
    color: #0D1C24;
    border-bottom: 1px solid #f0f2f2;
    vertical-align: middle;
}

.admin-table tr:last-child td[b-h7ph5shq91] { border-bottom: none; }

.admin-table tr:hover td[b-h7ph5shq91] { background: #fafbfb; }

.td-title[b-h7ph5shq91] {
    font-weight: 600;
    max-width: 280px;
}

.tag[b-h7ph5shq91] {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(108,158,163,0.12);
    color: #6C9EA3;
}

.td-actions[b-h7ph5shq91] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-edit[b-h7ph5shq91] {
    padding: 5px 14px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #e8ecec;
    color: #6C9EA3;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-edit:hover[b-h7ph5shq91] {
    background: #6C9EA3;
    color: #fff;
    border-color: #6C9EA3;
}

.btn-delete[b-h7ph5shq91] {
    padding: 5px 14px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #e8ecec;
    color: #e05555;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.btn-delete:hover[b-h7ph5shq91] {
    background: #e05555;
    color: #fff;
    border-color: #e05555;
}

/* Modal de confirmação */
.confirm-overlay[b-h7ph5shq91] {
    position: fixed;
    inset: 0;
    background: rgba(13,28,36,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.confirm-box[b-h7ph5shq91] {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
}

.confirm-box p[b-h7ph5shq91] {
    font-size: 1rem;
    color: #0D1C24;
    margin: 0 0 8px;
}

.confirm-box__sub[b-h7ph5shq91] {
    font-size: 0.85rem;
    color: #A3A9AB;
    margin-bottom: 24px;
}

.confirm-box__actions[b-h7ph5shq91] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cancel[b-h7ph5shq91] {
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-cancel:hover[b-h7ph5shq91] { background: #f8f9fa; }

.btn-confirm-delete[b-h7ph5shq91] {
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    background: #e05555;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-confirm-delete:hover[b-h7ph5shq91] { opacity: 0.85; }

@media (max-width: 768px) {
    .admin-page[b-h7ph5shq91] { padding: 20px; }
    .admin-table[b-h7ph5shq91] { font-size: 0.8rem; }
    .admin-table th[b-h7ph5shq91], .admin-table td[b-h7ph5shq91] { padding: 10px 12px; }
}
/* /Pages/Admin/AdminTimelineForm.razor.rz.scp.css */
/* AdminTimelineForm - Formulário de evento da timeline */

.back-link[b-gpxx0qrxhm] {
    color: #A3A9AB;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.15s;
}

.back-link:hover[b-gpxx0qrxhm] { color: #6C9EA3; }

.admin-page__title[b-gpxx0qrxhm] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0D1C24;
    letter-spacing: -0.02em;
    margin: 0;
}

.form-error[b-gpxx0qrxhm] {
    background-color: rgba(224,85,85,0.1);
    border: 1px solid rgba(224,85,85,0.25);
    color: #e05555;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-success[b-gpxx0qrxhm] {
    background-color: rgba(108,158,163,0.12);
    border: 1px solid rgba(108,158,163,0.3);
    color: #4a8a8f;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-grid[b-gpxx0qrxhm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.form-section[b-gpxx0qrxhm] {
    background: #fff;
    border: 1px solid #e8ecec;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section__title[b-gpxx0qrxhm] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1C24;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.field[b-gpxx0qrxhm] { display: flex; flex-direction: column; gap: 6px; }

.field__label[b-gpxx0qrxhm] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #A3A9AB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field__input[b-gpxx0qrxhm],
.field__textarea[b-gpxx0qrxhm],
.field__select[b-gpxx0qrxhm] {
    background: #f8f9fa;
    border: 1px solid #e8ecec;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0D1C24;
    outline: none;
    transition: border-color 0.15s;
}

.field__input:focus[b-gpxx0qrxhm],
.field__textarea:focus[b-gpxx0qrxhm] { border-color: #6C9EA3; }

.field__textarea[b-gpxx0qrxhm] { resize: vertical; }

.field__hint[b-gpxx0qrxhm] {
    font-size: 0.78rem;
    color: #A3A9AB;
    margin-top: 2px;
}

.field--checkbox[b-gpxx0qrxhm] { flex-direction: row; align-items: center; gap: 8px; }

.field--checkbox label[b-gpxx0qrxhm] {
    font-size: 0.9rem;
    color: #0D1C24;
    cursor: pointer;
}

.field--checkbox input[type="checkbox"][b-gpxx0qrxhm] {
    width: 16px;
    height: 16px;
    accent-color: #6C9EA3;
    cursor: pointer;
}

.form-actions-wrapper[b-gpxx0qrxhm] { margin-top: 8px; }

.form-actions[b-gpxx0qrxhm] { display: flex; justify-content: flex-end; gap: 12px; }

.btn-cancel[b-gpxx0qrxhm] {
    padding: 11px 24px;
    border-radius: 6px;
    border: 1px solid #e8ecec;
    background: #fff;
    color: #0D1C24;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-cancel:hover[b-gpxx0qrxhm] { background: #f8f9fa; }

.btn-save[b-gpxx0qrxhm] {
    padding: 11px 28px;
    border-radius: 6px;
    border: none;
    background: #6C9EA3;
    color: #0D1C24;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}

.btn-save:hover:not(:disabled)[b-gpxx0qrxhm] { opacity: 0.85; }

.btn-save:disabled[b-gpxx0qrxhm] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 900px) {
    .form-grid[b-gpxx0qrxhm] { grid-template-columns: 1fr; }
}
/* /Pages/Admin/Login.razor.rz.scp.css */
/* ====================================
   Login - Página de autenticação admin
   ==================================== */

.login-wrapper[b-zn21g9w1ln] {
    min-height: 100vh;
    background-color: #0D1C24;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card[b-zn21g9w1ln] {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 48px 40px;
}

.login-brand[b-zn21g9w1ln] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.brand-text[b-zn21g9w1ln] {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-accent[b-zn21g9w1ln] {
    color: #6C9EA3;
}

.brand-label[b-zn21g9w1ln] {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.login-error[b-zn21g9w1ln] {
    background-color: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.25);
    color: #ff8080;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.login-form[b-zn21g9w1ln] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field[b-zn21g9w1ln] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field__label[b-zn21g9w1ln] {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field__input[b-zn21g9w1ln] {
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
    outline: none;
}

.field__input[b-zn21g9w1ln]::placeholder {
    color: rgba(255,255,255,0.2);
}

.field__input:focus[b-zn21g9w1ln] {
    border-color: #6C9EA3;
}

.login-btn[b-zn21g9w1ln] {
    margin-top: 8px;
    background-color: #6C9EA3;
    color: #0D1C24;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.15s ease;
    width: 100%;
}

.login-btn:hover:not(:disabled)[b-zn21g9w1ln] {
    opacity: 0.85;
}

.login-btn:disabled[b-zn21g9w1ln] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Pages/Blog/Blog.razor.rz.scp.css */
/* ====================================
   BLOG PAGE - EDITORIAL DESIGN
   Inspirado em diplo.studio
   Cores: #6C9EA3, #0D1C24, #F4F7F7
   ==================================== */

/* ====================================
   HERO SECTION
   ==================================== */

.blog-hero[b-uninvk2bzr] {
    padding: 120px 5% 80px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow[b-uninvk2bzr] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6C9EA3;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title[b-uninvk2bzr] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero-description[b-uninvk2bzr] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(13, 28, 36, 0.55);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
}

/* ====================================
   CONTROLS SECTION
   ==================================== */

.blog-controls[b-uninvk2bzr] {
    margin-bottom: 60px;
    padding: 0 20px;
}

.controls-wrapper[b-uninvk2bzr] {
    max-width: 1200px;
    margin: 0 auto;
}

.search-container[b-uninvk2bzr] {
    margin-bottom: 32px;
}

.filters-container[b-uninvk2bzr] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filters-label[b-uninvk2bzr] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D1C24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filters-chips[b-uninvk2bzr] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

/* ====================================
   BLOG GRID
   ==================================== */

.blog-content-section[b-uninvk2bzr] {
    padding: 0 20px 120px 20px;
}

.blog-grid[b-uninvk2bzr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================
   BLOG CARD CUSTOMIZADO
   ==================================== */

.blog-meta-info[b-uninvk2bzr] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.blog-date[b-uninvk2bzr] {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #666;
    text-transform: capitalize;
}

.blog-reading[b-uninvk2bzr] {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #6C9EA3;
    font-weight: 500;
}

.blog-reading[b-uninvk2bzr]::before {
    content: "•";
    margin-right: 6px;
    color: #ccc;
}

.blog-tags[b-uninvk2bzr] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.tag-pill[b-uninvk2bzr] {
    display: inline-block;
    padding: 4px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6C9EA3;
    background-color: rgba(108, 158, 163, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tag-pill:hover[b-uninvk2bzr] {
    background-color: rgba(108, 158, 163, 0.2);
}

/* ====================================
   EMPTY STATE
   ==================================== */

.empty-state[b-uninvk2bzr] {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon[b-uninvk2bzr] {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3[b-uninvk2bzr] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D1C24;
    margin: 0 0 12px 0;
}

.empty-state p[b-uninvk2bzr] {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* ====================================
   PAGINATION
   ==================================== */

.pagination-container[b-uninvk2bzr] {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
    .hero-title[b-uninvk2bzr] {
        font-size: 3rem;
    }

    .blog-hero[b-uninvk2bzr] {
        padding: 80px 20px 60px 20px;
    }

    .blog-grid[b-uninvk2bzr] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .filters-container[b-uninvk2bzr] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title[b-uninvk2bzr] {
        font-size: 2.5rem;
    }

    .blog-hero[b-uninvk2bzr] {
        padding: 60px 20px 40px 20px;
    }
}

/* ====================================
   ANIMAÇÕES
   ==================================== */

.blog-grid > *[b-uninvk2bzr] {
    animation: fadeInUp-b-uninvk2bzr 0.4s ease-out;
    animation-fill-mode: both;
}

.blog-grid > *:nth-child(1)[b-uninvk2bzr] { animation-delay: 0.05s; }
.blog-grid > *:nth-child(2)[b-uninvk2bzr] { animation-delay: 0.1s; }
.blog-grid > *:nth-child(3)[b-uninvk2bzr] { animation-delay: 0.15s; }
.blog-grid > *:nth-child(4)[b-uninvk2bzr] { animation-delay: 0.2s; }
.blog-grid > *:nth-child(5)[b-uninvk2bzr] { animation-delay: 0.25s; }
.blog-grid > *:nth-child(6)[b-uninvk2bzr] { animation-delay: 0.3s; }

@keyframes fadeInUp-b-uninvk2bzr {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   FIX: Remover outline de foco indesejado
   ==================================== */

.blog-hero h1:focus[b-uninvk2bzr],
.blog-hero:focus[b-uninvk2bzr],
.blog-hero *:focus[b-uninvk2bzr] {
    outline: none;
}

.hero-title:focus[b-uninvk2bzr] {
    outline: none;
}
/* /Pages/Blog/BlogPostDetail.razor.rz.scp.css */
/* ====================================
   BlogPostDetail.razor.css
   Descrição: layout editorial leitura
   ==================================== */

/* ================================
   HERO
   ================================ */

.post-hero[b-uc3nth5qhu] {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: var(--color-dark);
}

.hero-image[b-uc3nth5qhu] {
    position: absolute;
    inset: 0;
}

.hero-image img[b-uc3nth5qhu] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image--placeholder[b-uc3nth5qhu] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0D1C24 0%,
        #16293a 60%,
        rgba(108, 158, 163, 0.12) 100%
    );
}

.hero-overlay[b-uc3nth5qhu] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 28, 36, 0.4) 40%,
        rgba(13, 28, 36, 0.95) 100%
    );
    z-index: 1;
}

.hero-content[b-uc3nth5qhu] {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.post-meta[b-uc3nth5qhu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(244, 247, 247, 0.65);
    text-transform: capitalize;
}

.meta-separator[b-uc3nth5qhu] {
    opacity: 0.4;
}

.post-reading[b-uc3nth5qhu] {
    color: var(--color-primary);
    font-weight: 500;
}

.post-hero-title[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #F4F7F7;
    margin: 0 0 1.5rem;
    max-width: 760px;
}

.post-tags[b-uc3nth5qhu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-badge[b-uc3nth5qhu] {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(108, 158, 163, 0.2);
    border: 1px solid rgba(108, 158, 163, 0.3);
    color: rgba(244, 247, 247, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

/* ================================
   CONTENT
   ================================ */

.post-content[b-uc3nth5qhu] {
    padding: 5rem 0 7rem;
    background-color: var(--color-light);
}

/* ================================
   EXCERPT
   ================================ */

.post-excerpt[b-uc3nth5qhu] {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.excerpt-text[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin: 0;
}

/* ================================
   ARTICLE BODY - Markdown
   ================================ */

.article-body[b-uc3nth5qhu] {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-dark);
}

.article-body p[b-uc3nth5qhu] {
    margin: 0 0 1.5rem;
}

.article-body p:last-child[b-uc3nth5qhu] {
    margin-bottom: 0;
}

.article-body h2[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-dark);
    margin: 3rem 0 1.25rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(13, 28, 36, 0.08);
}

.article-body h3[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin: 2rem 0 0.875rem;
}

.article-body ul[b-uc3nth5qhu],
.article-body ol[b-uc3nth5qhu] {
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
}

.article-body li[b-uc3nth5qhu] {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-body a[b-uc3nth5qhu] {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(108, 158, 163, 0.4);
    transition: border-color 0.2s ease;
}

.article-body a:hover[b-uc3nth5qhu] {
    border-color: var(--color-primary);
}

.article-body strong[b-uc3nth5qhu] {
    font-weight: 700;
    color: var(--color-dark);
}

.article-body em[b-uc3nth5qhu] {
    font-style: italic;
}

.article-body blockquote[b-uc3nth5qhu] {
    margin: 2rem 0;
    padding: 1.25rem 1.75rem;
    border-left: 3px solid var(--color-primary);
    background-color: rgba(108, 158, 163, 0.05);
}

.article-body blockquote p[b-uc3nth5qhu] {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-dark);
    opacity: 0.8;
    margin: 0;
}

.article-body code[b-uc3nth5qhu] {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em;
    color: var(--color-primary);
    background-color: rgba(108, 158, 163, 0.1);
    padding: 0.15em 0.4em;
    border-radius: 3px;
}

.article-body pre[b-uc3nth5qhu] {
    background-color: var(--color-dark);
    border-radius: 6px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-body pre code[b-uc3nth5qhu] {
    font-size: 0.9rem;
    color: rgba(244, 247, 247, 0.85);
    background: none;
    padding: 0;
    border-radius: 0;
}

.article-body img[b-uc3nth5qhu] {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.article-body hr[b-uc3nth5qhu] {
    border: none;
    border-top: 1px solid rgba(13, 28, 36, 0.1);
    margin: 3rem 0;
}

/* ================================
   FOOTER DO ARTIGO
   ================================ */

.article-footer[b-uc3nth5qhu] {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(13, 28, 36, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-label[b-uc3nth5qhu] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 28, 36, 0.45);
}

.footer-tag[b-uc3nth5qhu] {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 28, 36, 0.1);
    color: var(--color-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 3px;
    transition: border-color 0.2s ease;
}

.footer-tag:hover[b-uc3nth5qhu] {
    border-color: var(--color-primary);
}

/* ================================
   BACK LINK
   ================================ */

.back-link[b-uc3nth5qhu] {
    display: inline-block;
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(13, 28, 36, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover[b-uc3nth5qhu] {
    color: var(--color-primary);
}

/* ================================
   LOADING
   ================================ */

.detail-loading[b-uc3nth5qhu] {
    min-height: 100vh;
    background-color: var(--color-light);
}

.loading-content[b-uc3nth5qhu] {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ================================
   NOT FOUND
   ================================ */

.detail-not-found[b-uc3nth5qhu] {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.not-found-eyebrow[b-uc3nth5qhu] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.not-found-title[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--color-dark);
    margin: 0 0 1rem;
}

.not-found-text[b-uc3nth5qhu] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(13, 28, 36, 0.55);
    margin: 0 0 2.5rem;
}

.detail-back-btn[b-uc3nth5qhu] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(108, 158, 163, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.detail-back-btn:hover[b-uc3nth5qhu] {
    border-color: var(--color-primary);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .post-hero[b-uc3nth5qhu] {
        min-height: 50vh;
    }

    .article-body h2[b-uc3nth5qhu] {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .post-content[b-uc3nth5qhu] {
        padding: 3rem 0 5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-body a[b-uc3nth5qhu],
    .footer-tag[b-uc3nth5qhu],
    .back-link[b-uc3nth5qhu] {
        transition: none !important;
    }
}
/* /Pages/ComponentsDemo.razor.rz.scp.css */
.demo-page[b-tsezr1ynx8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.demo-header[b-tsezr1ynx8] {
    margin-bottom: 64px;
    text-align: center;
}

.demo-header h1[b-tsezr1ynx8] {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 16px 0;
}

.demo-header p[b-tsezr1ynx8] {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.demo-section[b-tsezr1ynx8] {
    margin-bottom: 80px;
}

.demo-section__title[b-tsezr1ynx8] {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 8px 0;
}

.demo-section__description[b-tsezr1ynx8] {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0 0 32px 0;
}

.demo-grid[b-tsezr1ynx8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.demo-grid--3col[b-tsezr1ynx8] {
    grid-template-columns: repeat(3, 1fr);
}

.demo-stack[b-tsezr1ynx8] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-tags[b-tsezr1ynx8] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag[b-tsezr1ynx8] {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.tag--primary[b-tsezr1ynx8] {
    background: var(--color-primary);
    color: white;
}

.tag--secondary[b-tsezr1ynx8] {
    background: var(--color-dark);
    color: white;
}

.tag--accent[b-tsezr1ynx8] {
    background: rgba(108, 158, 163, 0.15);
    color: var(--color-primary);
}

.card-meta[b-tsezr1ynx8] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-link[b-tsezr1ynx8] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.card-header-flex[b-tsezr1ynx8] {
    display: flex;
    gap: 16px;
    align-items: center;
}

.card-footer-flex[b-tsezr1ynx8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center[b-tsezr1ynx8] {
    text-align: center;
}

@media (max-width: 768px) {
    .demo-page[b-tsezr1ynx8] {
        padding: 40px 20px;
    }
    
    .demo-header h1[b-tsezr1ynx8] {
        font-size: 2rem;
    }
    
    .demo-grid[b-tsezr1ynx8],
    .demo-grid--3col[b-tsezr1ynx8] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================================
   SKELETON DEMO - Estilos para seção de demonstração de skeletons
   ============================================================================ */

.skeleton-demo-item[b-tsezr1ynx8] {
    /* Container de cada exemplo de skeleton */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-demo-title[b-tsezr1ynx8] {
    /* Título de cada exemplo */
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

/* ============================================================================
   BUTTON DEMO - Estilos para seção de demonstração de botões
   ============================================================================ */

.demo-subsection[b-tsezr1ynx8] {
    /* Subsection dentro de uma section */
    margin-bottom: 40px;
}

.demo-subsection__title[b-tsezr1ynx8] {
    /* Título de subsection */
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 16px 0;
}

.button-demo-row[b-tsezr1ynx8] {
    /* Layout horizontal com wrap para os botões */
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* Mobile: botões empilham verticalmente */
@media (max-width: 768px) {
    .button-demo-row[b-tsezr1ynx8] {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================================
   FILTER CHIP DEMO - Estilos para seção de demonstração de chips
   ============================================================================ */

.filter-chip-demo-row[b-tsezr1ynx8] {
    /* Layout horizontal com wrap para os chips */
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Mobile: mantém horizontal mas com wrap mais frequente */
@media (max-width: 768px) {
    .filter-chip-demo-row[b-tsezr1ynx8] {
        gap: 8px;
    }
}
/* /Pages/Contact/Contact.razor.rz.scp.css */
/* ====================================
   Contact.razor.css
   Estilos da página de contato
   ==================================== */

/* ================================
   HEADER DA PÁGINA
   ================================ */

.contact-header[b-2iskbem9jd] {
    padding: 5rem 0 3rem;
    background-color: var(--color-light);
}

.contact-eyebrow[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
}

.contact-title[b-2iskbem9jd] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin: 0 0 1.5rem;
}

.contact-title-accent[b-2iskbem9jd] {
    color: var(--color-primary);
}

.contact-subtitle[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-dark);
    opacity: 0.65;
    margin: 0;
    max-width: 480px;
}

/* ================================
   DIVISOR
   ================================ */

.contact-divider[b-2iskbem9jd] {
    padding: 0;
}

.divider-line[b-2iskbem9jd] {
    border: none;
    border-top: 1px solid rgba(13, 28, 36, 0.1);
    margin: 0;
}

/* ================================
   CONTEÚDO PRINCIPAL
   ================================ */

.contact-content[b-2iskbem9jd] {
    padding: 4rem 0 6rem;
    background-color: var(--color-light);
}

.contact-grid[b-2iskbem9jd] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 5rem;
    align-items: start;
}

/* ================================
   FORMULÁRIO
   ================================ */

.contact-main[b-2iskbem9jd] {
    min-width: 0;
}

.field-group[b-2iskbem9jd] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.07) !important;
}

.field-group:last-of-type[b-2iskbem9jd] {
    border-bottom: none !important;
}

.field-label[b-2iskbem9jd] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

/* Fix Bootstrap: inputs largura total e sem borda lateral */
.contact-main .field-input[b-2iskbem9jd],
.contact-main .field-select[b-2iskbem9jd] {
    width: 100% !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(13, 28, 36, 0.2) !important;
    border-radius: 0 !important;
    padding: 0.625rem 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: var(--color-dark) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-main .field-input:focus[b-2iskbem9jd],
.contact-main .field-select:focus[b-2iskbem9jd] {
    border-bottom-color: var(--color-primary) !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

.contact-main .field-input[b-2iskbem9jd]::placeholder {
    color: rgba(13, 28, 36, 0.3) !important;
}

/* Select: seta customizada */
.contact-main .field-select[b-2iskbem9jd] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C9EA3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.5rem center !important;
    padding-right: 2rem !important;
    cursor: pointer;
}

/* Fix Bootstrap: textarea sem borda em todos os lados */
.contact-main .field-textarea[b-2iskbem9jd] {
    width: 100% !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(13, 28, 36, 0.2) !important;
    border-radius: 0 !important;
    padding: 0.625rem 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: var(--color-dark) !important;
    outline: none !important;
    box-shadow: none !important;
    resize: none;
    transition: border-color 0.2s ease;
    min-height: 160px;
}

.contact-main .field-textarea:focus[b-2iskbem9jd] {
    border-bottom-color: var(--color-primary) !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

.contact-main .field-textarea[b-2iskbem9jd]::placeholder {
    color: rgba(13, 28, 36, 0.3) !important;
}

.field-error[b-2iskbem9jd] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.5rem;
}

.form-error-block[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #dc2626;
    padding: 0.875rem 1rem;
    background: rgba(220, 38, 38, 0.06);
    border-left: 2px solid #dc2626;
    margin-bottom: 1.5rem;
}

.field-actions[b-2iskbem9jd] {
    margin-top: 2.5rem;
}

.contact-submit-btn[b-2iskbem9jd] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #F4F7F7 !important;
    background-color: #0D1C24 !important;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    letter-spacing: -0.01em;
    text-decoration: none !important;
}

.contact-submit-btn:hover[b-2iskbem9jd] {
    background-color: #6C9EA3 !important;
    color: #F4F7F7 !important;
    transform: translateY(-1px);
}

.contact-submit-btn:active[b-2iskbem9jd] {
    transform: translateY(0);
}

.contact-submit-btn.sending[b-2iskbem9jd],
.contact-submit-btn:disabled[b-2iskbem9jd] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ================================
   BLOCO DE SUCESSO
   ================================ */

.success-block[b-2iskbem9jd] {
    padding: 4rem 0;
}

.success-check[b-2iskbem9jd] {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.success-label[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.success-title[b-2iskbem9jd] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.success-text[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.65;
    margin: 0 0 2.5rem;
    max-width: 400px;
}

/* ================================
   SIDEBAR
   ================================ */

.contact-sidebar[b-2iskbem9jd] {
    min-width: 0;
    position: sticky;
    top: 80px;
}

.sidebar-block[b-2iskbem9jd] {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.sidebar-block:last-child[b-2iskbem9jd] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-label[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.sidebar-email[b-2iskbem9jd] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 28, 36, 0.2);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sidebar-email:hover[b-2iskbem9jd] {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.sidebar-links[b-2iskbem9jd] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.sidebar-social-link[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-social-link:hover[b-2iskbem9jd] {
    color: var(--color-primary);
}

.sidebar-block--note[b-2iskbem9jd] {
    background-color: var(--color-light);
    padding: 1.25rem;
    border-radius: 8px;
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-note-text[b-2iskbem9jd] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.65;
    margin: 0;
}

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 900px) {
    .contact-grid[b-2iskbem9jd] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-sidebar[b-2iskbem9jd] {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .sidebar-block[b-2iskbem9jd] {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .sidebar-block--note[b-2iskbem9jd] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-header[b-2iskbem9jd] {
        padding: 3rem 0 2rem;
    }

    .contact-content[b-2iskbem9jd] {
        padding: 2.5rem 0 4rem;
    }

    .contact-submit-btn[b-2iskbem9jd] {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-main .field-input[b-2iskbem9jd],
    .contact-main .field-select[b-2iskbem9jd],
    .contact-main .field-textarea[b-2iskbem9jd],
    .contact-submit-btn[b-2iskbem9jd],
    .sidebar-email[b-2iskbem9jd],
    .sidebar-social-link[b-2iskbem9jd] {
        transition: none !important;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* ====================================
   Home.razor.css
   Estilos da página inicial WPDev
   Fase 2: Hero escuro com profundidade
   ==================================== */

/* ================================
   HERO
   ================================ */

.home-hero[b-l68sunesd5] {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-dark);
    background-image:
        radial-gradient(ellipse 70% 80% at 85% 20%, rgba(108, 158, 163, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 5% 90%, rgba(108, 158, 163, 0.05) 0%, transparent 50%);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

/* Noise texture específica para o fundo escuro */
.home-hero[b-l68sunesd5]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.home-hero > .hero-bg-poster[b-l68sunesd5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 0 !important;
    pointer-events: none;
}

.home-hero > .hero-bg-video[b-l68sunesd5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0 !important;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

.home-hero > .hero-bg-video.video-ready[b-l68sunesd5] {
    opacity: 0.85;
}

.home-hero > .hero-overlay[b-l68sunesd5] {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(13, 28, 36, 0.92) 0%,
        rgba(13, 28, 36, 0.75) 25%,
        rgba(13, 28, 36, 0.4) 55%,
        rgba(13, 28, 36, 0.15) 85%,
        rgba(13, 28, 36, 0.1) 100%);
    z-index: 0 !important;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-video[b-l68sunesd5] {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-bg-video[b-l68sunesd5] {
        opacity: 0.2;
    }
}

/* Conteúdo acima do overlay de noise */
.home-hero > *[b-l68sunesd5] {
    position: relative;
    z-index: 2;
}

.home-hero > .hero-bg-video[b-l68sunesd5],
.home-hero > .hero-overlay[b-l68sunesd5] {
    z-index: 0 !important;
}

.hero-inner[b-l68sunesd5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    padding-bottom: 4rem;
}

.hero-eyebrow[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1.5rem;
    padding-top: 1.25rem;
    position: relative;
}

/* Linha teal decorativa acima do eyebrow */
.hero-eyebrow[b-l68sunesd5]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

.hero-title[b-l68sunesd5] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #F4F7F7;
    margin: 0;
}

.hero-title-accent[b-l68sunesd5] {
    color: var(--color-primary);
}

.hero-desc[b-l68sunesd5] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
}

.hero-subtitle[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: rgba(244, 247, 247, 0.65);
    margin: 0 0 2.5rem;
}

.hero-actions[b-l68sunesd5] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-bottom-line[b-l68sunesd5] {
    margin-top: auto;
}

.hero-divider[b-l68sunesd5] {
    border: none;
    border-top: 1px solid rgba(244, 247, 247, 0.08);
    margin: 0;
}

/* ================================
   BOTÕES
   ================================ */

.home-btn[b-l68sunesd5] {
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease;
}

/* Padrão: contexto claro (CTA section) */
.home-btn--primary[b-l68sunesd5] {
    background-color: var(--color-dark);
    color: #F4F7F7;
    border: 1.5px solid transparent;
}

.home-btn--primary:hover[b-l68sunesd5] {
    background-color: var(--color-primary);
    color: #F4F7F7;
    transform: translateY(-1px);
}

.home-btn--ghost[b-l68sunesd5] {
    background-color: transparent;
    color: var(--color-dark);
    border: 1.5px solid rgba(13, 28, 36, 0.25);
}

.home-btn--ghost:hover[b-l68sunesd5] {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* Override: botões dentro do hero escuro */
.home-hero .home-btn--primary[b-l68sunesd5] {
    background-color: var(--color-primary);
    color: #F4F7F7;
    border-color: transparent;
}

.home-hero .home-btn--primary:hover[b-l68sunesd5] {
    background-color: #5a8a8f;
    color: #F4F7F7;
    transform: translateY(-1px);
}

.home-hero .home-btn--ghost[b-l68sunesd5] {
    color: rgba(244, 247, 247, 0.75);
    border-color: rgba(244, 247, 247, 0.18);
}

.home-hero .home-btn--ghost:hover[b-l68sunesd5] {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* ================================
   SEÇÕES GERAIS
   ================================ */

.home-section[b-l68sunesd5] {
    padding: 5rem 0 6rem;
    background-color: var(--color-light);
}

.home-section--dark[b-l68sunesd5] {
    background-color: var(--color-dark);
}

.section-header[b-l68sunesd5] {
    margin-bottom: 3rem;
}

.section-eyebrow[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.section-eyebrow--light[b-l68sunesd5] {
    color: rgba(108, 158, 163, 0.8);
}

.section-title[b-l68sunesd5] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.1;
}

.section-title--light[b-l68sunesd5] {
    color: #F4F7F7;
}

.section-cta[b-l68sunesd5] {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(13, 28, 36, 0.08);
}

.home-empty[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-dark);
    opacity: 0.5;
    padding: 4rem 0;
}

/* ================================
   PROJETOS EM DESTAQUE
   ================================ */

.featured-grid[b-l68sunesd5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.featured-stack[b-l68sunesd5] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-item[b-l68sunesd5] {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.featured-item:hover[b-l68sunesd5] {
    opacity: 0.85;
}

.featured-item:hover .featured-thumb img[b-l68sunesd5] {
    transform: scale(1.03);
}

.featured-thumb[b-l68sunesd5] {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--color-light);
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.featured-thumb--small[b-l68sunesd5] {
    height: 180px;
}

.featured-thumb img[b-l68sunesd5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.featured-thumb-placeholder[b-l68sunesd5] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(108, 158, 163, 0.15) 0%,
        rgba(108, 158, 163, 0.05) 100%
    );
}

.featured-info[b-l68sunesd5] {
    padding: 0;
}

.featured-tech-row[b-l68sunesd5] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.625rem;
}

.featured-tech[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.featured-title[b-l68sunesd5] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.featured-title--small[b-l68sunesd5] {
    font-size: 1.125rem;
}

.featured-desc[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.6;
    margin: 0;
}

.featured-desc--small[b-l68sunesd5] {
    font-size: 0.875rem;
}

/* ================================
   SKILLS
   ================================ */

.skills-grid[b-l68sunesd5] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.skill-group-label[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
}

.skill-list[b-l68sunesd5] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.skill-list li[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: rgba(244, 247, 247, 0.7);
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.skill-list li[b-l68sunesd5]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* ================================
   CTA CONTATO
   ================================ */

.home-cta[b-l68sunesd5] {
    padding: 6rem 0;
    background-color: var(--color-light);
    border-top: 1px solid rgba(13, 28, 36, 0.08);
}

.cta-inner[b-l68sunesd5] {
    max-width: 560px;
}

.cta-eyebrow[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.cta-title[b-l68sunesd5] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin: 0 0 1rem;
    line-height: 1.1;
}

.cta-text[b-l68sunesd5] {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.65;
    margin: 0 0 2rem;
}

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 1024px) {
    .skills-grid[b-l68sunesd5] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .featured-grid[b-l68sunesd5] {
        grid-template-columns: 1fr;
    }

    .featured-thumb[b-l68sunesd5] {
        height: 240px;
    }

    .featured-thumb--small[b-l68sunesd5] {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .home-hero[b-l68sunesd5] {
        min-height: auto;
        padding: 4rem 0 0;
    }

    .hero-inner[b-l68sunesd5] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .hero-actions[b-l68sunesd5] {
        flex-direction: column;
    }

    .home-btn[b-l68sunesd5] {
        width: 100%;
        justify-content: center;
    }

    .skills-grid[b-l68sunesd5] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-section[b-l68sunesd5] {
        padding: 3.5rem 0 4rem;
    }

    .home-cta[b-l68sunesd5] {
        padding: 4rem 0;
    }
}

/* ================================
   ACESSIBILIDADE
   ================================ */

@media (prefers-reduced-motion: reduce) {
    .home-btn[b-l68sunesd5],
    .featured-item[b-l68sunesd5],
    .featured-thumb img[b-l68sunesd5] {
        transition: none !important;
    }
}

/* Cursor de terminal piscando, ao lado do ponto final do título */
.hero-cursor-blink[b-l68sunesd5] {
    display: inline-block;
    margin-left: 0.05em;
    color: var(--color-primary);
    animation: cursorBlink-b-l68sunesd5 1.1s step-end infinite;
    font-weight: 400;
}

@keyframes cursorBlink-b-l68sunesd5 {
    0%, 50% {
        opacity: 1;
    }
    50.01%, 100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cursor-blink[b-l68sunesd5] {
        animation: none;
        opacity: 1;
    }
}
/* /Pages/NotFoundPage.razor.rz.scp.css */
/* ====================================
   404 - EDITORIAL DESIGN
   ==================================== */

.notfound[b-o012zqamc8] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.notfound__content[b-o012zqamc8] {
    max-width: 520px;
}

.notfound__eyebrow[b-o012zqamc8] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.notfound__code-wrap[b-o012zqamc8] {
    margin: 0 0 24px 0;
}

.notfound__code[b-o012zqamc8] {
    font-family: 'Poppins', sans-serif;
    font-size: 11rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.notfound__code--animated[b-o012zqamc8] {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.notfound__message[b-o012zqamc8] {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: rgba(13, 28, 36, 0.55);
    line-height: 1.7;
    margin: 0 auto 40px auto;
    max-width: 400px;
}

.notfound__actions[b-o012zqamc8] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .notfound__code[b-o012zqamc8] {
        font-size: 6rem;
    }

    .notfound__actions[b-o012zqamc8] {
        flex-direction: column;
        align-items: center;
    }

    .notfound__actions .home-btn[b-o012zqamc8] {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* /Pages/Now/Now.razor.rz.scp.css */
/* ====================================
   Now.razor.css
   Estilos da página "O que estou fazendo agora"
   ==================================== */

/* ================================
   HEADER DA PÁGINA
   ================================ */

.now-header[b-b7s79xjxis] {
    padding: 5rem 0 3rem;
    background-color: var(--color-light);
}

.now-eyebrow[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
}

.now-title[b-b7s79xjxis] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin: 0 0 1.5rem;
}

.now-title-accent[b-b7s79xjxis] {
    color: var(--color-primary);
}

.now-subtitle[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-dark);
    opacity: 0.65;
    margin: 0;
    max-width: 520px;
}

/* ================================
   DIVISOR
   ================================ */

.now-divider[b-b7s79xjxis] {
    padding: 0;
}

.divider-line[b-b7s79xjxis] {
    border: none;
    border-top: 1px solid rgba(13, 28, 36, 0.1);
    margin: 0;
}

/* ================================
   CONTEÚDO PRINCIPAL
   ================================ */

.now-content[b-b7s79xjxis] {
    padding: 4rem 0 6rem;
    background-color: var(--color-light);
}

/* Grid: 2 colunas no desktop, 1 no mobile */
.now-grid[b-b7s79xjxis] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

/* ================================
   COLUNA PRINCIPAL
   ================================ */

.now-main[b-b7s79xjxis] {
    min-width: 0;
}

/* Data de atualização */
.now-updated[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--color-dark);
    opacity: 0.5;
    margin: 0 0 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.now-updated strong[b-b7s79xjxis] {
    color: var(--color-dark);
    opacity: 1;
    font-weight: 600;
}

/* Bloco de conteúdo */
.now-block[b-b7s79xjxis] {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.now-block:last-child[b-b7s79xjxis] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Label acima de cada bloco */
.now-block-label[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

/* Texto principal do bloco */
.now-block-text[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin: 0;
}

/* Variante grande para o foco atual */
.now-block-text--large[b-b7s79xjxis] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ================================
   LISTAS (learning e goals)
   ================================ */

.now-list[b-b7s79xjxis] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* Item base */
.now-list-item[b-b7s79xjxis] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
}

/* Seta da lista de aprendizados */
.now-list-arrow[b-b7s79xjxis] {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: transform 0.2s ease;
}

.now-list-item:hover .now-list-arrow[b-b7s79xjxis] {
    transform: translateX(3px);
}

/* Variante goals: fundo leve */
.now-list--goals[b-b7s79xjxis] {
    gap: 0.625rem;
}

.now-list-item--goal[b-b7s79xjxis] {
    background-color: var(--color-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.now-list-item--goal:hover[b-b7s79xjxis] {
    background-color: rgba(108, 158, 163, 0.1);
}

/* Check mark dos goals */
.now-list-check[b-b7s79xjxis] {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ================================
   SIDEBAR
   ================================ */

.now-sidebar[b-b7s79xjxis] {
    min-width: 0;
    /* Fica presa no topo ao rolar */
    position: sticky;
    top: 80px;
}

.sidebar-block[b-b7s79xjxis] {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.sidebar-block:last-child[b-b7s79xjxis] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-label[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.sidebar-value[b-b7s79xjxis] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Bloco de inspiração */
.sidebar-block--inspiration[b-b7s79xjxis] {
    background-color: var(--color-light);
    padding: 1.25rem;
    border-radius: 8px;
    border-bottom: none;
}

.sidebar-inspiration-text[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.7;
    margin: 0;
}

.sidebar-link[b-b7s79xjxis] {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(108, 158, 163, 0.4);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.sidebar-link:hover[b-b7s79xjxis] {
    color: var(--color-dark);
    border-color: var(--color-dark);
}

/* ================================
   EMPTY STATE
   ================================ */

.now-empty[b-b7s79xjxis] {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
}

.now-empty-title[b-b7s79xjxis] {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem;
}

.now-empty-text[b-b7s79xjxis] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--color-dark);
    opacity: 0.55;
    margin: 0;
}

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 900px) {
    .now-grid[b-b7s79xjxis] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .now-sidebar[b-b7s79xjxis] {
        position: static;
        /* No mobile a sidebar vira um bloco horizontal */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .sidebar-block[b-b7s79xjxis] {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        border-right: none;
    }

    .sidebar-block--inspiration[b-b7s79xjxis] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .now-header[b-b7s79xjxis] {
        padding: 3rem 0 2rem;
    }

    .now-content[b-b7s79xjxis] {
        padding: 2.5rem 0 4rem;
    }

    .now-block-text--large[b-b7s79xjxis] {
        font-size: 1.25rem;
    }

    .now-sidebar[b-b7s79xjxis] {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ACESSIBILIDADE
   ================================ */

@media (prefers-reduced-motion: reduce) {
    .now-list-arrow[b-b7s79xjxis],
    .now-list-item--goal[b-b7s79xjxis],
    .sidebar-link[b-b7s79xjxis] {
        transition: none !important;
    }
}

/* ================================
   LINK DO PROJETO ATUAL
   ================================ */

.now-project-link[b-b7s79xjxis] {
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.now-project-link:hover[b-b7s79xjxis] {
    color: var(--color-primary);
}

.now-project-arrow[b-b7s79xjxis] {
    font-size: 0.875em;
    transition: transform 0.2s ease;
}

.now-project-link:hover .now-project-arrow[b-b7s79xjxis] {
    transform: translate(2px, -2px);
}
/* /Pages/Projects/ProjectDetail.razor.rz.scp.css */
/* ====================================
   ProjectDetail.razor.css
   Descrição: layout editorial
   ==================================== */

/* ================================
   HERO
   ================================ */

.project-hero[b-e03qowon5k] {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-image[b-e03qowon5k] {
    position: absolute;
    inset: 0;
}

.hero-image img[b-e03qowon5k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image--placeholder[b-e03qowon5k] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0D1C24 0%,
        #16293a 60%,
        rgba(108, 158, 163, 0.12) 100%
    );
}

.hero-overlay[b-e03qowon5k] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 28, 36, 0.3) 40%,
        rgba(13, 28, 36, 0.92) 100%
    );
    z-index: 1;
}

.hero-content[b-e03qowon5k] {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 4rem;
}

.hero-eyebrow[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.project-hero-title[b-e03qowon5k] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #F4F7F7;
    margin: 0 0 1.25rem;
    max-width: 800px;
}

.project-hero-description[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: rgba(244, 247, 247, 0.7);
    margin: 0;
    max-width: 600px;
}

/* ================================
   CONTENT
   ================================ */

.project-content[b-e03qowon5k] {
    padding: 5rem 0 7rem;
    background-color: var(--color-light);
}

.content-grid[b-e03qowon5k] {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 5rem;
    align-items: start;
}

/* ================================
   MAIN COLUMN
   ================================ */

.content-main[b-e03qowon5k] {
    min-width: 0;
}

.content-block[b-e03qowon5k] {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.content-block:last-child[b-e03qowon5k] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.block-eyebrow[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
}

.block-text[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-dark);
}

.block-text p[b-e03qowon5k] {
    margin: 0 0 1.25rem;
}

.block-text p:last-child[b-e03qowon5k] {
    margin-bottom: 0;
}

.tech-list[b-e03qowon5k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.tech-chip[b-e03qowon5k] {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 28, 36, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tech-chip:hover[b-e03qowon5k] {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ================================
   SIDEBAR
   ================================ */

.content-sidebar[b-e03qowon5k] {
    min-width: 0;
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-meta[b-e03qowon5k] {
    display: flex;
    flex-direction: column;
}

.meta-item[b-e03qowon5k] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(13, 28, 36, 0.08);
}

.meta-item:first-child[b-e03qowon5k] {
    padding-top: 0;
}

.meta-label[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 28, 36, 0.45);
}

.meta-value[b-e03qowon5k] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.meta-value--accent[b-e03qowon5k] {
    color: var(--color-primary);
}

.sidebar-actions[b-e03qowon5k] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-btn[b-e03qowon5k] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.detail-btn--primary[b-e03qowon5k] {
    background-color: var(--color-dark);
    color: #F4F7F7;
    border: 1.5px solid transparent;
}

.detail-btn--primary:hover[b-e03qowon5k] {
    background-color: var(--color-primary);
    color: #F4F7F7;
    transform: translateY(-1px);
}

.detail-btn--ghost[b-e03qowon5k] {
    background-color: transparent;
    color: var(--color-dark);
    border: 1.5px solid rgba(13, 28, 36, 0.2);
}

.detail-btn--ghost:hover[b-e03qowon5k] {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.back-link[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(13, 28, 36, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover[b-e03qowon5k] {
    color: var(--color-primary);
}

/* ================================
   LOADING
   ================================ */

.detail-loading[b-e03qowon5k] {
    min-height: 100vh;
    background-color: var(--color-light);
}

.loading-content[b-e03qowon5k] {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}

/* ================================
   NOT FOUND
   ================================ */

.detail-not-found[b-e03qowon5k] {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.not-found-eyebrow[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.not-found-title[b-e03qowon5k] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--color-dark);
    margin: 0 0 1rem;
}

.not-found-text[b-e03qowon5k] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(13, 28, 36, 0.55);
    margin: 0 0 2.5rem;
}

.detail-back-btn[b-e03qowon5k] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(108, 158, 163, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.detail-back-btn:hover[b-e03qowon5k] {
    border-color: var(--color-primary);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .content-grid[b-e03qowon5k] {
        grid-template-columns: 1fr 220px;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .project-hero[b-e03qowon5k] {
        height: 55vh;
        min-height: 400px;
    }

    .content-grid[b-e03qowon5k] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-sidebar[b-e03qowon5k] {
        position: static;
    }

    .sidebar-actions[b-e03qowon5k] {
        flex-direction: row;
    }

    .detail-btn[b-e03qowon5k] {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .project-hero[b-e03qowon5k] {
        height: 50vh;
        min-height: 360px;
    }

    .project-content[b-e03qowon5k] {
        padding: 3rem 0 5rem;
    }

    .sidebar-actions[b-e03qowon5k] {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .detail-btn[b-e03qowon5k],
    .tech-chip[b-e03qowon5k],
    .back-link[b-e03qowon5k] {
        transition: none !important;
    }
}

/* ZOOM BUTTON */
.hero-zoom-btn[b-e03qowon5k] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    background: rgba(244, 247, 247, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(244, 247, 247, 0.2);
    color: #F4F7F7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.hero-zoom-btn:hover[b-e03qowon5k] {
    background: rgba(244, 247, 247, 0.25);
    transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox-overlay[b-e03qowon5k] {
    position: fixed;
    inset: 0;
    background: rgba(13, 28, 36, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
    cursor: zoom-out;
    animation: fadeIn 0.2s ease-out;
}

.lightbox-img[b-e03qowon5k] {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close[b-e03qowon5k] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(244, 247, 247, 0.15);
    border: none;
    color: #F4F7F7;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover[b-e03qowon5k] {
    background: rgba(244, 247, 247, 0.25);
}
/* /Pages/Projects/Projects.razor.rz.scp.css */
/* ====================================
   PROJECTS PAGE - EDITORIAL DESIGN
   Inspirado em diplo.studio
   Cores: #6C9EA3, #0D1C24, #F4F7F7
   ==================================== */

/* ====================================
   HERO SECTION
   ==================================== */

.projects-hero[b-39t4fnuzwr] {
    padding: 120px 5% 80px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow[b-39t4fnuzwr] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6C9EA3;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title[b-39t4fnuzwr] {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #0D1C24;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 0.95;
}

.hero-description[b-39t4fnuzwr] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(13, 28, 36, 0.55);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
}

/* ====================================
   CONTROLS SECTION
   ==================================== */

.projects-controls[b-39t4fnuzwr] {
    margin-bottom: 60px;
    padding: 0 20px;
}

.controls-wrapper[b-39t4fnuzwr] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Search Container */
.search-container[b-39t4fnuzwr] {
    margin-bottom: 32px;
}

/* Filters Container */
.filters-container[b-39t4fnuzwr] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filters-label[b-39t4fnuzwr] {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D1C24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filters-chips[b-39t4fnuzwr] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

/* ====================================
   PROJECTS GRID
   ==================================== */

.projects-grid[b-39t4fnuzwr] {
    padding: 0 20px 120px 20px;
}

.grid[b-39t4fnuzwr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================
   EMPTY STATE
   ==================================== */

.empty-state[b-39t4fnuzwr] {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon[b-39t4fnuzwr] {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3[b-39t4fnuzwr] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D1C24;
    margin: 0 0 12px 0;
}

.empty-state p[b-39t4fnuzwr] {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* ====================================
   PAGINATION CONTAINER
   ==================================== */

.pagination-container[b-39t4fnuzwr] {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet */
@media (max-width: 768px) {
    .hero-title[b-39t4fnuzwr] {
        font-size: 3rem;
    }

    .hero-description[b-39t4fnuzwr] {
        font-size: 1rem;
    }

    .projects-hero[b-39t4fnuzwr] {
        padding: 80px 20px 60px 20px;
    }

    .grid[b-39t4fnuzwr] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 32px;
    }

    .filters-container[b-39t4fnuzwr] {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-label[b-39t4fnuzwr] {
        width: 100%;
    }

    .filters-chips[b-39t4fnuzwr] {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title[b-39t4fnuzwr] {
        font-size: 2.5rem;
    }

    .hero-description[b-39t4fnuzwr] {
        font-size: 0.9375rem;
    }

    .projects-hero[b-39t4fnuzwr] {
        padding: 60px 20px 40px 20px;
    }

    .grid[b-39t4fnuzwr] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-controls[b-39t4fnuzwr] {
        margin-bottom: 40px;
    }

    .projects-grid[b-39t4fnuzwr] {
        padding: 0 20px 80px 20px;
    }

    .pagination-container[b-39t4fnuzwr] {
        margin-top: 40px;
    }
}

/* ====================================
   MOTION & ANIMATIONS
   ==================================== */

/* Fade in animation for grid items */
.grid > *[b-39t4fnuzwr] {
    animation: fadeInUp-b-39t4fnuzwr 0.4s ease-out;
    animation-fill-mode: both;
}

/* Stagger animation for multiple items */
.grid > *:nth-child(1)[b-39t4fnuzwr] { animation-delay: 0.05s; }
.grid > *:nth-child(2)[b-39t4fnuzwr] { animation-delay: 0.1s; }
.grid > *:nth-child(3)[b-39t4fnuzwr] { animation-delay: 0.15s; }
.grid > *:nth-child(4)[b-39t4fnuzwr] { animation-delay: 0.2s; }
.grid > *:nth-child(5)[b-39t4fnuzwr] { animation-delay: 0.25s; }
.grid > *:nth-child(6)[b-39t4fnuzwr] { animation-delay: 0.3s; }
.grid > *:nth-child(7)[b-39t4fnuzwr] { animation-delay: 0.35s; }
.grid > *:nth-child(8)[b-39t4fnuzwr] { animation-delay: 0.4s; }
.grid > *:nth-child(9)[b-39t4fnuzwr] { animation-delay: 0.45s; }

@keyframes fadeInUp-b-39t4fnuzwr {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions */
.projects-page[b-39t4fnuzwr] {
    transition: all 0.3s ease;
}

/* ====================================
   TECH TAGS (dentro do Card Header)
   ==================================== */

.tech-tag[b-39t4fnuzwr] {
    display: inline-block;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6C9EA3;
    background-color: rgba(108, 158, 163, 0.1);
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.tech-tag:hover[b-39t4fnuzwr] {
    background-color: rgba(108, 158, 163, 0.2);
    transform: translateY(-2px);
}

/* ====================================
   FIX: Remover outline de foco indesejado
   ==================================== */

.projects-hero h1:focus[b-39t4fnuzwr],
.projects-hero:focus[b-39t4fnuzwr],
.projects-hero *:focus[b-39t4fnuzwr] {
    outline: none;
}

.hero-title:focus[b-39t4fnuzwr] {
    outline: none;
}
/* /Pages/Timeline/Timeline.razor.rz.scp.css */
/* ====================================
   TIMELINE PAGE - EDITORIAL DESIGN
   Cores: #6C9EA3, #0D1C24, #F4F7F7
   ==================================== */

.timeline-hero[b-rxap2jl5vk] {
    padding: 120px 5% 80px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow[b-rxap2jl5vk] {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6C9EA3;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title[b-rxap2jl5vk] {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero-description[b-rxap2jl5vk] {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(13, 28, 36, 0.55);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
}

.timeline-section[b-rxap2jl5vk] {
    padding: 0 20px 120px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container[b-rxap2jl5vk] {
    position: relative;
    padding-left: 3rem;
}

.timeline-container[b-rxap2jl5vk]::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6C9EA3 0%, rgba(108, 158, 163, 0.3) 100%);
}

.timeline-item[b-rxap2jl5vk] {
    position: relative;
    padding-bottom: 48px;
    animation: fadeInUp-b-rxap2jl5vk 0.4s ease-out;
    animation-fill-mode: both;
}

.timeline-item:last-child[b-rxap2jl5vk] {
    padding-bottom: 0;
}

.timeline-item:nth-child(1)[b-rxap2jl5vk] { animation-delay: 0.05s; }
.timeline-item:nth-child(2)[b-rxap2jl5vk] { animation-delay: 0.1s; }
.timeline-item:nth-child(3)[b-rxap2jl5vk] { animation-delay: 0.15s; }
.timeline-item:nth-child(4)[b-rxap2jl5vk] { animation-delay: 0.2s; }
.timeline-item:nth-child(5)[b-rxap2jl5vk] { animation-delay: 0.25s; }

.timeline-marker[b-rxap2jl5vk] {
    position: absolute;
    left: -2.375rem;
    top: 0.5rem;
    z-index: 2;
}

.marker-dot[b-rxap2jl5vk] {
    width: 1rem;
    height: 1rem;
    background: var(--color-light);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.marker-dot.marker-current[b-rxap2jl5vk] {
    width: 1.25rem;
    height: 1.25rem;
    background: #6C9EA3;
    box-shadow: 0 0 0 4px rgba(108, 158, 163, 0.2);
    animation: pulse-b-rxap2jl5vk 2s infinite;
}

@keyframes pulse-b-rxap2jl5vk {
    0%, 100% { box-shadow: 0 0 0 4px rgba(108, 158, 163, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(108, 158, 163, 0.1); }
}

.timeline-date[b-rxap2jl5vk] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6C9EA3;
}

.timeline-card[b-rxap2jl5vk] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(13, 28, 36, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.timeline-card:hover[b-rxap2jl5vk] {
    transform: translateX(8px);
    border-color: rgba(108, 158, 163, 0.3);
    box-shadow: 0 8px 24px rgba(13, 28, 36, 0.08);
}

.card-icon[b-rxap2jl5vk] {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #F4F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img[b-rxap2jl5vk] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.card-content[b-rxap2jl5vk] {
    flex: 1;
}

.card-title[b-rxap2jl5vk] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    margin: 0 0 12px 0;
}

.card-description[b-rxap2jl5vk] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(13, 28, 36, 0.55);
    margin: 0 0 12px 0;
}

.type-badge[b-rxap2jl5vk] {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.type-work[b-rxap2jl5vk] {
    background: rgba(108, 158, 163, 0.15);
    color: #6C9EA3;
}

.type-education[b-rxap2jl5vk] {
    background: rgba(13, 28, 36, 0.08);
    color: #0D1C24;
}

.type-project[b-rxap2jl5vk] {
    background: rgba(108, 158, 163, 0.1);
    color: #6C9EA3;
}

.card-link[b-rxap2jl5vk] {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6C9EA3;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.card-link:hover[b-rxap2jl5vk] {
    color: #0D1C24;
}

.empty-state[b-rxap2jl5vk] {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon[b-rxap2jl5vk] {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3[b-rxap2jl5vk] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D1C24;
    margin: 0 0 12px 0;
}

.empty-state p[b-rxap2jl5vk] {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title[b-rxap2jl5vk] { font-size: 3rem; }
    .timeline-hero[b-rxap2jl5vk] { padding: 80px 20px 60px 20px; }
    .timeline-card[b-rxap2jl5vk] { flex-direction: column; }
    .card-icon[b-rxap2jl5vk] { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .hero-title[b-rxap2jl5vk] { font-size: 2.5rem; }
    .timeline-hero[b-rxap2jl5vk] { padding: 60px 20px 40px 20px; }
}

@keyframes fadeInUp-b-rxap2jl5vk {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
