/* ============================================
   GP Advogados — Calculadora Rescisória
   Design System: Navy + Gold
   ============================================ */

:root {
    --navy: #1B2A4A;
    --navy-light: #2C3E6B;
    --navy-dark: #0F1A30;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-dark: #B8912E;
    --success-green: #198754;
    --whatsapp-green: #25D366;
    --bg-light: #F5F6FA;
    --shadow-soft: 0 2px 15px rgba(27, 42, 74, 0.08);
    --shadow-card: 0 4px 25px rgba(27, 42, 74, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #1a1f2e;
    color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ---- Navbar ---- */
.gp-navbar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.gp-navbar .navbar-brand {
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* ---- Cards ---- */
.gp-card {
    border: 1px solid #2d3548;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: #232a3b;
    color: #f0f2f5;
}

.gp-card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    border-color: #3d4660;
}

/* ---- Icon Circle ---- */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-success {
    background: linear-gradient(135deg, var(--success-green) 0%, #20c997 100%);
    color: #fff;
}

.icon-circle-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
}

/* ---- Text Colors ---- */
.text-navy { color: #ffffff !important; }
.text-gold { color: var(--gold) !important; }

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-navy:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-navy {
    border: 2px solid #3d4660;
    color: #c9d1d9;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    background: #1a1f2e;
}

.btn-outline-navy:hover,
.btn-check:checked + .btn-outline-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--gold);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ---- Form Controls (Dark) ---- */
.form-control,
.form-select {
    border-radius: var(--radius);
    border: 2px solid #3d4660;
    background: #1a1f2e;
    color: #e6edf3;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    background: #1a1f2e;
    color: #e6edf3;
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 67, 0.25);
}

.form-control::placeholder {
    color: #484f58;
}

.form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-label {
    color: #e6edf3;
}

.form-check-label {
    color: #c9d1d9;
}

small.text-muted,
.text-muted {
    color: #9ca3af !important;
}

p.text-muted {
    color: #b0b8c4 !important;
}

.alert-info {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.25);
    color: #e0f2fe;
}

.alert-warning {
    background: rgba(234, 179, 8, 0.12);
    border-color: rgba(234, 179, 8, 0.3);
    color: #fef3c7;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

/* ---- Stepper ---- */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step.active .step-number {
    background: var(--gold);
    color: var(--navy);
}

.step.completed .step-number {
    background: var(--success-green);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #c9d1d9;
    white-space: nowrap;
}

.step-line {
    background: #3d4660;
}

.step-line {
    width: 60px;
    height: 3px;
    background: #dee2e6;
    margin: 0 8px;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* ---- Table (Dark) ---- */
.table {
    color: #e6edf3;
    --bs-table-bg: transparent;
}

.table-navy {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
    color: #fff;
}

.table-navy th {
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.9rem 1rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.table td {
    padding: 0.8rem 1rem;
    vertical-align: middle;
    border-color: #2d3548;
    font-size: 0.95rem;
}

.table td:first-child {
    color: #e2e8f0;
}

.table td.text-end {
    color: #4ade80 !important;
    font-size: 1.05rem;
    font-weight: 700 !important;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
}

.table tr.text-danger td.text-end {
    color: #f87171 !important;
    text-shadow: 0 0 8px rgba(248, 113, 113, 0.2);
}

.table-hover > tbody > tr:hover {
    background: rgba(212, 168, 67, 0.08);
    --bs-table-hover-bg: transparent;
}

.table tbody tr {
    transition: background 0.2s ease;
}

.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.total-row {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-top: 3px solid #fca5a5;
    animation: totalPulse 1.5s ease-in-out infinite;
}

.total-row td {
    padding: 1.2rem 1rem;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.total-row .text-success {
    color: #fff !important;
    font-size: 1.6rem !important;
}

@keyframes totalPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.8), 0 0 50px rgba(220, 38, 38, 0.3);
        opacity: 0.92;
    }
}

/* ---- Info Pills (Dark) ---- */
.info-pill {
    background: #1a1f2e;
    border: 1px solid #3d4660;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #e6edf3;
}

/* ---- CTA Overlay ---- */
.cta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 48, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cta-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cta-box {
    background: #232a3b;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-overlay.show .cta-box {
    transform: scale(1) translateY(0);
}

.cta-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 6px;
}

.cta-close:hover {
    background: #f1f5f9;
    color: var(--navy);
}

/* ---- Footer (Dark) ---- */
.gp-footer {
    background: #232a3b;
    border-top: 1px solid #2d3548;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .stepper {
        gap: 0;
    }

    .step-line {
        width: 30px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .cta-box {
        padding: 1.5rem;
        margin: 1rem;
    }

    .info-pill {
        margin-bottom: 0.75rem;
    }

    .d-flex.gap-2 {
        flex-wrap: wrap;
    }
}

/* ---- Radio Button Cards ---- */
.btn-check:checked + .btn-outline-navy {
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.5);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content {
    animation: fadeInUp 0.3s ease;
}

/* ---- Divider with text ---- */
.divider-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8b949e;
    font-size: 0.85rem;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #3d4660;
}

/* ---- Outline WhatsApp Button ---- */
.btn-outline-whatsapp {
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-whatsapp:hover {
    background: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
    transform: translateY(-1px);
}

/* ============================================
   Calculator Keypad — Verification Screen
   ============================================ */

.calc-display {
    background: var(--navy-dark);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.calc-display-label {
    color: rgba(212, 168, 67, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.calc-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.calc-digit {
    width: 44px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    font-family: 'Inter', monospace;
}

.calc-digit.filled {
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold);
    animation: digitPop 0.15s ease;
}

.calc-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.4rem;
    font-weight: 300;
    margin: 0 2px;
}

@keyframes digitPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.calc-keypad {
    max-width: 320px;
    margin: 0 auto;
}

.calc-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.calc-key {
    width: 80px;
    height: 60px;
    border: 2px solid #3d4660;
    background: #2d3548;
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 700;
    color: #e6edf3;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.calc-key:hover {
    background: #3d4660;
    border-color: var(--gold);
}

.calc-key:active {
    transform: scale(0.95);
    background: var(--navy);
    color: #fff;
}

.calc-key-delete {
    background: rgba(220, 38, 38, 0.15);
    border-color: #6e2020;
    color: #f87171;
    font-size: 1.2rem;
}

.calc-key-delete:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
}

.calc-key-delete:active {
    background: #dc2626;
    color: #fff;
}

.calc-key-confirm {
    background: #2d3548;
    border-color: #3d4660;
    color: #484f58;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.calc-key-confirm:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.calc-key-confirm.ready {
    background: var(--success-green);
    border-color: var(--success-green);
    color: #fff;
    animation: pulse 1.5s infinite;
}

.calc-key-confirm.ready:hover {
    background: #157347;
    border-color: #157347;
}

.calc-key-confirm.ready:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
}

/* Responsive keypad */
@media (max-width: 400px) {
    .calc-key {
        width: 70px;
        height: 52px;
        font-size: 1.2rem;
    }

    .calc-digit {
        width: 38px;
        height: 48px;
        font-size: 1.3rem;
    }

    .calc-row {
        gap: 6px;
    }
}

/* ============================================
   3D Buttons
   ============================================ */

.btn-3d {
    position: relative;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.15s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-3d:active {
    transform: translateY(3px);
}

.btn-3d-gold {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: #fff;
    box-shadow:
        0 4px 0 #9a7420,
        0 6px 10px rgba(154, 116, 32, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-3d-gold:hover {
    background: linear-gradient(180deg, #f0d478 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: #fff;
    box-shadow:
        0 4px 0 #9a7420,
        0 8px 15px rgba(154, 116, 32, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-3d-gold:active {
    box-shadow:
        0 1px 0 #9a7420,
        0 2px 4px rgba(154, 116, 32, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-3d-whatsapp {
    background: linear-gradient(180deg, #2ee876 0%, var(--whatsapp-green) 50%, #1da851 100%);
    color: #dc2626;
    box-shadow:
        0 4px 0 #178a40,
        0 6px 10px rgba(23, 138, 64, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-3d-whatsapp:hover {
    background: linear-gradient(180deg, #4df08c 0%, #2ee876 50%, var(--whatsapp-green) 100%);
    color: #b91c1c;
    box-shadow:
        0 4px 0 #178a40,
        0 8px 15px rgba(23, 138, 64, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-3d-whatsapp:active {
    box-shadow:
        0 1px 0 #178a40,
        0 2px 4px rgba(23, 138, 64, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-3d-green {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: #fff;
    box-shadow:
        0 4px 0 #0f5132,
        0 6px 10px rgba(15, 81, 50, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-3d-green:hover {
    background: linear-gradient(180deg, #34d36d 0%, #22c55e 50%, #16a34a 100%);
    color: #fff;
}

.btn-3d-green:active {
    box-shadow:
        0 1px 0 #0f5132,
        0 2px 4px rgba(15, 81, 50, 0.3);
}

.btn-3d-navy {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    color: #fff;
    box-shadow:
        0 4px 0 #080e1a,
        0 6px 10px rgba(8, 14, 26, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-3d-navy:hover {
    color: #fff;
    background: linear-gradient(180deg, #3a5080 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.btn-3d-navy:active {
    box-shadow:
        0 1px 0 #080e1a,
        0 2px 4px rgba(8, 14, 26, 0.3);
}

/* ============================================
   Hero Side (cadastro)
   ============================================ */

/* ============================================
   Video Showcase (perspectiva 3D)
   ============================================ */

.video-showcase {
    perspective: 800px;
}

.video-frame {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    padding: 6px;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        8px 8px 30px rgba(0, 0, 0, 0.4),
        -2px -2px 10px rgba(212, 168, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.video-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 10px 40px rgba(212, 168, 67, 0.3),
        0 0 20px rgba(212, 168, 67, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: #0d1117;
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1f2e 0%, #232a3b 100%);
    color: var(--gold);
}

.video-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 8px;
    animation: pulsePlay 2s ease-in-out infinite;
}

.video-placeholder p {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

.video-placeholder small {
    color: #8b949e;
    font-size: 0.8rem;
}

@keyframes pulsePlay {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Camada que bloqueia cliques no vídeo */
.video-block-clicks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
}

/* Botão de replay */
.video-replay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 31, 46, 0.85);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.video-replay i {
    font-size: 2.5rem;
    margin-bottom: 6px;
}

.video-replay span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.video-replay:hover {
    background: rgba(26, 31, 46, 0.7);
}

.video-replay:hover i {
    animation: pulsePlay 0.6s ease;
}

.hero-side {
    padding: 2rem 1rem;
}

.hero-illustration {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.25);
}

.hero-features {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #e6edf3;
}

.hero-side h4 {
    color: #fff !important;
}

.hero-side p {
    color: #b0b8c4 !important;
}

.hero-feature i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ---- CTA Lateral ---- */
.cta-lateral {
    border: 1px solid var(--gold) !important;
    background: linear-gradient(180deg, #232a3b 0%, #1e2535 100%) !important;
}

@media (max-width: 768px) {
    .cta-lateral {
        position: static !important;
        margin-top: 0;
    }
}

/* ============================================
   Proteção Anti-Screenshot
   ============================================ */

/* Impedir seleção de texto */
body:not(.admin-page) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Permitir seleção apenas nos inputs */
input, textarea, select {
    -webkit-user-select: text !important;
    user-select: text !important;
}

/* Overlay de proteção */
#protecao-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1f2e;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

#protecao-overlay.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.protecao-msg {
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.protecao-msg i {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

/* Borrar quando protegido */
body.tela-protegida main {
    filter: blur(20px);
    transition: filter 0.2s ease;
}

/* Bloquear impressão */
@media print {
    body * {
        display: none !important;
    }
    body::after {
        content: 'Impressão não permitida - GP Advogados';
        display: block;
        font-size: 2rem;
        text-align: center;
        padding: 100px;
    }
}

/* Admin table specifics */
.table a {
    text-decoration: none;
    color: #4ade80 !important;
}

.table .badge {
    font-weight: 500;
    font-size: 0.78rem;
}

.table .fw-semibold {
    color: #fff !important;
}

.table td {
    color: #e2e8f0 !important;
}

.table td a {
    color: #4ade80 !important;
}
