MediaWiki:Common.css: mudanças entre as edições
Página de Interface do MediaWiki
Mais ações
Sem resumo de edição |
Sem resumo de edição |
||
| (12 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
| Linha 4: | Linha 4: | ||
:root { | :root { | ||
/* --- Palette --- */ | |||
--celta-blue: #3366cc; | |||
--celta-dark: #151E32; | |||
--celta-green: #198754; | |||
--celta-yellow: #ffc107; | |||
--celta-red: #dc3545; | |||
/* --- Text Colors --- */ | |||
--celta-text-main: #333; | |||
--celta-text-muted: #64748b; | |||
--celta-text-dark: #0f172a; | |||
/* --- Backgrounds --- */ | |||
--celta-bg-light: #f8f9fa; | |||
--celta-card-bg: #ffffff; | |||
--celta-card-header-bg: #f8f9fa; | |||
/* Alerts Backgrounds */ | |||
--celta-bg-info: #f0f7ff; | |||
--celta-bg-success: #d1e7dd; | |||
--celta-bg-warning: #fff3cd; | |||
--celta-bg-danger: #fff5f5; | |||
--celta-bg-code: #e2e8f0; | |||
/* --- Borders & Shadows --- */ | |||
--celta-border: #e2e8f0; | |||
--celta-border-light: #e2e8f0; | |||
--celta-border-code: #cbd5e1; | |||
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); | |||
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); | |||
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |||
/* --- Fonts --- */ | |||
--celta-font-sans: 'Segoe UI', Roboto, sans-serif; | |||
--celta-font-mono: 'Consolas', 'Monaco', monospace; | |||
} | } | ||
| Linha 47: | Linha 47: | ||
.celta-page-header { | .celta-page-header { | ||
background: transparent !important; | |||
border: none !important; | |||
border-bottom: 1px solid var(--celta-border-light) !important; | |||
padding: 0 0 15px 0 !important; | |||
margin-bottom: 25px !important; | |||
box-shadow: none !important; | |||
} | } | ||
.celta-page-header.celta-header-clean { | .celta-page-header.celta-header-clean { | ||
border-bottom: none !important; | |||
margin-bottom: 10px !important; | |||
} | } | ||
.celta-breadcrumbs { | .celta-breadcrumbs { | ||
background: transparent !important; | |||
padding: 0 !important; | |||
font-size: 0.8em !important; | |||
color: var(--celta-text-muted) !important; | |||
text-transform: uppercase; | |||
font-weight: 600; | |||
margin-bottom: 5px !important; | |||
} | } | ||
.celta-main-title { | .celta-main-title { | ||
background: transparent !important; | |||
padding: 0 !important; | |||
margin: 0 !important; | |||
font-size: 1.8em !important; | |||
font-weight: 800 !important; | |||
color: var(--celta-text-dark) !important; | |||
line-height: 1.2 !important; | |||
border: none !important; | |||
} | } | ||
.celta-meta-info { | .celta-meta-info { | ||
background: transparent !important; | |||
padding: 0 !important; | |||
margin-top: 5px !important; | |||
font-size: 0.8em !important; | |||
color: #94a3b8 !important; | |||
border: none !important; | |||
} | } | ||
code { | code { | ||
font-family: var(--celta-font-mono) !important; | |||
font-size: 0.9em; | |||
background-color: var(--celta-bg-code); | |||
padding: 2px 6px; | |||
border-radius: 4px; | |||
color: var(--celta-text-dark); | |||
border: 1px solid var(--celta-border-code); | |||
} | } | ||
| Linha 106: | Linha 106: | ||
/* Banner Principal */ | /* Banner Principal */ | ||
.banner-secondary { | .banner-secondary { | ||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
background: linear-gradient(135deg, #0B1120 0%, #151E32 100%) !important; | |||
border-radius: 24px !important; | |||
padding: 20px 40px; | |||
margin-bottom: 30px; | |||
color: white; | |||
position: relative; | |||
overflow: hidden; | |||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); | |||
border: 1px solid rgba(255, 255, 255, 0.1); | |||
animation: fadeInUp 0.8s ease-out 0.2s backwards; | |||
} | } | ||
.banner-content { | .banner-content { | ||
position: relative; | |||
z-index: 2; | |||
max-width: 60%; | |||
} | } | ||
.banner-badge { | .banner-badge { | ||
background: rgba(59, 130, 246, 0.2); | |||
color: #10B981 !important; | |||
padding: 6px 14px; | |||
border-radius: 8px; | |||
font-size: 0.75rem; | |||
font-weight: 700; | |||
text-transform: uppercase; | |||
letter-spacing: 1px; | |||
margin-bottom: 12px; | |||
display: inline-block; | |||
border: 1px solid rgba(59, 130, 246, 0.3); | |||
} | } | ||
.banner-title { | .banner-title { | ||
font-size: 1.5rem !important; | |||
font-weight: 700 !important; | |||
margin-bottom: 8px !important; | |||
color: #FFFFFF !important; | |||
line-height: 1.3 !important; | |||
} | } | ||
.banner-text { | .banner-text { | ||
color: white; | |||
background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%); | |||
font-size: 1rem; | |||
line-height: 1.6; | |||
background-clip: text; | |||
-webkit-background-clip: text; | |||
-webkit-text-fill-color: transparent; | |||
} | } | ||
.banner-btn { | .banner-btn { | ||
background: rgba(59, 130, 246, 0.08); | |||
color: white; | |||
padding: 14px 28px; | |||
border-radius: 12px; | |||
font-weight: 600; | |||
transition: all 0.3s; | |||
position: relative; | |||
z-index: 2; | |||
white-space: nowrap; | |||
display: inline-flex; | |||
align-items: center; | |||
gap: 8px; | |||
text-decoration: none; | |||
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); | |||
} | } | ||
.banner-btn:hover { | .banner-btn:hover { | ||
background: rgba(59, 130, 246, 0.12); | |||
transform: translateY(-2px); | |||
box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); | |||
color: white; | |||
} | } | ||
.banner-btn:hover i { | .banner-btn:hover i { | ||
transform: translateX(4px); | |||
} | } | ||
@keyframes fadeInUp { | @keyframes fadeInUp { | ||
from { | |||
opacity: 0; | |||
transform: translateY(30px); | |||
} | |||
to { | |||
opacity: 1; | |||
transform: translateY(0); | |||
} | |||
} | } | ||
/* Hero Card (Destaque) */ | /* Hero Card (Destaque) */ | ||
.celta-hero-card { | .celta-hero-card { | ||
background: #fff; | |||
border-radius: 16px; | |||
border: 1px solid var(--celta-border-light); | |||
overflow: hidden; | |||
margin-bottom: 35px; | |||
display: grid; | |||
grid-template-columns: 2fr 1fr; | |||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); | |||
} | } | ||
.celta-hero-main { | .celta-hero-main { | ||
padding: 40px; | |||
border-right: 1px solid #f1f5f9; | |||
} | } | ||
.celta-hero-sidebar { | .celta-hero-sidebar { | ||
background: var(--celta-bg-light); | |||
padding: 30px; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
} | } | ||
| Linha 229: | Linha 229: | ||
.quick-access-section { | .quick-access-section { | ||
margin: 20px 0 15px 0; | |||
} | } | ||
.section-header { | .section-header { | ||
margin-bottom: 25px; | |||
display: flex; | |||
align-items: center; | |||
gap: 15px; | |||
} | } | ||
.section-title { | .section-title { | ||
font-size: 1.5rem !important; | |||
font-weight: 700 !important; | |||
margin: 0 !important; | |||
color: #1e293b !important; | |||
border: none !important; | |||
} | } | ||
.section-header-line { | .section-header-line { | ||
flex-grow: 1; | |||
height: 1px; | |||
background: #e2e8f0; | |||
opacity: 0.6; | |||
} | } | ||
.quick-links-grid { | .quick-links-grid { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |||
gap: 20px; | |||
} | } | ||
.quick-link-item { | .quick-link-item { | ||
background-color: #ffffff !important; | |||
border: 1px solid #e2e8f0 !important; | |||
border-radius: 12px; | |||
padding: 12px 20px; | |||
min-height: 60px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
position: relative; | |||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); | |||
transition: all 0.2s ease-in-out; | |||
} | } | ||
.quick-link-item:hover { | .quick-link-item:hover { | ||
transform: translateY(-3px); | |||
border-color: #2563eb !important; | |||
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); | |||
} | } | ||
.quick-link-content { | .quick-link-content { | ||
display: flex; | |||
align-items: center; | |||
gap: 15px; | |||
} | } | ||
.quick-link-icon { | .quick-link-icon { | ||
font-size: 1.2rem; | |||
color: #94a3b8 !important; | |||
transition: color 0.2s; | |||
} | } | ||
.quick-link-arrow { | .quick-link-arrow { | ||
font-size: 1rem; | |||
color: #cbd5e1 !important; | |||
transition: transform 0.2s; | |||
} | } | ||
.quick-link-item:hover .quick-link-arrow { | .quick-link-item:hover .quick-link-arrow { | ||
transform: translateX(3px); | |||
} | } | ||
| Linha 314: | Linha 309: | ||
html body .quick-link-text a.external, | html body .quick-link-text a.external, | ||
html body .quick-link-text a.extiw { | html body .quick-link-text a.extiw { | ||
color: inherit !important; | |||
text-decoration: none !important; | |||
font-weight: inherit !important; | |||
background: none !important; | |||
border: none !important; | |||
padding: 0 !important; | |||
margin: 0 !important; | |||
position: static !important; | |||
z-index: auto !important; | |||
} | } | ||
html body .quick-link-text a.external::after, | html body .quick-link-text a.external::after, | ||
html body .quick-link-text a.external::before { | html body .quick-link-text a.external::before { | ||
display: none !important; | |||
content: "" !important; | |||
background: none !important; | |||
} | } | ||
html body .quick-link-text a::after { | html body .quick-link-text a::after { | ||
content: ''; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
width: 100%; | |||
height: 100%; | |||
z-index: 10; | |||
background: transparent !important; | |||
} | } | ||
| Linha 349: | Linha 344: | ||
/* Chain Grid */ | /* Chain Grid */ | ||
.chain-grid-container { | .chain-grid-container { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); | |||
gap: 20px; | |||
margin-top: 30px; | |||
margin-bottom: 30px; | |||
} | } | ||
.chain-card { | .chain-card { | ||
background: #ffffff; | |||
border-radius: 30px; | |||
padding: 40px 30px; | |||
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05); | |||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
border: 1px solid rgba(0, 0, 0, 0.02); | |||
position: relative; | |||
overflow: hidden; | |||
display: flex; | |||
flex-direction: column; | |||
} | } | ||
.chain-card:hover { | .chain-card:hover { | ||
transform: translateY(-10px); | |||
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1); | |||
} | } | ||
.chain-icon { | .chain-icon { | ||
font-size: 3rem; | |||
margin-bottom: 5px; | |||
display: inline-block; | |||
} | } | ||
.chain-card h3 { | .chain-card h3 { | ||
font-size: 1.5rem; | |||
font-weight: 700; | |||
margin-bottom: 15px; | |||
color: #1e293b; | |||
border: none; | |||
} | } | ||
.chain-card p { | .chain-card p { | ||
color: #64748b; | |||
font-size: 1rem; | |||
line-height: 1.6; | |||
margin-bottom: 30px; | |||
flex-grow: 1; | |||
} | } | ||
.chain-card .chain-link a { | .chain-card .chain-link a { | ||
text-decoration: none; | |||
font-weight: 600; | |||
font-size: 1.1rem; | |||
color: #0ea5e9; | |||
transition: color 0.2s; | |||
} | } | ||
.chain-card .chain-link a:hover { | .chain-card .chain-link a:hover { | ||
text-decoration: none; | |||
color: #0284c7; | |||
} | } | ||
.chain-card.featured { | .chain-card.featured { | ||
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); | |||
color: #ffffff; | |||
} | } | ||
| Linha 417: | Linha 412: | ||
.chain-card.featured p, | .chain-card.featured p, | ||
.chain-card.featured i { | .chain-card.featured i { | ||
color: #ffffff !important; | |||
} | } | ||
.chain-card.featured .chain-link a { | .chain-card.featured .chain-link a { | ||
color: #ffffff; | |||
opacity: 0.9; | |||
border-bottom: 1px solid rgba(255, 255, 255, 0.5); | |||
} | } | ||
.chain-card.featured .chain-link a:hover { | .chain-card.featured .chain-link a:hover { | ||
opacity: 1; | |||
border-bottom: 1px solid #fff; | |||
} | } | ||
/* Generic Celta Grid */ | /* Generic Celta Grid */ | ||
.celta-grid { | .celta-grid { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); | |||
gap: 10px; | |||
margin: 20px 0; | |||
width: 100%; | |||
} | } | ||
.celta-card { | .celta-card { | ||
border: 1px solid var(--celta-border-light); | |||
border-radius: 12px; | |||
background: var(--celta-card-bg); | |||
padding: 0; | |||
transition: transform 0.2s, box-shadow 0.2s; | |||
display: flex; | |||
flex-direction: column; | |||
overflow: hidden; | |||
box-sizing: border-box; | |||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02); | |||
} | } | ||
.celta-card:hover { | .celta-card:hover { | ||
transform: translateY(-3px); | |||
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06); | |||
} | } | ||
.celta-card-header { | .celta-card-header { | ||
font-weight: 700; | |||
color: #1e293b; | |||
padding: 20px 20px 15px 20px; | |||
font-size: 1em; | |||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
background: var(--celta-card-header-bg); | |||
} | } | ||
.celta-card-body { | .celta-card-body { | ||
padding: 0 20px 20px 20px; | |||
font-size: 0.95em; | |||
color: var(--celta-text-muted); | |||
flex-grow: 1; | |||
} | } | ||
.celta-card-body ul { | .celta-card-body ul { | ||
list-style: none !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
} | } | ||
.celta-card-body li { | .celta-card-body li { | ||
margin: 0 !important; | |||
padding: 0 !important; | |||
background: transparent !important; | |||
border: none !important; | |||
} | } | ||
.celta-card-body li a { | .celta-card-body li a { | ||
display: block; | |||
padding: 8px 0; | |||
border-bottom: 1px solid #f1f5f9; | |||
color: #475569; | |||
text-decoration: none; | |||
font-weight: 500; | |||
transition: all 0.2s; | |||
} | } | ||
.celta-card-body li a:hover { | .celta-card-body li a:hover { | ||
color: var(--celta-blue); | |||
padding-left: 5px; | |||
border-bottom-color: var(--celta-border-light); | |||
} | } | ||
.celta-card-body li a::before { | .celta-card-body li a::before { | ||
content: "›"; | |||
margin-right: 8px; | |||
font-size: 1.2em; | |||
position: relative; | |||
top: 1px; | |||
color: var(--celta-border-code); | |||
} | } | ||
.celta-card-body li a:hover::before { | .celta-card-body li a:hover::before { | ||
color: var(--celta-blue); | |||
} | } | ||
.celta-card-body li:last-child a { | .celta-card-body li:last-child a { | ||
border-bottom: none; | |||
} | } | ||
/* Card Accents */ | /* Card Accents */ | ||
.celta-card.accent-blue { | .celta-card.accent-blue { | ||
border-top: 4px solid var(--celta-blue); | |||
} | } | ||
.celta-card.accent-blue .celta-card-header i { | .celta-card.accent-blue .celta-card-header i { | ||
color: var(--celta-blue); | |||
} | } | ||
.celta-card.accent-dark { | .celta-card.accent-dark { | ||
border-top: 4px solid var(--celta-dark); | |||
} | } | ||
.celta-card.accent-dark .celta-card-header i { | .celta-card.accent-dark .celta-card-header i { | ||
color: var(--celta-dark); | |||
} | } | ||
.celta-card.accent-orange { | .celta-card.accent-orange { | ||
border-top: 4px solid var(--celta-yellow); | |||
} | } | ||
.celta-card.accent-orange .celta-card-header i { | .celta-card.accent-orange .celta-card-header i { | ||
color: var(--celta-yellow); | |||
} | } | ||
.celta-card.accent-green { | .celta-card.accent-green { | ||
border-top: 4px solid var(--celta-green); | |||
} | } | ||
.celta-card.accent-green .celta-card-header i { | .celta-card.accent-green .celta-card-header i { | ||
color: var(--celta-green); | |||
} | } | ||
.celta-card.accent-red { | .celta-card.accent-red { | ||
border-top: 4px solid var(--celta-red); | |||
} | } | ||
.celta-card.accent-red .celta-card-header i { | .celta-card.accent-red .celta-card-header i { | ||
color: var(--celta-red); | |||
} | } | ||
@media (min-width: 768px) { | @media (min-width: 768px) { | ||
.celta-grid.celta-grid-2 { | |||
grid-template-columns: 1fr 1fr !important; | |||
} | |||
} | } | ||
| Linha 575: | Linha 570: | ||
/* Alerts */ | /* Alerts */ | ||
.celta-box { | .celta-box { | ||
padding: 12px 16px; | |||
margin: 16px 0; | |||
border-radius: 6px; | |||
border-left: 4px solid #ccc; | |||
background-color: #f9f9f9; | |||
font-size: 0.93em; | |||
font-family: var(--celta-font-sans) !important; | |||
} | } | ||
.celta-box-title { | .celta-box-title { | ||
font-weight: 700; | |||
margin-bottom: 4px; | |||
display: flex; | |||
align-items: center; | |||
gap: 8px; | |||
text-transform: uppercase; | |||
font-size: 0.9em; | |||
} | } | ||
.celta-info { | .celta-info { | ||
background: var(--celta-bg-info); | |||
border-color: var(--celta-blue); | |||
} | } | ||
.celta-info .celta-box-title { | .celta-info .celta-box-title { | ||
color: var(--celta-blue); | |||
} | } | ||
.celta-success { | .celta-success { | ||
background: var(--celta-bg-success); | |||
border-color: var(--celta-green); | |||
} | } | ||
.celta-success .celta-box-title { | .celta-success .celta-box-title { | ||
color: #155724; | |||
} | } | ||
.celta-warning { | .celta-warning { | ||
background: var(--celta-bg-warning); | |||
border-color: var(--celta-yellow); | |||
} | } | ||
.celta-warning .celta-box-title { | .celta-warning .celta-box-title { | ||
color: #856404; | |||
} | } | ||
.celta-danger { | .celta-danger { | ||
background: var(--celta-bg-danger); | |||
border-color: var(--celta-red); | |||
} | } | ||
.celta-danger .celta-box-title { | .celta-danger .celta-box-title { | ||
color: var(--celta-red); | |||
} | } | ||
/* Badges */ | /* Badges */ | ||
.celta-badge { | .celta-badge { | ||
display: inline-block; | |||
padding: 2px 8px; | |||
border-radius: 4px; | |||
font-size: 0.75em; | |||
font-weight: 700; | |||
text-transform: uppercase; | |||
margin-left: 8px; | |||
vertical-align: middle; | |||
position: relative; | |||
top: -1px; | |||
} | } | ||
.celta-badge-novo { | .celta-badge-novo { | ||
background: var(--celta-bg-success); | |||
color: #0f5132; | |||
border: 1px solid #badbcc; | |||
} | } | ||
.celta-badge-versao { | .celta-badge-versao { | ||
background: #e2e3e5; | |||
color: #383d41; | |||
border: 1px solid #d6d8db; | |||
} | } | ||
/* Tables */ | /* Tables */ | ||
.celta-table { | .celta-table { | ||
width: 100%; | |||
border-collapse: collapse; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
box-shadow: 0 0 0 1px #e0e0e0; | |||
margin-top: 15px !important; | |||
margin-bottom: 25px !important; | |||
font-family: var(--celta-font-sans) !important; | |||
} | } | ||
.celta-table th { | .celta-table th { | ||
background-color: var(--celta-dark); | |||
color: white; | |||
padding: 12px 15px; | |||
text-align: left; | |||
font-weight: 600; | |||
font-size: 1em; | |||
} | } | ||
.celta-table td { | .celta-table td { | ||
padding: 12px 15px; | |||
border-bottom: 1px solid #eee; | |||
vertical-align: top; | |||
font-size: 1em; | |||
color: var(--celta-text-main); | |||
} | } | ||
.celta-table tr:last-child td { | .celta-table tr:last-child td { | ||
border-bottom: none; | |||
} | } | ||
.celta-col-key { | .celta-col-key { | ||
background-color: var(--celta-bg-light); | |||
font-weight: 600; | |||
color: var(--celta-dark); | |||
width: 30%; | |||
} | } | ||
.celta-col-value { | .celta-col-value { | ||
width: 70%; | |||
} | } | ||
.celta-table ul { | .celta-table ul { | ||
margin: 5px 0 !important; | |||
padding-left: 20px !important; | |||
} | } | ||
.celta-table li { | .celta-table li { | ||
margin-bottom: 2px !important; | |||
} | } | ||
/* Prints */ | /* Prints */ | ||
.celta-print-container { | .celta-print-container { | ||
margin: 30px auto; | |||
text-align: center; | |||
} | } | ||
.celta-print-caption { | .celta-print-caption { | ||
margin-top: 10px; | |||
font-size: 0.85em; | |||
color: var(--celta-text-muted); | |||
font-style: italic; | |||
text-align: center; | |||
padding: 0 10px; | |||
line-height: 1.4; | |||
} | } | ||
.celta-print-img { | .celta-print-img { | ||
max-width: 100%; | |||
height: auto; | |||
border: 1px solid var(--celta-border-light); | |||
border-radius: 8px; | |||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); | |||
display: block; | |||
margin: 0 auto; | |||
width: 100%; | |||
max-height: 600px; | |||
} | } | ||
/* Link Lists */ | /* Link Lists */ | ||
.celta-link-list ul { | .celta-link-list ul { | ||
list-style: none !important; | |||
padding: 0 !important; | |||
margin: 0 !important; | |||
} | } | ||
.celta-link-list li { | .celta-link-list li { | ||
margin-bottom: 12px !important; | |||
padding-left: 0 !important; | |||
background: none !important; | |||
} | } | ||
.celta-link-list a { | .celta-link-list a { | ||
text-decoration: none; | |||
color: #334155; | |||
font-weight: 500; | |||
font-size: 0.95em; | |||
display: flex; | |||
align-items: center; | |||
transition: color 0.2s; | |||
} | } | ||
.celta-link-list a:hover { | .celta-link-list a:hover { | ||
color: var(--celta-blue); | |||
} | } | ||
.celta-link-list a::before { | .celta-link-list a::before { | ||
content: "\F285"; | |||
/* Chevron Right */ | |||
font-family: "bootstrap-icons"; | |||
color: var(--celta-border-code); | |||
margin-right: 10px; | |||
font-size: 1.1em; | |||
font-weight: bold; | |||
} | } | ||
.celta-link-list a.external::before { | .celta-link-list a.external::before { | ||
content: "\F30A"; | |||
/* Download Icon */ | |||
} | } | ||
| Linha 784: | Linha 779: | ||
.erp-container { | .erp-container { | ||
display: flex; | |||
flex-direction: column; | |||
height: 85vh; | |||
background-color: #f0f2f5; | |||
border: 1px solid #d1d5db; | |||
border-radius: 4px; | |||
overflow: hidden; | |||
font-family: var(--celta-font-sans); | |||
position: relative; | |||
} | } | ||
@media (min-width: 768px) { | @media (min-width: 768px) { | ||
.erp-container { | |||
grid-template-columns: 1fr 1fr !important; | |||
} | |||
} | } | ||
.erp-top-bar { | .erp-top-bar { | ||
background-color: #151E32; | |||
height: 50px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
padding: 0 20px; | |||
color: white; | |||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |||
z-index: 10; | |||
} | } | ||
.erp-brand { | .erp-brand { | ||
font-weight: 600; | |||
text-transform: uppercase; | |||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
} | } | ||
.erp-user-actions { | .erp-user-actions { | ||
display: flex; | |||
gap: 15px; | |||
} | } | ||
.erp-icon-circle { | .erp-icon-circle { | ||
border: 1px solid rgba(255, 255, 255, 0.6); | |||
border-radius: 50%; | |||
width: 32px; | |||
height: 32px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
font-size: 1.1em; | |||
} | } | ||
.erp-body { | .erp-body { | ||
display: flex; | |||
flex: 1; | |||
overflow: hidden; | |||
} | } | ||
.erp-sidebar { | .erp-sidebar { | ||
width: 260px; | |||
background-color: #ffffff; | |||
border-right: 1px solid #e0e0e0; | |||
flex-direction: column; | |||
padding-top: 10px; | |||
overflow-y: auto; | |||
flex-shrink: 0; | |||
} | } | ||
.erp-menu-item { | .erp-menu-item { | ||
padding: 12px 20px; | |||
color: var(--celta-text-main); | |||
display: flex; | |||
align-items: center; | |||
text-decoration: none !important; | |||
font-size: 0.95em; | |||
font-weight: 500; | |||
transition: background 0.2s, color 0.2s; | |||
border-left: 4px solid transparent; | |||
} | } | ||
.erp-menu-item i { | .erp-menu-item i { | ||
font-size: 1.3em; | |||
margin-right: 15px; | |||
width: 24px; | |||
text-align: center; | |||
color: #555; | |||
} | } | ||
.erp-menu-item:hover { | .erp-menu-item:hover { | ||
background-color: #f5f5f5 !important; | |||
color: #000 !important; | |||
} | } | ||
.erp-menu-item.active { | .erp-menu-item.active { | ||
background-color: #e3f2fd !important; | |||
color: #1565c0 !important; | |||
border-left-color: #151E32 !important; | |||
} | } | ||
.erp-menu-item.active i { | .erp-menu-item.active i { | ||
color: #151E32 !important; | |||
} | } | ||
.erp-content-stage { | .erp-content-stage { | ||
flex: 1; | |||
position: relative; | |||
padding: 30px; | |||
overflow-y: auto; | |||
} | } | ||
.erp-bg-logo { | .erp-bg-logo { | ||
position: absolute; | |||
bottom: 20px; | |||
right: 20px; | |||
width: 300px; | |||
height: 300px; | |||
background-image: url('/resources/assets/celta-logo.svg'); | |||
background-repeat: no-repeat; | |||
background-position: bottom right; | |||
background-size: contain; | |||
opacity: 1; | |||
pointer-events: none; | |||
z-index: 0; | |||
} | } | ||
.erp-widgets-area { | .erp-widgets-area { | ||
position: relative; | |||
z-index: 1; | |||
display: flex; | |||
flex-direction: column; | |||
gap: 20px; | |||
max-width: 800px; | |||
} | } | ||
.erp-footer-bar { | .erp-footer-bar { | ||
background-color: #151E32; | |||
height: 30px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
padding: 0 15px; | |||
font-size: 0.75em; | |||
color: #fff; | |||
font-weight: 600; | |||
} | } | ||
/* Submenu & System Menu */ | /* Submenu & System Menu */ | ||
.erp-submenu { | .erp-submenu { | ||
position: absolute; | |||
left: 260px; | |||
top: 0; | |||
width: 600px; | |||
height: 100%; | |||
background: #f8f9fa; | |||
border-right: 1px solid #e0e0e0; | |||
padding: 20px; | |||
display: none !important; | |||
z-index: 5; | |||
overflow-y: auto; | |||
} | } | ||
.erp-submenu-overlay { | .erp-submenu-overlay { | ||
position: absolute; | |||
top: 0; | |||
left: 260px; | |||
width: 650px; | |||
height: 100%; | |||
background-color: transparent; | |||
display: none; | |||
z-index: 100; | |||
} | } | ||
.erp-submenu-panel { | .erp-submenu-panel { | ||
background-color: #f0f2f5; | |||
border-right: 1px solid #ccc; | |||
border-bottom: 1px solid #ccc; | |||
width: 100%; | |||
height: 100%; | |||
padding: 20px; | |||
box-sizing: border-box; | |||
overflow-y: auto; | |||
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); | |||
} | } | ||
.sys-columns-grid { | .sys-columns-grid { | ||
display: grid; | |||
grid-template-columns: repeat(2, 1fr); | |||
gap: 10px; | |||
} | } | ||
@media (min-width: 1200px) { | @media (min-width: 1200px) { | ||
.sys-columns-grid { | |||
grid-template-columns: repeat(4, 1fr); | |||
} | |||
} | } | ||
.sys-column { | .sys-column { | ||
background: white; | |||
border: 1px solid #ccc; | |||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); | |||
} | } | ||
.sys-col-header { | .sys-col-header { | ||
background-color: #151E32; | |||
color: white; | |||
padding: 8px; | |||
text-align: center; | |||
font-weight: bold; | |||
font-size: 0.9em; | |||
} | } | ||
.sys-col-item { | .sys-col-item { | ||
padding: 8px 15px; | |||
border-bottom: 1px solid #eee; | |||
font-size: 0.85em; | |||
cursor: pointer; | |||
color: #333; | |||
position: relative; | |||
} | |||
/* O link ocupa toda a área do item */ | |||
.sys-col-item a { | |||
display: block !important; | |||
width: 100% !important; | |||
height: 100% !important; | |||
padding: 8px 15px !important; | |||
margin: 0 !important; | |||
text-decoration: none !important; | |||
color: inherit !important; | |||
} | |||
/* Remove padding duplicado do item quando tem link dentro */ | |||
.sys-col-item:has(a) { | |||
padding: 0 !important; | |||
} | } | ||
.sys-col-item:hover { | .sys-col-item:hover { | ||
background-color: #e9ecef; | |||
color: #000; | |||
font-weight: 500; | |||
} | |||
.sys-col-item:hover a { | |||
color: #000000ff; | |||
font-weight: 500; | |||
} | |||
.sys-col-item a.external, | |||
.sys-col-item a.extiw { | |||
display: block !important; | |||
position: relative !important; | |||
z-index: 1 !important; | |||
} | } | ||
.sys-separator { | .sys-separator { | ||
height: 10px; | |||
background: #f9f9f9; | |||
border-top: 1px solid #eee; | |||
border-bottom: 1px solid #eee; | |||
} | } | ||
[class*="erp-click-"] { | [class*="erp-click-"] { | ||
cursor: pointer; | |||
} | } | ||
[class*="erp-click-"].active { | [class*="erp-click-"].active { | ||
background-color: #e8f5e9 !important; | |||
color: #151E32 !important; | |||
border-left: 4px solid; color: #1e293b !important; | |||
} | } | ||
.erp-sidebar a { | .erp-sidebar a { | ||
text-decoration: none !important; | |||
display: block !important; | |||
color: inherit !important; | |||
border: none !important; | |||
} | } | ||
.erp-sidebar a:hover { | .erp-sidebar a:hover { | ||
text-decoration: none !important; | |||
} | } | ||
/* Menu Lateral do Sistema (Wiki) */ | /* Menu Lateral do Sistema (Wiki) */ | ||
.celta-sys-menu { | .celta-sys-menu { | ||
background-color: #ffffff !important; | |||
border: 1px solid #e0e0e0 !important; | |||
border-radius: 8px !important; | |||
padding: 20px !important; | |||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important; | |||
min-width: 260px; | |||
height: fit-content; | |||
} | } | ||
.celta-sys-header { | .celta-sys-header { | ||
font-weight: 700; | |||
color: #9ca3af; | |||
font-size: 0.8em; | |||
text-transform: uppercase; | |||
letter-spacing: 1.5px; | |||
margin-bottom: 15px; | |||
padding-bottom: 10px; | |||
border-bottom: 1px solid #f0f0f0; | |||
text-align: center; | |||
} | } | ||
.celta-sys-btn { | .celta-sys-btn { | ||
display: flex !important; | |||
align-items: center !important; | |||
width: 100% !important; | |||
box-sizing: border-box !important; | |||
padding: 10px 15px !important; | |||
background-color: #ffffff !important; | |||
border: 1px solid #e5e7eb !important; | |||
border-radius: 6px !important; | |||
color: #4b5563 !important; | |||
font-weight: 600 !important; | |||
font-size: 0.95em !important; | |||
line-height: 1.2 !important; | |||
text-decoration: none !important; | |||
margin-bottom: 8px !important; | |||
transition: all 0.2s !important; | |||
} | } | ||
.celta-sys-btn:hover { | .celta-sys-btn:hover { | ||
background-color: var(--celta-bg-light) !important; | |||
border-color: var(--celta-border-code) !important; | |||
color: #1e293b !important; | |||
transform: translateX(3px) !important; | |||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important; | |||
} | } | ||
.celta-sys-btn i { | .celta-sys-btn i { | ||
font-size: 1.1em !important; | |||
color: #94a3b8 !important; | |||
margin-right: 12px !important; | |||
width: 20px !important; | |||
text-align: center !important; | |||
display: inline-block !important; | |||
} | } | ||
.celta-sys-btn:hover i { | .celta-sys-btn:hover i { | ||
color: #3b82f6 !important; | |||
} | } | ||
.celta-sys-menu a { | .celta-sys-menu a { | ||
text-decoration: none !important; | |||
display: block !important; | |||
} | } | ||
| Linha 1 111: | Linha 1 135: | ||
/* Support Banner (Dark) */ | /* Support Banner (Dark) */ | ||
.support-banner { | .support-banner { | ||
background: #0f172a; | |||
border-radius: 20px; | |||
padding: 40px; | |||
display: flex; | |||
flex-wrap: wrap; | |||
align-items: center; | |||
justify-content: space-between; | |||
color: #ffffff; | |||
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15); | |||
} | } | ||
.support-content h2 { | .support-content h2 { | ||
color: #ffffff !important; | |||
border: none; | |||
margin: 0 0 10px 0; | |||
font-size: 1.8em; | |||
} | } | ||
.support-content p { | .support-content p { | ||
color: #94a3b8; | |||
margin: 0; | |||
} | } | ||
.support-actions { | .support-actions { | ||
display: flex; | |||
gap: 15px; | |||
margin-top: 20px; | |||
} | } | ||
.support-btn { | .support-btn { | ||
display: inline-flex; | |||
align-items: center; | |||
gap: 8px; | |||
padding: 12px 20px; | |||
border-radius: 50px; | |||
text-decoration: none !important; | |||
font-weight: 600; | |||
font-size: 0.95em; | |||
background: rgba(255, 255, 255, 0.1); | |||
color: #ffffff !important; | |||
transition: all 0.2s; | |||
border: 1px solid rgba(255, 255, 255, 0.1); | |||
} | } | ||
.support-btn:hover { | .support-btn:hover { | ||
background: rgba(255, 255, 255, 0.2); | |||
transform: translateY(-2px); | |||
} | } | ||
.support-btn.featured { | .support-btn.featured { | ||
background: #22c55e; | |||
color: #ffffff !important; | |||
border-color: #22c55e; | |||
box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3); | |||
} | } | ||
.support-btn.featured:hover { | .support-btn.featured:hover { | ||
background: #16a34a; | |||
} | } | ||
/* Footer Grid (Links) */ | /* Footer Grid (Links) */ | ||
.footer-grid { | .footer-grid { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |||
gap: 30px; | |||
margin-bottom: 60px; | |||
} | } | ||
.footer-card { | .footer-card { | ||
background: #f8fafc; | |||
padding: 25px; | |||
border-radius: 16px; | |||
border: 1px solid #e2e8f0; | |||
} | } | ||
.footer-title { | .footer-title { | ||
font-size: 1.1em; | |||
color: #1e293b; | |||
font-weight: 700; | |||
margin-bottom: 20px; | |||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
border: none !important; | |||
} | } | ||
.footer-list { | .footer-list { | ||
list-style: none; | |||
padding: 0; | |||
margin: 0; | |||
} | } | ||
.footer-list li { | .footer-list li { | ||
margin-bottom: 12px; | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
background: #ffffff; | |||
padding: 12px 15px; | |||
border-radius: 8px; | |||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02); | |||
transition: transform 0.2s, box-shadow 0.2s; | |||
border: 1px solid #f1f5f9; | |||
} | } | ||
.footer-list li:hover { | .footer-list li:hover { | ||
transform: translateX(5px); | |||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); | |||
border-color: #cbd5e1; | |||
} | } | ||
.footer-list li a { | .footer-list li a { | ||
text-decoration: none; | |||
color: #475569; | |||
font-weight: 500; | |||
flex-grow: 1; | |||
} | } | ||
.footer-list li i { | .footer-list li i { | ||
color: #94a3b8; | |||
font-size: 0.9em; | |||
} | } | ||
/* Footer Minimal (Support Box) */ | /* Footer Minimal (Support Box) */ | ||
.celta-footer-minimal { | .celta-footer-minimal { | ||
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); | |||
border-radius: 24px; | |||
padding: 12px 30px; | |||
margin-top: 30px; | |||
box-shadow: var(--shadow-xl); | |||
border: 1px solid rgba(255, 255, 255, 0.05); | |||
color: white; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
gap: 10px !important; | |||
position: relative; | |||
overflow: hidden; | |||
} | } | ||
.footer-col-left { | .footer-col-left { | ||
flex: 0 0 auto; | |||
z-index: 2; | |||
} | } | ||
.footer-col-center { | .footer-col-center { | ||
flex: 1; | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
text-align: center; | |||
z-index: 2; | |||
} | } | ||
.footer-title-row { | .footer-title-row { | ||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
gap: 12px; | |||
margin-bottom: 5px; | |||
} | } | ||
.footer-headphone-icon { | .footer-headphone-icon { | ||
font-size: 1.8rem !important; | |||
color: #38bdf8 !important; | |||
/* Sky Blue 400 */ | |||
margin: 0 !important; | |||
line-height: 1; | |||
display: flex; | |||
align-items: center; | |||
} | } | ||
.footer-col-right { | .footer-col-right { | ||
flex: 0 0 auto; | |||
z-index: 2; | |||
} | } | ||
| Linha 1 295: | Linha 1 319: | ||
left: 30px; | left: 30px; | ||
z-index: 10; | z-index: 10; | ||
width: | width: 45px; | ||
height: | height: 45px; | ||
background-color: transparent !important; | background-color: transparent !important; | ||
background-image: url('/resources/assets/celtalogo_notext | background-image: url('/resources/assets/celtalogo_notext.svg') !important; | ||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
background-position: center; | background-position: center; | ||
| Linha 1 308: | Linha 1 332: | ||
.celta-footer-minimal .footer-title { | .celta-footer-minimal .footer-title { | ||
font-size: 1.5rem !important; | |||
font-weight: 700; | |||
margin: 0 !important; | |||
line-height: 1; | |||
color: #FFFFFF !important; | |||
letter-spacing: -0.5px; | |||
} | } | ||
.celta-footer-minimal .footer-desc { | .celta-footer-minimal .footer-desc { | ||
font-size: 0.95rem; | |||
color: #e2e8f0 !important; | |||
margin: 15px !important; | |||
opacity: 0.9; | |||
} | } | ||
/* Footer Contacts */ | /* Footer Contacts */ | ||
.celta-contact-section { | .celta-contact-section { | ||
max-width: 900px; | |||
margin: 20px auto 20px auto; | |||
text-align: center; | |||
} | } | ||
.celta-contact-badge { | .celta-contact-badge { | ||
display: inline-flex; | |||
align-items: center; | |||
gap: 8px; | |||
color: var(--celta-text-muted); | |||
padding: 5px 16px; | |||
border-radius: 20px; | |||
font-size: 0.85em; | |||
font-weight: 700; | |||
text-transform: uppercase; | |||
letter-spacing: 1px; | |||
margin-bottom: 5px !important; | |||
} | } | ||
.celta-contact-box { | .celta-contact-box { | ||
border: 3px solid #10B981 !important; | |||
border-radius: 16px !important; | |||
display: flex; | |||
flex-wrap: wrap; | |||
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important; | |||
overflow: hidden; | |||
} | } | ||
.celta-footer-minimal .celta-contact-box { | .celta-footer-minimal .celta-contact-box { | ||
border: 3px solid #10B981 !important; | |||
border-radius: 16px; | |||
background: transparent; | |||
display: flex; | |||
flex-direction: column; | |||
min-width: 280px; | |||
padding: 5px 0; | |||
} | } | ||
.celta-contact-item { | .celta-contact-item { | ||
flex: 1; | |||
min-width: 200px; | |||
padding: 10px 10px !important; | |||
display: flex !important; | |||
flex-direction: row !important; | |||
align-items: center !important; | |||
justify-content: flex-start !important; | |||
gap: 15px !important; | |||
transition: background 0.2s; | |||
box-sizing: border-box !important; | |||
} | } | ||
.celta-contact-item:last-child { | .celta-contact-item:last-child { | ||
border-right: none; | |||
} | } | ||
.celta-contact-item:hover { | .celta-contact-item:hover { | ||
background: #f8fafc; | |||
} | } | ||
.celta-footer-minimal .celta-contact-item { | .celta-footer-minimal .celta-contact-item { | ||
border: none !important; | |||
padding: 0px 0px !important; | |||
} | } | ||
.celta-footer-minimal .celta-contact-item:hover { | .celta-footer-minimal .celta-contact-item:hover { | ||
background: transparent !important; | |||
transform: translateX(5px); | |||
} | } | ||
.celta-footer-minimal .celta-contact-item:hover .celta-contact-value { | .celta-footer-minimal .celta-contact-item:hover .celta-contact-value { | ||
color: #fff !important; | |||
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); | |||
} | } | ||
/* Icons & Wrappers */ | /* Icons & Wrappers */ | ||
.celta-contact-icon { | .celta-contact-icon { | ||
width: 42px !important; | |||
height: 42px !important; | |||
min-width: 42px !important; | |||
min-height: 42px !important; | |||
border-radius: 10px; | |||
display: flex !important; | |||
align-items: center !important; | |||
justify-content: center !important; | |||
font-size: 1.2em !important; | |||
flex-shrink: 0 !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
} | } | ||
.icon-blue { | .icon-blue { | ||
background: #e0f2fe !important; | |||
color: #0284c7 !important; | |||
} | } | ||
.icon-green { | .icon-green { | ||
background: #dcfce7 !important; | |||
color: #16a34a !important; | |||
} | } | ||
.icon-purple { | .icon-purple { | ||
background: #f3e8ff !important; | |||
color: #9333ea !important; | |||
} | } | ||
.icon-mail i { | .icon-mail i { | ||
color: lightskyblue !important; | |||
background: transparent !important; | |||
} | } | ||
.icon-whatsapp i { | .icon-whatsapp i { | ||
color: #25d366 !important; | |||
background: transparent !important; | |||
} | } | ||
.icon-site i { | .icon-site i { | ||
color: #F7C600 !important; | |||
background: transparent !important; | |||
} | } | ||
.celta-contact-content { | .celta-contact-content { | ||
display: flex !important; | |||
gap: 2px !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
min-width: 0 !important; | |||
flex: 1 !important; | |||
} | } | ||
.celta-contact-label { | .celta-contact-label { | ||
font-size: 0.75em !important; | |||
font-weight: 700 !important; | |||
text-transform: uppercase !important; | |||
color: #94a3b8 !important; | |||
letter-spacing: 0.5px !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
line-height: 1.2 !important; | |||
font-family: inherit !important; | |||
} | } | ||
.celta-contact-value { | .celta-contact-value { | ||
font-size: 0.95em !important; | |||
font-weight: 495 !important; | |||
color: #f9f9f9 !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
line-height: 1.4 !important; | |||
font-family: inherit !important; | |||
word-break: break-word !important; | |||
overflow-wrap: break-word !important; | |||
} | } | ||
.celta-contact-value a, | .celta-contact-value a, | ||
.celta-contact-value a.external { | .celta-contact-value a.external { | ||
font-family: inherit !important; | |||
font-size: inherit !important; | |||
font-weight: inherit !important; | |||
color: inherit !important; | |||
text-decoration: none !important; | |||
background-image: none !important; | |||
background: none !important; | |||
padding: 0 !important; | |||
margin: 0 !important; | |||
line-height: inherit !important; | |||
display: inline !important; | |||
border: none !important; | |||
} | } | ||
.celta-contact-value a:hover, | .celta-contact-value a:hover, | ||
.celta-contact-value a.external:hover { | .celta-contact-value a.external:hover { | ||
text-decoration: none !important; | |||
background: none !important; | |||
} | } | ||
.celta-contact-item:hover .celta-contact-value { | .celta-contact-item:hover .celta-contact-value { | ||
color: var(--celta-blue) !important; | |||
background: none !important; | |||
} | } | ||
/* SVG Logo (Bg) */ | /* SVG Logo (Bg) */ | ||
.celta-logo-svg { | .celta-logo-svg { | ||
background-image: url('/resources/assets/celta-logo.svg'); | |||
background-repeat: no-repeat; | |||
background-position: center; | |||
background-size: contain; | |||
display: block; | |||
margin: 0 auto; | |||
width: 100%; | |||
max-width: 350px; | |||
} | } | ||
@media (max-width: 700px) { | @media (max-width: 700px) { | ||
.celta-contact-box { | |||
flex-direction: column; | |||
} | |||
.celta-contact-item { | |||
border-right: none; | |||
border-bottom: 1px solid #f1f5f9; | |||
} | |||
} | } | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.celta-logo-svg { | |||
max-width: 280px; | |||
margin-left: auto; | |||
margin-right: auto; | |||
} | |||
.banner-secondary { | |||
flex-direction: column; | |||
gap: 20px; | |||
padding: 25px; | |||
text-align: center; | |||
} | |||
.banner-content { | |||
max-width: 100%; | |||
} | |||
.banner-title { | |||
font-size: 1.3rem; | |||
} | |||
.celta-hero-card { | |||
grid-template-columns: 1fr; | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.celta-hero-main { | |||
border-right: none; | |||
border-bottom: 1px solid #f1f5f9; | |||
padding: 30px 20px; | |||
} | |||
.celta-hero-sidebar { | |||
padding: 30px 20px; | |||
} | |||
.erp-container { | |||
height: auto !important; | |||
min-height: 80vh; | |||
} | |||
.erp-body { | |||
flex-direction: column !important; | |||
} | |||
.erp-sidebar { | |||
width: 100% !important; | |||
height: auto !important; | |||
max-height: 250px; | |||
border-right: none !important; | |||
border-bottom: 1px solid #e0e0e0; | |||
} | |||
.erp-bg-logo { | |||
display: none !important; | |||
} | |||
.erp-content-stage { | |||
padding: 15px !important; | |||
} | |||
.erp-user-actions { | |||
display: none !important; | |||
} | |||
.support-banner { | |||
flex-direction: column; | |||
text-align: center; | |||
} | |||
.support-actions { | |||
flex-direction: column; | |||
width: 100%; | |||
} | |||
.support-btn { | |||
justify-content: center; | |||
} | |||
} | } | ||
| Linha 1 622: | Linha 1 640: | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
/* Prints */ | |||
.center, | |||
.thumb, | |||
.tcenter { | |||
width: 100% !important; | |||
text-align: center !important; | |||
margin: 10px 0 !important; | |||
} | |||
div.thumbinner { | |||
width: auto !important; | |||
max-width: 100% !important; | |||
padding: 5px !important; | |||
box-sizing: border-box !important; | |||
margin: 0 auto !important; | |||
background-color: transparent !important; | |||
border: none !important; | |||
} | |||
.thumbimage { | |||
width: 100% !important; | |||
height: auto !important; | |||
max-width: 100% !important; | |||
} | |||
.thumbcaption { | |||
font-size: 0.9em !important; | |||
line-height: 1.4 !important; | |||
padding: 5px 0 !important; | |||
text-align: center !important; | |||
} | |||
/* Tables */ | |||
table.celta-table { | |||
display: block !important; | |||
width: 100% !important; | |||
border: none !important; | |||
box-shadow: none !important; | |||
} | |||
.celta-table thead { | |||
display: none !important; | |||
} | |||
.celta-table tbody, | |||
.celta-table tr, | |||
.celta-table td { | |||
display: block !important; | |||
width: 100% !important; | |||
box-sizing: border-box !important; | |||
} | |||
.celta-table tr { | |||
margin-bottom: 20px !important; | |||
border: 1px solid #e2e8f0 !important; | |||
border-radius: 12px !important; | |||
background: #fff !important; | |||
overflow: hidden !important; | |||
} | |||
.celta-table td { | |||
padding: 12px 15px !important; | |||
border-bottom: 1px solid #f1f5f9 !important; | |||
} | |||
.celta-table td:first-child { | |||
background-color: #f8fafc !important; | |||
color: #1e293b !important; | |||
font-weight: 700 !important; | |||
border-bottom: 1px solid #e2e8f0 !important; | |||
} | |||
/* Footer Minimal */ | |||
.celta-footer-minimal { | |||
display: flex !important; | |||
flex-direction: column !important; | |||
height: auto !important; | |||
padding: 30px 20px !important; | |||
gap: 30px !important; | |||
} | |||
.footer-col-left, | |||
.footer-col-center, | |||
.footer-col-right { | |||
width: 100% !important; | |||
flex: 1 1 auto !important; | |||
display: flex !important; | |||
flex-direction: column !important; | |||
align-items: center !important; | |||
} | |||
.celta-footer-minimal .celta-contact-box { | |||
width: 100% !important; | |||
} | |||
.celta-footer-minimal .celta-contact-item { | |||
flex-direction: column !important; | |||
text-align: center !important; | |||
padding: 0px !important; | |||
} | |||
.footer-logo-gold { | |||
position: relative !important; | |||
top: auto !important; | |||
left: auto !important; | |||
margin: 0 auto 15px auto !important; | |||
width: 80px !important; | |||
height: 80px !important; | |||
} | |||
.celta-print-container { | |||
margin: 15px auto; | |||
padding: 0 5px; | |||
} | |||
.celta-print-img { | |||
max-height: 400px; | |||
border-radius: 6px; | |||
} | |||
.celta-print-caption { | |||
font-size: 0.78em; | |||
margin: 15px auto; | |||
padding: 0 5px; | |||
} | |||
.celta-grid { | |||
grid-template-columns: 1fr; | |||
gap: 12px; | |||
padding: 0 10px; | |||
} | |||
.celta-card { | |||
border-radius: 10px; | |||
} | |||
.celta-card-header { | |||
padding: 16px; | |||
font-size: 0.95em; | |||
} | |||
.celta-card-body { | |||
padding: 0 16px 16px 16px; | |||
font-size: 0.9em; | |||
} | |||
.celta-card-body li a { | |||
padding: 10px 0; | |||
font-size: 0.9em; | |||
} | |||
.celta-card-body li a::before { | |||
font-size: 1.1em; | |||
} | |||
.quick-links-grid { | |||
grid-template-columns: 1fr !important; | |||
/* Força 1 coluna única (pilha) */ | |||
gap: 10px !important; | |||
} | |||
.quick-link-item { | |||
padding: 15px !important; | |||
/* Ajuste confortável para o dedo */ | |||
width: 100% !important; | |||
} | |||
.footer-title-row { | |||
flex-direction: row; | |||
gap: 10px; | |||
} | |||
} | } | ||
Edição atual tal como às 20h13min de 13 de dezembro de 2025
/* =========================================
CELTA WIKI FRAMEWORK - FINAL CLEAN
========================================= */
:root {
/* --- Palette --- */
--celta-blue: #3366cc;
--celta-dark: #151E32;
--celta-green: #198754;
--celta-yellow: #ffc107;
--celta-red: #dc3545;
/* --- Text Colors --- */
--celta-text-main: #333;
--celta-text-muted: #64748b;
--celta-text-dark: #0f172a;
/* --- Backgrounds --- */
--celta-bg-light: #f8f9fa;
--celta-card-bg: #ffffff;
--celta-card-header-bg: #f8f9fa;
/* Alerts Backgrounds */
--celta-bg-info: #f0f7ff;
--celta-bg-success: #d1e7dd;
--celta-bg-warning: #fff3cd;
--celta-bg-danger: #fff5f5;
--celta-bg-code: #e2e8f0;
/* --- Borders & Shadows --- */
--celta-border: #e2e8f0;
--celta-border-light: #e2e8f0;
--celta-border-code: #cbd5e1;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
/* --- Fonts --- */
--celta-font-sans: 'Segoe UI', Roboto, sans-serif;
--celta-font-mono: 'Consolas', 'Monaco', monospace;
}
/* =========================================
1. HEADER & TYPOGRAPHY
========================================= */
.celta-page-header {
background: transparent !important;
border: none !important;
border-bottom: 1px solid var(--celta-border-light) !important;
padding: 0 0 15px 0 !important;
margin-bottom: 25px !important;
box-shadow: none !important;
}
.celta-page-header.celta-header-clean {
border-bottom: none !important;
margin-bottom: 10px !important;
}
.celta-breadcrumbs {
background: transparent !important;
padding: 0 !important;
font-size: 0.8em !important;
color: var(--celta-text-muted) !important;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 5px !important;
}
.celta-main-title {
background: transparent !important;
padding: 0 !important;
margin: 0 !important;
font-size: 1.8em !important;
font-weight: 800 !important;
color: var(--celta-text-dark) !important;
line-height: 1.2 !important;
border: none !important;
}
.celta-meta-info {
background: transparent !important;
padding: 0 !important;
margin-top: 5px !important;
font-size: 0.8em !important;
color: #94a3b8 !important;
border: none !important;
}
code {
font-family: var(--celta-font-mono) !important;
font-size: 0.9em;
background-color: var(--celta-bg-code);
padding: 2px 6px;
border-radius: 4px;
color: var(--celta-text-dark);
border: 1px solid var(--celta-border-code);
}
/* =========================================
2. HERO & BANNERS (Topo)
========================================= */
/* Banner Principal */
.banner-secondary {
display: flex;
align-items: center;
justify-content: space-between;
background: linear-gradient(135deg, #0B1120 0%, #151E32 100%) !important;
border-radius: 24px !important;
padding: 20px 40px;
margin-bottom: 30px;
color: white;
position: relative;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
.banner-content {
position: relative;
z-index: 2;
max-width: 60%;
}
.banner-badge {
background: rgba(59, 130, 246, 0.2);
color: #10B981 !important;
padding: 6px 14px;
border-radius: 8px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
display: inline-block;
border: 1px solid rgba(59, 130, 246, 0.3);
}
.banner-title {
font-size: 1.5rem !important;
font-weight: 700 !important;
margin-bottom: 8px !important;
color: #FFFFFF !important;
line-height: 1.3 !important;
}
.banner-text {
color: white;
background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
font-size: 1rem;
line-height: 1.6;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.banner-btn {
background: rgba(59, 130, 246, 0.08);
color: white;
padding: 14px 28px;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s;
position: relative;
z-index: 2;
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.banner-btn:hover {
background: rgba(59, 130, 246, 0.12);
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
color: white;
}
.banner-btn:hover i {
transform: translateX(4px);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Hero Card (Destaque) */
.celta-hero-card {
background: #fff;
border-radius: 16px;
border: 1px solid var(--celta-border-light);
overflow: hidden;
margin-bottom: 35px;
display: grid;
grid-template-columns: 2fr 1fr;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.celta-hero-main {
padding: 40px;
border-right: 1px solid #f1f5f9;
}
.celta-hero-sidebar {
background: var(--celta-bg-light);
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
}
/* =========================================
3. QUICK ACCESS (Navegação Rápida)
========================================= */
.quick-access-section {
margin: 20px 0 15px 0;
}
.section-header {
margin-bottom: 25px;
display: flex;
align-items: center;
gap: 15px;
}
.section-title {
font-size: 1.5rem !important;
font-weight: 700 !important;
margin: 0 !important;
color: #1e293b !important;
border: none !important;
}
.section-header-line {
flex-grow: 1;
height: 1px;
background: #e2e8f0;
opacity: 0.6;
}
.quick-links-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
.quick-link-item {
background-color: #ffffff !important;
border: 1px solid #e2e8f0 !important;
border-radius: 12px;
padding: 12px 20px;
min-height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
transition: all 0.2s ease-in-out;
}
.quick-link-item:hover {
transform: translateY(-3px);
border-color: #2563eb !important;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.quick-link-content {
display: flex;
align-items: center;
gap: 15px;
}
.quick-link-icon {
font-size: 1.2rem;
color: #94a3b8 !important;
transition: color 0.2s;
}
.quick-link-arrow {
font-size: 1rem;
color: #cbd5e1 !important;
transition: transform 0.2s;
}
.quick-link-item:hover .quick-link-arrow {
transform: translateX(3px);
}
/* --- Quick Access Link Overrides --- */
html body .quick-link-text a,
html body .quick-link-text a:visited,
html body .quick-link-text a:active,
html body .quick-link-text a.new,
html body .quick-link-text a.external,
html body .quick-link-text a.extiw {
color: inherit !important;
text-decoration: none !important;
font-weight: inherit !important;
background: none !important;
border: none !important;
padding: 0 !important;
margin: 0 !important;
position: static !important;
z-index: auto !important;
}
html body .quick-link-text a.external::after,
html body .quick-link-text a.external::before {
display: none !important;
content: "" !important;
background: none !important;
}
html body .quick-link-text a::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background: transparent !important;
}
/* =========================================
4. CONTENT GRIDS (Chain & Generic)
========================================= */
/* Chain Grid */
.chain-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
margin-top: 30px;
margin-bottom: 30px;
}
.chain-card {
background: #ffffff;
border-radius: 30px;
padding: 40px 30px;
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(0, 0, 0, 0.02);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.chain-card:hover {
transform: translateY(-10px);
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}
.chain-icon {
font-size: 3rem;
margin-bottom: 5px;
display: inline-block;
}
.chain-card h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 15px;
color: #1e293b;
border: none;
}
.chain-card p {
color: #64748b;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 30px;
flex-grow: 1;
}
.chain-card .chain-link a {
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
color: #0ea5e9;
transition: color 0.2s;
}
.chain-card .chain-link a:hover {
text-decoration: none;
color: #0284c7;
}
.chain-card.featured {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
color: #ffffff;
}
.chain-card.featured h3,
.chain-card.featured p,
.chain-card.featured i {
color: #ffffff !important;
}
.chain-card.featured .chain-link a {
color: #ffffff;
opacity: 0.9;
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.chain-card.featured .chain-link a:hover {
opacity: 1;
border-bottom: 1px solid #fff;
}
/* Generic Celta Grid */
.celta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 10px;
margin: 20px 0;
width: 100%;
}
.celta-card {
border: 1px solid var(--celta-border-light);
border-radius: 12px;
background: var(--celta-card-bg);
padding: 0;
transition: transform 0.2s, box-shadow 0.2s;
display: flex;
flex-direction: column;
overflow: hidden;
box-sizing: border-box;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.celta-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.celta-card-header {
font-weight: 700;
color: #1e293b;
padding: 20px 20px 15px 20px;
font-size: 1em;
display: flex;
align-items: center;
gap: 10px;
background: var(--celta-card-header-bg);
}
.celta-card-body {
padding: 0 20px 20px 20px;
font-size: 0.95em;
color: var(--celta-text-muted);
flex-grow: 1;
}
.celta-card-body ul {
list-style: none !important;
margin: 0 !important;
padding: 0 !important;
}
.celta-card-body li {
margin: 0 !important;
padding: 0 !important;
background: transparent !important;
border: none !important;
}
.celta-card-body li a {
display: block;
padding: 8px 0;
border-bottom: 1px solid #f1f5f9;
color: #475569;
text-decoration: none;
font-weight: 500;
transition: all 0.2s;
}
.celta-card-body li a:hover {
color: var(--celta-blue);
padding-left: 5px;
border-bottom-color: var(--celta-border-light);
}
.celta-card-body li a::before {
content: "›";
margin-right: 8px;
font-size: 1.2em;
position: relative;
top: 1px;
color: var(--celta-border-code);
}
.celta-card-body li a:hover::before {
color: var(--celta-blue);
}
.celta-card-body li:last-child a {
border-bottom: none;
}
/* Card Accents */
.celta-card.accent-blue {
border-top: 4px solid var(--celta-blue);
}
.celta-card.accent-blue .celta-card-header i {
color: var(--celta-blue);
}
.celta-card.accent-dark {
border-top: 4px solid var(--celta-dark);
}
.celta-card.accent-dark .celta-card-header i {
color: var(--celta-dark);
}
.celta-card.accent-orange {
border-top: 4px solid var(--celta-yellow);
}
.celta-card.accent-orange .celta-card-header i {
color: var(--celta-yellow);
}
.celta-card.accent-green {
border-top: 4px solid var(--celta-green);
}
.celta-card.accent-green .celta-card-header i {
color: var(--celta-green);
}
.celta-card.accent-red {
border-top: 4px solid var(--celta-red);
}
.celta-card.accent-red .celta-card-header i {
color: var(--celta-red);
}
@media (min-width: 768px) {
.celta-grid.celta-grid-2 {
grid-template-columns: 1fr 1fr !important;
}
}
/* =========================================
5. CONTENT ELEMENTS (Alerts, Tables, Prints)
========================================= */
/* Alerts */
.celta-box {
padding: 12px 16px;
margin: 16px 0;
border-radius: 6px;
border-left: 4px solid #ccc;
background-color: #f9f9f9;
font-size: 0.93em;
font-family: var(--celta-font-sans) !important;
}
.celta-box-title {
font-weight: 700;
margin-bottom: 4px;
display: flex;
align-items: center;
gap: 8px;
text-transform: uppercase;
font-size: 0.9em;
}
.celta-info {
background: var(--celta-bg-info);
border-color: var(--celta-blue);
}
.celta-info .celta-box-title {
color: var(--celta-blue);
}
.celta-success {
background: var(--celta-bg-success);
border-color: var(--celta-green);
}
.celta-success .celta-box-title {
color: #155724;
}
.celta-warning {
background: var(--celta-bg-warning);
border-color: var(--celta-yellow);
}
.celta-warning .celta-box-title {
color: #856404;
}
.celta-danger {
background: var(--celta-bg-danger);
border-color: var(--celta-red);
}
.celta-danger .celta-box-title {
color: var(--celta-red);
}
/* Badges */
.celta-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75em;
font-weight: 700;
text-transform: uppercase;
margin-left: 8px;
vertical-align: middle;
position: relative;
top: -1px;
}
.celta-badge-novo {
background: var(--celta-bg-success);
color: #0f5132;
border: 1px solid #badbcc;
}
.celta-badge-versao {
background: #e2e3e5;
color: #383d41;
border: 1px solid #d6d8db;
}
/* Tables */
.celta-table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 0 1px #e0e0e0;
margin-top: 15px !important;
margin-bottom: 25px !important;
font-family: var(--celta-font-sans) !important;
}
.celta-table th {
background-color: var(--celta-dark);
color: white;
padding: 12px 15px;
text-align: left;
font-weight: 600;
font-size: 1em;
}
.celta-table td {
padding: 12px 15px;
border-bottom: 1px solid #eee;
vertical-align: top;
font-size: 1em;
color: var(--celta-text-main);
}
.celta-table tr:last-child td {
border-bottom: none;
}
.celta-col-key {
background-color: var(--celta-bg-light);
font-weight: 600;
color: var(--celta-dark);
width: 30%;
}
.celta-col-value {
width: 70%;
}
.celta-table ul {
margin: 5px 0 !important;
padding-left: 20px !important;
}
.celta-table li {
margin-bottom: 2px !important;
}
/* Prints */
.celta-print-container {
margin: 30px auto;
text-align: center;
}
.celta-print-caption {
margin-top: 10px;
font-size: 0.85em;
color: var(--celta-text-muted);
font-style: italic;
text-align: center;
padding: 0 10px;
line-height: 1.4;
}
.celta-print-img {
max-width: 100%;
height: auto;
border: 1px solid var(--celta-border-light);
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
display: block;
margin: 0 auto;
width: 100%;
max-height: 600px;
}
/* Link Lists */
.celta-link-list ul {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
.celta-link-list li {
margin-bottom: 12px !important;
padding-left: 0 !important;
background: none !important;
}
.celta-link-list a {
text-decoration: none;
color: #334155;
font-weight: 500;
font-size: 0.95em;
display: flex;
align-items: center;
transition: color 0.2s;
}
.celta-link-list a:hover {
color: var(--celta-blue);
}
.celta-link-list a::before {
content: "\F285";
/* Chevron Right */
font-family: "bootstrap-icons";
color: var(--celta-border-code);
margin-right: 10px;
font-size: 1.1em;
font-weight: bold;
}
.celta-link-list a.external::before {
content: "\F30A";
/* Download Icon */
}
/* =========================================
6. ERP SIMULATOR & SIDEBAR
========================================= */
.erp-container {
display: flex;
flex-direction: column;
height: 85vh;
background-color: #f0f2f5;
border: 1px solid #d1d5db;
border-radius: 4px;
overflow: hidden;
font-family: var(--celta-font-sans);
position: relative;
}
@media (min-width: 768px) {
.erp-container {
grid-template-columns: 1fr 1fr !important;
}
}
.erp-top-bar {
background-color: #151E32;
height: 50px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
color: white;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
z-index: 10;
}
.erp-brand {
font-weight: 600;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 10px;
}
.erp-user-actions {
display: flex;
gap: 15px;
}
.erp-icon-circle {
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: 50%;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1em;
}
.erp-body {
display: flex;
flex: 1;
overflow: hidden;
}
.erp-sidebar {
width: 260px;
background-color: #ffffff;
border-right: 1px solid #e0e0e0;
flex-direction: column;
padding-top: 10px;
overflow-y: auto;
flex-shrink: 0;
}
.erp-menu-item {
padding: 12px 20px;
color: var(--celta-text-main);
display: flex;
align-items: center;
text-decoration: none !important;
font-size: 0.95em;
font-weight: 500;
transition: background 0.2s, color 0.2s;
border-left: 4px solid transparent;
}
.erp-menu-item i {
font-size: 1.3em;
margin-right: 15px;
width: 24px;
text-align: center;
color: #555;
}
.erp-menu-item:hover {
background-color: #f5f5f5 !important;
color: #000 !important;
}
.erp-menu-item.active {
background-color: #e3f2fd !important;
color: #1565c0 !important;
border-left-color: #151E32 !important;
}
.erp-menu-item.active i {
color: #151E32 !important;
}
.erp-content-stage {
flex: 1;
position: relative;
padding: 30px;
overflow-y: auto;
}
.erp-bg-logo {
position: absolute;
bottom: 20px;
right: 20px;
width: 300px;
height: 300px;
background-image: url('/resources/assets/celta-logo.svg');
background-repeat: no-repeat;
background-position: bottom right;
background-size: contain;
opacity: 1;
pointer-events: none;
z-index: 0;
}
.erp-widgets-area {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 20px;
max-width: 800px;
}
.erp-footer-bar {
background-color: #151E32;
height: 30px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 15px;
font-size: 0.75em;
color: #fff;
font-weight: 600;
}
/* Submenu & System Menu */
.erp-submenu {
position: absolute;
left: 260px;
top: 0;
width: 600px;
height: 100%;
background: #f8f9fa;
border-right: 1px solid #e0e0e0;
padding: 20px;
display: none !important;
z-index: 5;
overflow-y: auto;
}
.erp-submenu-overlay {
position: absolute;
top: 0;
left: 260px;
width: 650px;
height: 100%;
background-color: transparent;
display: none;
z-index: 100;
}
.erp-submenu-panel {
background-color: #f0f2f5;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
width: 100%;
height: 100%;
padding: 20px;
box-sizing: border-box;
overflow-y: auto;
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}
.sys-columns-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
@media (min-width: 1200px) {
.sys-columns-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.sys-column {
background: white;
border: 1px solid #ccc;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sys-col-header {
background-color: #151E32;
color: white;
padding: 8px;
text-align: center;
font-weight: bold;
font-size: 0.9em;
}
.sys-col-item {
padding: 8px 15px;
border-bottom: 1px solid #eee;
font-size: 0.85em;
cursor: pointer;
color: #333;
position: relative;
}
/* O link ocupa toda a área do item */
.sys-col-item a {
display: block !important;
width: 100% !important;
height: 100% !important;
padding: 8px 15px !important;
margin: 0 !important;
text-decoration: none !important;
color: inherit !important;
}
/* Remove padding duplicado do item quando tem link dentro */
.sys-col-item:has(a) {
padding: 0 !important;
}
.sys-col-item:hover {
background-color: #e9ecef;
color: #000;
font-weight: 500;
}
.sys-col-item:hover a {
color: #000000ff;
font-weight: 500;
}
.sys-col-item a.external,
.sys-col-item a.extiw {
display: block !important;
position: relative !important;
z-index: 1 !important;
}
.sys-separator {
height: 10px;
background: #f9f9f9;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
[class*="erp-click-"] {
cursor: pointer;
}
[class*="erp-click-"].active {
background-color: #e8f5e9 !important;
color: #151E32 !important;
border-left: 4px solid; color: #1e293b !important;
}
.erp-sidebar a {
text-decoration: none !important;
display: block !important;
color: inherit !important;
border: none !important;
}
.erp-sidebar a:hover {
text-decoration: none !important;
}
/* Menu Lateral do Sistema (Wiki) */
.celta-sys-menu {
background-color: #ffffff !important;
border: 1px solid #e0e0e0 !important;
border-radius: 8px !important;
padding: 20px !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
min-width: 260px;
height: fit-content;
}
.celta-sys-header {
font-weight: 700;
color: #9ca3af;
font-size: 0.8em;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #f0f0f0;
text-align: center;
}
.celta-sys-btn {
display: flex !important;
align-items: center !important;
width: 100% !important;
box-sizing: border-box !important;
padding: 10px 15px !important;
background-color: #ffffff !important;
border: 1px solid #e5e7eb !important;
border-radius: 6px !important;
color: #4b5563 !important;
font-weight: 600 !important;
font-size: 0.95em !important;
line-height: 1.2 !important;
text-decoration: none !important;
margin-bottom: 8px !important;
transition: all 0.2s !important;
}
.celta-sys-btn:hover {
background-color: var(--celta-bg-light) !important;
border-color: var(--celta-border-code) !important;
color: #1e293b !important;
transform: translateX(3px) !important;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}
.celta-sys-btn i {
font-size: 1.1em !important;
color: #94a3b8 !important;
margin-right: 12px !important;
width: 20px !important;
text-align: center !important;
display: inline-block !important;
}
.celta-sys-btn:hover i {
color: #3b82f6 !important;
}
.celta-sys-menu a {
text-decoration: none !important;
display: block !important;
}
/* =========================================
7. SUPPORT & FOOTER
========================================= */
/* Support Banner (Dark) */
.support-banner {
background: #0f172a;
border-radius: 20px;
padding: 40px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
color: #ffffff;
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}
.support-content h2 {
color: #ffffff !important;
border: none;
margin: 0 0 10px 0;
font-size: 1.8em;
}
.support-content p {
color: #94a3b8;
margin: 0;
}
.support-actions {
display: flex;
gap: 15px;
margin-top: 20px;
}
.support-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
border-radius: 50px;
text-decoration: none !important;
font-weight: 600;
font-size: 0.95em;
background: rgba(255, 255, 255, 0.1);
color: #ffffff !important;
transition: all 0.2s;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.support-btn:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.support-btn.featured {
background: #22c55e;
color: #ffffff !important;
border-color: #22c55e;
box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
.support-btn.featured:hover {
background: #16a34a;
}
/* Footer Grid (Links) */
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.footer-card {
background: #f8fafc;
padding: 25px;
border-radius: 16px;
border: 1px solid #e2e8f0;
}
.footer-title {
font-size: 1.1em;
color: #1e293b;
font-weight: 700;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
border: none !important;
}
.footer-list {
list-style: none;
padding: 0;
margin: 0;
}
.footer-list li {
margin-bottom: 12px;
display: flex;
justify-content: space-between;
align-items: center;
background: #ffffff;
padding: 12px 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
transition: transform 0.2s, box-shadow 0.2s;
border: 1px solid #f1f5f9;
}
.footer-list li:hover {
transform: translateX(5px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
border-color: #cbd5e1;
}
.footer-list li a {
text-decoration: none;
color: #475569;
font-weight: 500;
flex-grow: 1;
}
.footer-list li i {
color: #94a3b8;
font-size: 0.9em;
}
/* Footer Minimal (Support Box) */
.celta-footer-minimal {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
border-radius: 24px;
padding: 12px 30px;
margin-top: 30px;
box-shadow: var(--shadow-xl);
border: 1px solid rgba(255, 255, 255, 0.05);
color: white;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px !important;
position: relative;
overflow: hidden;
}
.footer-col-left {
flex: 0 0 auto;
z-index: 2;
}
.footer-col-center {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
z-index: 2;
}
.footer-title-row {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 5px;
}
.footer-headphone-icon {
font-size: 1.8rem !important;
color: #38bdf8 !important;
/* Sky Blue 400 */
margin: 0 !important;
line-height: 1;
display: flex;
align-items: center;
}
.footer-col-right {
flex: 0 0 auto;
z-index: 2;
}
/* Logo Oficial (Cores Originais) */
.footer-logo-gold {
position: absolute;
top: 25px;
left: 30px;
z-index: 10;
width: 45px;
height: 45px;
background-color: transparent !important;
background-image: url('/resources/assets/celtalogo_notext.svg') !important;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
-webkit-mask: none !important;
mask: none !important;
display: block;
}
.celta-footer-minimal .footer-title {
font-size: 1.5rem !important;
font-weight: 700;
margin: 0 !important;
line-height: 1;
color: #FFFFFF !important;
letter-spacing: -0.5px;
}
.celta-footer-minimal .footer-desc {
font-size: 0.95rem;
color: #e2e8f0 !important;
margin: 15px !important;
opacity: 0.9;
}
/* Footer Contacts */
.celta-contact-section {
max-width: 900px;
margin: 20px auto 20px auto;
text-align: center;
}
.celta-contact-badge {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--celta-text-muted);
padding: 5px 16px;
border-radius: 20px;
font-size: 0.85em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 5px !important;
}
.celta-contact-box {
border: 3px solid #10B981 !important;
border-radius: 16px !important;
display: flex;
flex-wrap: wrap;
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
overflow: hidden;
}
.celta-footer-minimal .celta-contact-box {
border: 3px solid #10B981 !important;
border-radius: 16px;
background: transparent;
display: flex;
flex-direction: column;
min-width: 280px;
padding: 5px 0;
}
.celta-contact-item {
flex: 1;
min-width: 200px;
padding: 10px 10px !important;
display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: flex-start !important;
gap: 15px !important;
transition: background 0.2s;
box-sizing: border-box !important;
}
.celta-contact-item:last-child {
border-right: none;
}
.celta-contact-item:hover {
background: #f8fafc;
}
.celta-footer-minimal .celta-contact-item {
border: none !important;
padding: 0px 0px !important;
}
.celta-footer-minimal .celta-contact-item:hover {
background: transparent !important;
transform: translateX(5px);
}
.celta-footer-minimal .celta-contact-item:hover .celta-contact-value {
color: #fff !important;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
/* Icons & Wrappers */
.celta-contact-icon {
width: 42px !important;
height: 42px !important;
min-width: 42px !important;
min-height: 42px !important;
border-radius: 10px;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 1.2em !important;
flex-shrink: 0 !important;
margin: 0 !important;
padding: 0 !important;
}
.icon-blue {
background: #e0f2fe !important;
color: #0284c7 !important;
}
.icon-green {
background: #dcfce7 !important;
color: #16a34a !important;
}
.icon-purple {
background: #f3e8ff !important;
color: #9333ea !important;
}
.icon-mail i {
color: lightskyblue !important;
background: transparent !important;
}
.icon-whatsapp i {
color: #25d366 !important;
background: transparent !important;
}
.icon-site i {
color: #F7C600 !important;
background: transparent !important;
}
.celta-contact-content {
display: flex !important;
gap: 2px !important;
margin: 0 !important;
padding: 0 !important;
min-width: 0 !important;
flex: 1 !important;
}
.celta-contact-label {
font-size: 0.75em !important;
font-weight: 700 !important;
text-transform: uppercase !important;
color: #94a3b8 !important;
letter-spacing: 0.5px !important;
margin: 0 !important;
padding: 0 !important;
line-height: 1.2 !important;
font-family: inherit !important;
}
.celta-contact-value {
font-size: 0.95em !important;
font-weight: 495 !important;
color: #f9f9f9 !important;
margin: 0 !important;
padding: 0 !important;
line-height: 1.4 !important;
font-family: inherit !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
}
.celta-contact-value a,
.celta-contact-value a.external {
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
color: inherit !important;
text-decoration: none !important;
background-image: none !important;
background: none !important;
padding: 0 !important;
margin: 0 !important;
line-height: inherit !important;
display: inline !important;
border: none !important;
}
.celta-contact-value a:hover,
.celta-contact-value a.external:hover {
text-decoration: none !important;
background: none !important;
}
.celta-contact-item:hover .celta-contact-value {
color: var(--celta-blue) !important;
background: none !important;
}
/* SVG Logo (Bg) */
.celta-logo-svg {
background-image: url('/resources/assets/celta-logo.svg');
background-repeat: no-repeat;
background-position: center;
background-size: contain;
display: block;
margin: 0 auto;
width: 100%;
max-width: 350px;
}
@media (max-width: 700px) {
.celta-contact-box {
flex-direction: column;
}
.celta-contact-item {
border-right: none;
border-bottom: 1px solid #f1f5f9;
}
}
@media (max-width: 768px) {
.celta-logo-svg {
max-width: 280px;
margin-left: auto;
margin-right: auto;
}
.banner-secondary {
flex-direction: column;
gap: 20px;
padding: 25px;
text-align: center;
}
.banner-content {
max-width: 100%;
}
.banner-title {
font-size: 1.3rem;
}
.celta-hero-card {
grid-template-columns: 1fr;
display: flex;
flex-direction: column;
}
.celta-hero-main {
border-right: none;
border-bottom: 1px solid #f1f5f9;
padding: 30px 20px;
}
.celta-hero-sidebar {
padding: 30px 20px;
}
.erp-container {
height: auto !important;
min-height: 80vh;
}
.erp-body {
flex-direction: column !important;
}
.erp-sidebar {
width: 100% !important;
height: auto !important;
max-height: 250px;
border-right: none !important;
border-bottom: 1px solid #e0e0e0;
}
.erp-bg-logo {
display: none !important;
}
.erp-content-stage {
padding: 15px !important;
}
.erp-user-actions {
display: none !important;
}
.support-banner {
flex-direction: column;
text-align: center;
}
.support-actions {
flex-direction: column;
width: 100%;
}
.support-btn {
justify-content: center;
}
}
/* =========================================
8. MOBILE FIXES (Final Overrides)
========================================= */
@media (max-width: 768px) {
/* Prints */
.center,
.thumb,
.tcenter {
width: 100% !important;
text-align: center !important;
margin: 10px 0 !important;
}
div.thumbinner {
width: auto !important;
max-width: 100% !important;
padding: 5px !important;
box-sizing: border-box !important;
margin: 0 auto !important;
background-color: transparent !important;
border: none !important;
}
.thumbimage {
width: 100% !important;
height: auto !important;
max-width: 100% !important;
}
.thumbcaption {
font-size: 0.9em !important;
line-height: 1.4 !important;
padding: 5px 0 !important;
text-align: center !important;
}
/* Tables */
table.celta-table {
display: block !important;
width: 100% !important;
border: none !important;
box-shadow: none !important;
}
.celta-table thead {
display: none !important;
}
.celta-table tbody,
.celta-table tr,
.celta-table td {
display: block !important;
width: 100% !important;
box-sizing: border-box !important;
}
.celta-table tr {
margin-bottom: 20px !important;
border: 1px solid #e2e8f0 !important;
border-radius: 12px !important;
background: #fff !important;
overflow: hidden !important;
}
.celta-table td {
padding: 12px 15px !important;
border-bottom: 1px solid #f1f5f9 !important;
}
.celta-table td:first-child {
background-color: #f8fafc !important;
color: #1e293b !important;
font-weight: 700 !important;
border-bottom: 1px solid #e2e8f0 !important;
}
/* Footer Minimal */
.celta-footer-minimal {
display: flex !important;
flex-direction: column !important;
height: auto !important;
padding: 30px 20px !important;
gap: 30px !important;
}
.footer-col-left,
.footer-col-center,
.footer-col-right {
width: 100% !important;
flex: 1 1 auto !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
}
.celta-footer-minimal .celta-contact-box {
width: 100% !important;
}
.celta-footer-minimal .celta-contact-item {
flex-direction: column !important;
text-align: center !important;
padding: 0px !important;
}
.footer-logo-gold {
position: relative !important;
top: auto !important;
left: auto !important;
margin: 0 auto 15px auto !important;
width: 80px !important;
height: 80px !important;
}
.celta-print-container {
margin: 15px auto;
padding: 0 5px;
}
.celta-print-img {
max-height: 400px;
border-radius: 6px;
}
.celta-print-caption {
font-size: 0.78em;
margin: 15px auto;
padding: 0 5px;
}
.celta-grid {
grid-template-columns: 1fr;
gap: 12px;
padding: 0 10px;
}
.celta-card {
border-radius: 10px;
}
.celta-card-header {
padding: 16px;
font-size: 0.95em;
}
.celta-card-body {
padding: 0 16px 16px 16px;
font-size: 0.9em;
}
.celta-card-body li a {
padding: 10px 0;
font-size: 0.9em;
}
.celta-card-body li a::before {
font-size: 1.1em;
}
.quick-links-grid {
grid-template-columns: 1fr !important;
/* Força 1 coluna única (pilha) */
gap: 10px !important;
}
.quick-link-item {
padding: 15px !important;
/* Ajuste confortável para o dedo */
width: 100% !important;
}
.footer-title-row {
flex-direction: row;
gap: 10px;
}
}