:root {
    --color-dark: #0d1117;
    --color-dark-2: #161b22;
    --color-red: #c0392b;
    --color-red-light: #e74c3c;
    --color-text-dark: #e6edf3;
    --color-text-muted: #8b949e;
    --section-padding: 90px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ========================
   NAVBAR
======================== */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #21262d;
    padding: 0.75rem 0;
}

.navbar-brand-custom {
    font-weight: 900;
    font-size: 1.15rem;
    color: #e6edf3 !important;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.navbar-brand-custom span {
    color: var(--color-red);
}

.nav-link-custom {
    color: #8b949e !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem !important;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none !important;
    white-space: nowrap;
}

.nav-link-custom:hover {
    color: #e6edf3 !important;
    background: rgba(255,255,255,0.06);
}

.nav-link-alert {
    color: var(--color-red-light) !important;
    font-weight: 700;
}

.nav-link-alert:hover {
    background: rgba(231, 76, 60, 0.12) !important;
    color: var(--color-red-light) !important;
}

.navbar-toggler-custom {
    background: transparent;
    border: 1px solid #30363d;
    color: #8b949e;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ========================
   HERO
======================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(160deg, #0d1117 0%, #161b22 55%, #1a0000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--color-red-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #8b949e;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-red-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: var(--color-red);
    color: #fff !important;
    padding: 1rem 2.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

.hero-cta:hover {
    background: var(--color-red-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #8b949e;
    font-size: 1.4rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================
   SECTION BASE
======================== */
.section-light {
    background: #f4f6f8;
    color: #1c2128;
    padding: var(--section-padding);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-text-dark);
    padding: var(--section-padding);
}

.section-dark-2 {
    background: var(--color-dark-2);
    color: var(--color-text-dark);
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title.on-dark { color: #e6edf3; }
.section-title.on-light { color: #1c2128; }

.section-lead {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 3.5rem;
    max-width: 580px;
    line-height: 1.7;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: var(--color-red);
    margin-bottom: 1.25rem;
    border-radius: 2px;
}

/* ========================
   MISSION SECTION
======================== */
.mission-highlight {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.5;
    color: #1c2128;
    margin-bottom: 2.5rem;
}

.mission-highlight em {
    color: var(--color-red);
    font-style: normal;
}

.mission-box {
    background: #fff;
    border: 1px solid #d0d7de;
    border-left: 4px solid var(--color-red);
    border-radius: 0 10px 10px 0;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.mission-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.mission-box strong {
    color: #1c2128;
}

/* ========================
   INFO CARDS
======================== */
.info-card {
    background: var(--color-dark-2);
    border: 1px solid #30363d;
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, transform 0.2s;
}

.info-card:hover {
    border-color: var(--color-red);
    transform: translateY(-4px);
}

.info-card.light-card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.info-card.light-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 6px 24px rgba(192,57,43,0.12);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: inherit;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.75;
    margin: 0;
}

/* ========================
   ANATOMY BOX
======================== */
.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.anatomy-fact {
    background: rgba(255,255,255,0.04);
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}

.anatomy-fact .value {
    font-size: 2rem;
    font-weight: 900;
    color: #58a6ff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.anatomy-fact .label {
    font-size: 0.8rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================
   WARNING SIGNS
======================== */
.warning-sign {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.85rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.2s, background 0.2s;
}

.warning-sign:hover {
    border-color: rgba(192,57,43,0.35);
    background: rgba(192,57,43,0.05);
}

.warning-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-red);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-text h5 {
    font-size: 0.975rem;
    font-weight: 700;
    color: #e6edf3;
    margin: 0 0 0.2rem;
}

.warning-text p {
    font-size: 0.85rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.5;
}

/* ========================
   RED ALERT SECTION
======================== */
.section-red-alert {
    background: linear-gradient(160deg, #130000 0%, #1e0000 100%);
    color: #fff;
    padding: var(--section-padding);
    border-top: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
    position: relative;
    overflow: hidden;
}

.section-red-alert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(192,57,43,0.22) 0%, transparent 65%);
    pointer-events: none;
}

.red-badge {
    display: inline-block;
    background: var(--color-red);
    color: #fff;
    padding: 0.35rem 1.1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.red-alert-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-red-light);
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.red-alert-lead {
    font-size: 1.1rem;
    color: #c9d1d9;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(192,57,43,0.1);
    border-left: 4px solid var(--color-red);
    border-radius: 0 10px 10px 0;
    border-top: 1px solid rgba(192,57,43,0.2);
    border-right: 1px solid rgba(192,57,43,0.2);
    border-bottom: 1px solid rgba(192,57,43,0.2);
}

.alert-item-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.alert-item-content h4 {
    font-size: 0.975rem;
    font-weight: 800;
    color: var(--color-red-light);
    margin-bottom: 0.3rem;
}

.alert-item-content p {
    font-size: 0.875rem;
    color: #c9d1d9;
    margin: 0;
    line-height: 1.55;
}

.red-alert-cta {
    display: inline-block;
    background: var(--color-red);
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(192,57,43,0.5);
    margin-top: 1rem;
}

.red-alert-cta:hover {
    background: var(--color-red-light);
    transform: translateY(-2px);
}

/* ========================
   TREATMENTS
======================== */
.treatment-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.badge-surgery   { background: rgba(52,152,219,0.18); color: #5dade2; }
.badge-radiation { background: rgba(241,196,15,0.18); color: #f4d03f; }
.badge-medication{ background: rgba(46,204,113,0.18); color: #58d68d; }
.badge-watchful  { background: rgba(149,165,166,0.18); color: #aab7b8; }
.badge-hormone   { background: rgba(155,89,182,0.18); color: #a569bd; }
.badge-focal     { background: rgba(230,126,34,0.18); color: #f0a500; }

/* ========================
   LOCATIONS
======================== */
.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-dark-2);
    border: 1px solid #30363d;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
    text-decoration: none;
}

.location-item:hover { border-color: #58a6ff; }

.location-flag { font-size: 1.8rem; flex-shrink: 0; }

.location-name {
    font-size: 0.975rem;
    font-weight: 700;
    color: #e6edf3;
    margin-bottom: 0.15rem;
}

.location-detail { font-size: 0.8rem; color: #8b949e; }

/* ========================
   TESTIMONIALS
======================== */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    height: 100%;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--color-red);
    line-height: 1;
    position: absolute;
    top: 0.25rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    opacity: 0.25;
}

.testimonial-text {
    font-size: 0.975rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 1.5rem;
    padding-top: 1.75rem;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; color: #1c2128; }
.testimonial-detail { font-size: 0.78rem; color: #8b949e; }

/* ========================
   FOOTER
======================== */
.site-footer {
    background: var(--color-dark);
    border-top: 1px solid #21262d;
    padding: 3rem 0 2rem;
    text-align: center;
    color: #8b949e;
}

.site-footer .disclaimer {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #6e7681;
}

.footer-brand {
    font-weight: 900;
    font-size: 1.1rem;
    color: #e6edf3;
    margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--color-red); }

/* ========================
   SCROLL TO TOP
======================== */
#scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--color-red);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(192,57,43,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}

#scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top-btn:hover {
    background: var(--color-red-light);
}

/* ========================
   ADMIN — VARIÁVEIS
======================== */
.admin-shell {
    --adm-w: 260px;
    --adm-top: 56px;
    --adm-bg: #0d1117;
    --adm-surface: #161b22;
    --adm-surface2: #1c2128;
    --adm-border: #21262d;
    --adm-border2: #30363d;
    --adm-red: #c0392b;
    --adm-red2: #e74c3c;
    --adm-red-glow: rgba(192,57,43,0.15);
    --adm-text: #e6edf3;
    --adm-muted: #8b949e;
    --adm-faint: #484f58;
    --adm-green: #3fb950;
}

/* ========================
   ADMIN — SHELL
======================== */
.admin-shell {
    display: flex;
    min-height: 100vh;
    background: var(--adm-bg);
}

/* ========================
   ADMIN — SIDEBAR
======================== */
.admin-sidebar {
    width: var(--adm-w);
    background: var(--adm-surface);
    border-right: 1px solid var(--adm-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 200;
    transition: transform 0.25s ease;
    overflow: hidden;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.25rem 1.25rem 1.1rem;
    border-bottom: 1px solid var(--adm-border);
    flex-shrink: 0;
}

.brand-avatar {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--adm-red), var(--adm-red2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.brand-name {
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--adm-text);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.brand-name span { color: var(--adm-red2); }

.brand-sub {
    font-size: 0.7rem;
    color: var(--adm-faint);
    margin-top: 1px;
    font-weight: 500;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1.25rem;
    color: var(--adm-muted) !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: color 0.15s, background 0.15s;
    box-sizing: border-box;
}

.sidebar-link:hover {
    color: var(--adm-text) !important;
    background: rgba(255,255,255,0.04);
    text-decoration: none !important;
}

.sidebar-link.active {
    color: var(--adm-text) !important;
    background: var(--adm-red-glow);
    border-left-color: var(--adm-red);
    font-weight: 700;
}

.sl-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    line-height: 1;
}

.sl-label { flex: 1; }

.sidebar-footer {
    border-top: 1px solid var(--adm-border);
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.sidebar-logout { width: 100%; }
.sidebar-logout:hover { color: var(--adm-red2) !important; }

/* ========================
   ADMIN — MAIN
======================== */
.admin-main {
    flex: 1;
    margin-left: var(--adm-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-topbar {
    height: var(--adm-top);
    background: var(--adm-surface);
    border-bottom: 1px solid var(--adm-border);
    display: flex;
    align-items: center;
    padding: 0 1.75rem;
    position: sticky;
    top: 0;
    z-index: 50;
    gap: 1rem;
}

.topbar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--adm-red), var(--adm-red2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.topbar-username { font-size: 0.83rem; color: var(--adm-muted); }

.sidebar-toggle {
    background: transparent;
    border: 1px solid var(--adm-border2);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--adm-muted);
    transition: color 0.15s;
}

.sidebar-toggle:hover { color: var(--adm-text); }

.admin-content {
    padding: 2rem 1.75rem;
    flex: 1;
}

/* ========================
   ADMIN — PAGE HEADER
======================== */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--adm-border);
}

.page-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--adm-text);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.page-desc { color: var(--adm-muted); font-size: 0.875rem; margin: 0; }

/* ========================
   ADMIN — CARDS
======================== */
.admin-card {
    background: var(--adm-surface);
    border: 1px solid var(--adm-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.admin-form-card {
    background: var(--adm-surface);
    border: 1px solid var(--adm-border);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.admin-form-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--adm-text);
    margin-bottom: 1.25rem;
}

/* ========================
   ADMIN — QUICK LINKS
======================== */
.quick-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--adm-surface2);
    border: 1px solid var(--adm-border);
    border-radius: 10px;
    text-decoration: none !important;
    transition: border-color 0.15s, background 0.15s;
}

.quick-link:hover {
    border-color: var(--adm-red);
    background: var(--adm-red-glow);
}

/* ========================
   ADMIN — STAT CARDS
======================== */
.stat-card {
    background: var(--adm-surface);
    border: 1px solid var(--adm-border);
    border-top: 3px solid var(--adm-red);
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.stat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.stat-card-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }

.stat-card-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--adm-text);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.stat-card-label {
    font-size: 0.75rem;
    color: var(--adm-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ========================
   ADMIN — TABLE
======================== */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    background: var(--adm-surface2);
    color: var(--adm-faint);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--adm-border);
    text-align: left;
}

.admin-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--adm-border);
    color: var(--adm-text);
    vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ========================
   ADMIN — BADGES
======================== */
.badge-pub {
    background: rgba(63,185,80,0.12);
    color: var(--adm-green);
    border: 1px solid rgba(63,185,80,0.25);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

.badge-unpub {
    background: rgba(139,148,158,0.1);
    color: var(--adm-muted);
    border: 1px solid rgba(139,148,158,0.2);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

.badge-alert-red {
    background: var(--adm-red-glow);
    color: var(--adm-red2);
    border: 1px solid rgba(192,57,43,0.3);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

/* ========================
   ADMIN — BOTÕES
======================== */
.btn-primary-admin {
    background: var(--adm-red);
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-admin:hover {
    background: var(--adm-red2);
    box-shadow: 0 4px 14px rgba(192,57,43,0.35);
    color: #fff;
}

.btn-secondary-admin {
    background: transparent;
    border: 1px solid var(--adm-border2);
    color: var(--adm-muted);
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.btn-secondary-admin:hover { border-color: var(--adm-muted); color: var(--adm-text); }

.btn-action {
    background: transparent;
    border: 1px solid var(--adm-border2);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    color: var(--adm-muted);
}

.btn-action:hover {
    border-color: var(--adm-red);
    color: var(--adm-red2);
    background: var(--adm-red-glow);
}

.btn-danger { border-color: rgba(192,57,43,0.35); color: var(--adm-red); }
.btn-danger:hover { background: var(--adm-red-glow); border-color: var(--adm-red); }

/* ========================
   ADMIN — FORMULÁRIOS
======================== */
.form-group { margin-bottom: 1.25rem; }

.form-label-admin {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--adm-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-control-admin {
    width: 100%;
    padding: 0.65rem 0.95rem;
    border: 1px solid var(--adm-border2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--adm-text);
    background: var(--adm-surface2);
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.form-control-admin:focus {
    outline: none;
    border-color: var(--adm-red);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-control-admin option { background: var(--adm-surface2); color: var(--adm-text); }
.form-control-admin.textarea { resize: vertical; min-height: 110px; font-family: inherit; line-height: 1.6; }

/* ========================
   ADMIN — RESPONSIVO
======================== */
@media (max-width: 992px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
}

/* ========================
   BLAZOR ERROR UI
======================== */
#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
