:root {
    --primary-color: #007bff;
    /* Accent blue */
    --primary-hover: #0056b3;
    --success-green: #3b82f6;
    --success-header: #1d4ed8;
    --bg-dark: #0f172a;
    --bg-light: #f4f7f6;
    --text-main: #333;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --highlight: #3b82f6;
}

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

.hidden {
    display: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: url('cursor_azul.svg') 6 3, auto;
}

button, a, input[type="submit"], .chat-widget-btn, .btn-primary, #btnQuote {
    cursor: url('cursor_azul.svg') 6 3, pointer !important;
}

/* Landing View Styles */
.landing-view {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #0d1f3c 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Fun background decoration */
.landing-view::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
}

.main-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    z-index: 2;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: var(--highlight);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--highlight);
    background: -webkit-linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CMD Window Effect */
.cmd-window {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    overflow: hidden;
    text-align: left;
    border: 1px solid #333;
    opacity: 1;
}

@keyframes fadeInWindow {
    to { opacity: 1; }
}

.cmd-header {
    background-color: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111;
    position: relative;
}

.cmd-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.cmd-dot.red { background-color: #ff5f56; }
.cmd-dot.yellow { background-color: #ffbd2e; }
.cmd-dot.green { background-color: #27c93f; }

.cmd-title {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    font-family: monospace;
    pointer-events: none;
}

.cmd-body {
    padding: 15px;
    height: 250px;
    overflow-y: hidden;
    background-color: #1e1e1e;
}

.cmd-body pre {
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #3b82f6;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
}

#typewriter {
    color: #3b82f6;
}

/* Typing cursor */
#typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: #3b82f6;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Syntax Highlighting Colors */
.tag-color { color: #f92672; }
.attr-color { color: #a6e22e; }
.val-color { color: #e6db74; }
.comment-color { color: #75715e; }
.prop-color { color: #66d9ef; }
.bracket-color { color: #f8f8f2; }

.price-tag {
    display: inline-flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.price-tag .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--success-green);
    font-weight: 600;
}

.price-tag .amount {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-tag .cents {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(0, 123, 255, 0.39);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.guarantees {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.guarantees span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantees i {
    color: var(--success-green);
}

/* Modal and Checkout Styles */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-light);
    z-index: 100;
    overflow-y: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.checkout-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.checkout-container {
    width: 100%;
    margin: 0;
    background-color: var(--bg-light);
    min-height: 100vh;
    position: relative;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.checkout-header {
    background-color: var(--success-header);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.secure-badge i {
    margin-right: 0.5rem;
}

.btn-close {
    position: absolute;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 1;
}

.checkout-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

@media (max-width: 900px) {
    .checkout-body {
        grid-template-columns: 1fr;
    }
}

.checkout-section {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.section-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    margin-left: 3rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.payment-methods {
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    background-color: rgba(0, 123, 255, 0.05);
    margin-bottom: 1.5rem;
}

.payment-method-badge {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background-color: var(--success-green);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pix-icon {
    color: #3b82f6;
    font-size: 1.5rem;
}

.check-icon {
    margin-left: auto;
    color: var(--primary-color);
}

.order-summary {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
}

.order-summary h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    color: var(--highlight);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-info .price {
    font-weight: 700;
    color: var(--success-green);
}

.mt-4 {
    margin-top: 1.5rem;
}

.btn-finish-payment {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--success-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-finish-payment:hover {
    background-color: #218838;
}

/* Sidebar Styles */
.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    color: var(--success-green);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.trust-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Chat Widget Styles */
.chat-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.chat-widget-btn {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-widget-btn:hover {
    transform: scale(1.1);
}

.chat-widget-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-widget-window.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(20px);
}

.chat-header {
    background-color: #00a884;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-indicator {
    color: #00ff00;
    font-size: 0.8rem;
}

.btn-close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #efeae2;
}

.chat-register {
    padding: 20px;
    background: #fff;
    height: 100%;
}

.chat-register p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.chat-register .form-group {
    margin-bottom: 10px;
}

.chat-register input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.btn-start-chat {
    width: 100%;
    padding: 12px;
    background: #00a884;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* Messages area */
.chat-messages-view {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.messages-container {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
    word-break: break-word;
}

.chat-message .time {
    font-size: 0.7rem;
    color: #888;
    float: right;
    margin-top: 5px;
    margin-left: 10px;
}

.chat-message.system {
    align-self: center;
    background: #fff;
    font-size: 0.85rem;
    color: #555;
    padding: 6px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-message.client {
    align-self: flex-end;
    background: #dcf8c6;
    border-top-right-radius: 0;
}

.chat-message.admin {
    align-self: flex-start;
    background: #fff;
    border-top-left-radius: 0;
}

.chat-input-area {
    display: flex;
    padding: 10px 15px;
    background: #f0f2f5;
    align-items: center;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 24px;
    outline: none;
}

.btn-send-message {
    width: 45px;
    height: 45px;
    background: #00a884;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Pix QR Code View Styles */
.pix-container {
    padding: 2.5rem 2rem;
    max-width: 500px;
    margin: auto;
    width: 100%;
    animation: fadeIn 0.4s ease forwards;
}

.pix-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--border-color);
}

.pix-card-header i {
    font-size: 3rem;
    color: #32bcad;
    margin-bottom: 1rem;
}

.pix-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pix-card-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.qr-code-wrapper {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-code-frame {
    width: 240px;
    height: 240px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#pixQRCode {
    width: 200px;
    height: 200px;
}

.pix-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    animation: fadeIn 0.3s ease forwards;
}

.verified-badge {
    width: 70px;
    height: 70px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: popScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.pix-success-overlay span {
    font-weight: 700;
    color: #25d366;
    font-size: 1.1rem;
}

.pix-timer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

#pixTimer {
    color: #ef4444;
}

.pix-copy-paste {
    text-align: left;
    margin-bottom: 2rem;
}

.pix-copy-paste label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.copy-input-group {
    display: flex;
    gap: 0.5rem;
}

.copy-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.9rem;
    color: var(--text-main);
    outline: none;
}

.btn-copy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy:hover {
    background: var(--primary-hover);
}

.pix-value-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.pix-value-display .value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--success-green);
}

.pix-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pix-info i {
    color: var(--success-green);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popScale {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
/* Order Status & Success Flow */
.order-status-container {
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: auto;
    width: 100%;
    animation: fadeIn 0.4s ease forwards;
}

.status-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.status-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.status-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
}

.status-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.status-body {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.order-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item .value {
    font-weight: 700;
    color: var(--bg-dark);
}

.badge-process {
    color: var(--primary-color) !important;
}

.instruction-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-whatsapp-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.status-footer {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Final Success Overlay */
.final-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.5s ease forwards;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceIn {
    to { transform: scale(1); }
}

.success-icon {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 1.5rem;
}

.success-content h2 {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.redirect-info {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

#finalTimer {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Admin Access & Finalize Styles */
.admin-access-trigger {
    margin-top: 2rem;
    cursor: pointer;
    color: #cbd5e1; /* Um pouco mais visível que antes */
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.admin-access-trigger:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.admin-login-panel {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.3s ease;
}

.admin-login-panel input {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    outline: none;
}

.btn-verify-admin {
    padding: 0.6rem;
    background: var(--bg-dark);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-finalize-now {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-finalize-now:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.admin-logged-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--success-green);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.btn-logout-admin {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout-admin:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}
