/* Design System & Estilos Globais - Curta-Metragem Ao Vivo | Cyberpunk Edition */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:wght@600;800;900&family=Montserrat:wght@400;700;800;900&display=swap');

:root {
    --bg-primary: #07070a;
    --bg-secondary: #0b0b0f;
    --bg-card: rgba(13, 13, 19, 0.85);
    --bg-card-hover: rgba(22, 22, 33, 0.95);
    
    --color-primary: #ff2e5f;
    --color-primary-hover: #e01b4b;
    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-text-dark: #111827;
    --color-gold: #fbbf24;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-neon: rgba(255, 46, 95, 0.25);
    --border-neon-strong: rgba(255, 46, 95, 0.5);
    
    --shadow-neon: 0 10px 40px rgba(255, 46, 95, 0.25);
    --shadow-neon-strong: 0 15px 50px rgba(255, 46, 95, 0.45);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    --font-title: 'Cinzel', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--color-text-main);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #181824;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

p {
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* Preloader / Loader de Entrada */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader-pulse {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    position: relative;
}

.loader-pulse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    background: rgba(11, 11, 15, 0.65);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    background: rgba(7, 7, 10, 0.9);
    border-color: rgba(255, 46, 95, 0.15);
    border-radius: 0;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.logo span {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botões Estilizados */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 46, 95, 0.3);
    transform: translateY(-3px);
}

.btn-premium {
    background: linear-gradient(135deg, var(--color-gold), #d97706);
    color: var(--color-text-dark);
}

.btn-premium:hover {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.45);
    transform: translateY(-3px);
}

/* Background Video Hero */
.section-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
}

.background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(7, 7, 10, 0.5) 50%, rgba(7, 7, 10, 0.8) 100%);
    z-index: 2;
}

.hero-contain {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero-contain img.hero-logo {
    max-width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero-contain h1 {
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-contain p {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--color-text-main);
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Play Button de Cinema */
.play-btn-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    background: rgba(255, 46, 95, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-btn-wrapper:hover {
    background: var(--color-primary);
    box-shadow: var(--shadow-neon-strong);
    transform: translateY(-4px);
}

.play-icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: currentColor;
}

/* Live Status Overlay */
.live-status-bar {
    background: rgba(11, 11, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Seções de Layout Bento Grid */
.section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
}

/* Card Bento Grande (Assimétrico) */
.large-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 48px;
    transition: var(--transition-smooth);
}

.large-card:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.large-card-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.large-card-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.large-card-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.large-card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.large-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.large-card:hover .large-card-img {
    transform: scale(1.06);
}

/* Bento Grid de 2 Colunas */
.grid-2columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.halfcard-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1.5/1;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.halfcard-wrapper:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.halfcard-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
}

.tagline {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.heading-2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.halfcard-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

.halfcard-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.halfcard-wrapper:hover .halfcard-img {
    transform: scale(1.06);
}

/* Card Largo Especial para Personagens */
.large-card-fighters {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/1;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    margin-bottom: 48px;
}

.large-card-fighters:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.large-card-fighters::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.large-card-fighters:hover .halfcard-img {
    transform: scale(1.05);
}

/* Card Especial de Assinatura (Estilo Creator Notes) */
.creator-card_wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.creator-card_wrapper:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.creator-image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 1px solid var(--border-color);
}

.creator-card {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.creator-links_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
}

/* Animações de Reveal no Scroll */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cards Tradicionais das Subpáginas */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-neon);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 1.5/1;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-img {
    transform: scale(1.06);
}

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

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: auto;
}

/* Badges */
.badge-premium {
    background: rgba(251, 191, 36, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-free {
    background: rgba(255, 46, 95, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(255, 46, 95, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

/* Filtros */
.filter-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.filter-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
    color: #ffffff;
    border-color: var(--color-primary);
    background: rgba(255, 46, 95, 0.06);
}

/* Modais Dinâmicos */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 960px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.8);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Rodapé */
.footer {
    background: #040406;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    font-size: 14px;
    margin-top: 20px;
    max-width: 480px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-social h4 {
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-bottom a {
    color: var(--color-text-muted);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* Formulários de Autenticação */
.auth-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

select.form-control option {
    background-color: var(--bg-secondary);
    color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 15px rgba(255, 46, 95, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Área Administrativa Lateral */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.admin-logo span {
    color: var(--color-primary);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.admin-nav-link:hover, .admin-nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.admin-nav-link.active {
    background: rgba(255, 46, 95, 0.08);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px 12px 12px 4px;
}

.admin-main {
    flex-grow: 1;
    background: var(--bg-primary);
    padding: 60px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.admin-title {
    font-size: 32px;
    text-transform: uppercase;
}

/* Tabelas Administrativas */
.admin-table-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 20px 24px;
    font-size: 14px;
}

.admin-table th {
    background: rgba(255,255,255,0.02);
    font-weight: 800;
    color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.admin-table td {
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--color-text-muted);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    color: #ffffff;
    background: rgba(255,255,255,0.01);
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
}

/* Estatísticas Admin */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
}

/* Feedback box */
.alert {
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Animações e Pulsações */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 46, 95, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 46, 95, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 46, 95, 0);
    }
}

.concept-img-modal {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.text-concept-content {
    padding: 40px;
    line-height: 1.8;
}

.text-concept-content h3 {
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 24px;
}

/* Blog Single Page Layout */
.blog-single {
    padding: 180px 0 100px 0;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.blog-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-main);
    margin-top: 48px;
}

.blog-body p {
    margin-bottom: 30px;
}

.blog-body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}
/* Estilos originais mantidos */

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 137, 65, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(181, 137, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 137, 65, 0);
    }
}

/* Forçar cores de texto claras dentro do editor rico em modais escuros */
.modal-rich-text p, 
.modal-rich-text span, 
.modal-rich-text strong, 
.modal-rich-text li, 
.modal-rich-text h1, 
.modal-rich-text h2, 
.modal-rich-text h3 {
    color: #f4edd9 !important;
}
