.navbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo.user-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

.navbar-session {
    position: absolute;
    top: 18px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-session .session-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}

.navbar-session .session-user {
    pointer-events: none;
    padding: 6px 14px;
    border: none;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: rgba(235, 235, 235, 0.9);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.navbar-session .logout-link {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border: none;
    box-shadow: none;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    color: rgba(255, 90, 90, 0.9);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.navbar-session .logout-link:hover {
    color: rgba(255, 140, 140, 0.95);
    text-shadow: 0 0 15px rgba(255, 140, 140, 0.35);
}

.auth-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    text-align: center;
}

.auth-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.auth-hero.embedded {
    margin-bottom: 12px;
}

.auth-panel {
    max-width: 420px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 48px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-panel-header {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
}

.auth-kicker {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.auth-title {
    font-size: 28px;
    letter-spacing: 6px;
}

.auth-subtitle {
    font-size: 12px;
    opacity: 0.65;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.auth-input,
.auth-input:focus {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 16px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.auth-button {
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-button:hover {
    border-color: #fff;
    color: #fff;
}

.auth-button.subtle {
    padding: 10px 12px;
    letter-spacing: 2px;
    font-size: 10px;
}

.auth-button.ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.6);
}

.auth-button.ghost:hover {
    border-color: rgba(255, 84, 84, 0.8);
    color: rgba(255, 84, 84, 1);
}

.auth-alert {
    border: 1px solid rgba(255, 80, 80, 0.6);
    padding: 12px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 80, 80, 0.05);
    margin-bottom: 24px;
}

.auth-alert.success {
    border-color: rgba(110, 255, 198, 0.5);
    background: rgba(110, 255, 198, 0.05);
}

.auth-hint {
    font-size: 11px;
    text-align: center;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.auth-panel.minimal {
    background: rgba(6, 6, 6, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 36px 34px 40px;
}

.auth-panel.minimal.compact {
    gap: 18px;
}

.auth-panel.minimal .auth-input {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    clip-path: none;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.9);
}

.auth-panel.minimal .auth-button {
    border-color: rgba(255, 255, 255, 0.35);
    clip-path: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.auth-panel.minimal .auth-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.auth-panel.minimal .auth-label {
    letter-spacing: 3px;
}

.auth-panel.minimal .hero-content {
    padding: 0;
    gap: 12px;
}

.admin-wrapper {
    padding-top: 160px;
    padding-bottom: 120px;
}

.admin-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.admin-panel-header {
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.admin-panel-header h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.admin-panel-header .admin-kicker {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.admin-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.admin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.admin-card {
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.admin-table th,
.admin-table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    letter-spacing: 1px;
}

.admin-inline-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-inline-form .auth-button {
    width: 100%;
}

.admin-inline-form.danger .auth-button {
    border-color: rgba(255, 80, 80, 0.7);
    color: rgba(255, 80, 80, 0.9);
}

.admin-input {
    width: 100%;
}

@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .auth-panel {
        padding: 32px 24px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', MingLIU, serif;
    background: #000000;
    color: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    font-smooth: always;
}

/* Linha vermelha no topo */
.top-red-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #f8f6f6;
    z-index: 1001;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Linha vermelha no bottom */

/* Background de neve caindo - Ultra Otimizado para performance */
.snow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('vecteezy_falling-snow-overlay-loop_1803396.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
    /* Otimizações de performance - Aceleração de hardware */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Otimização de renderização de imagem - mais leve */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    /* Força aceleração de hardware GPU */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    /* Isola composição para melhor performance */
    isolation: isolate;
    /* Previne repaint desnecessário - máximo isolamento */
    contain: strict;
    /* Força composição em camada separada */
    -webkit-perspective: 1000;
    perspective: 1000;
    /* Reduz qualidade de renderização para melhor performance */
    -webkit-font-smoothing: subpixel-antialiased;
    /* Pausa animação quando tab inativa */
    animation-play-state: running;
}

/* Pausa animação quando aba está inativa */
body.tab-inactive .snow-background {
    animation-play-state: paused;
    /* Reduz opacidade quando inativo para economizar recursos */
    opacity: 0.2;
}

/* Reduz qualidade em dispositivos móveis para melhor performance */
@media (max-width: 768px) {
    .snow-background {
        opacity: 0.25;
        /* Reduz ainda mais em mobile */
        background-size: 120% 120%;
        /* Usa menos recursos de GPU em mobile */
        will-change: auto;
    }
}

/* Pausa animação para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .snow-background {
        animation-play-state: paused !important;
        opacity: 0.15;
    }
}

/* Textura granulada de fundo - Minimalista (mantida sobre a neve) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Menu de navegação - Minimalista e Simétrico */
.navbar {
    position: fixed;
    top: 2px;
    width: 100%;
    background: #000000;
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
}

.navbar-menu {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    width: 100%;
}

.navbar-separator {
    display: flex;
    align-items: center;
    margin: 0px;
    user-select: none;
    opacity: 1.0;
    height: 100%;
}

.navbar-separator img {
    height: 1.8em;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0.8);
    transition: opacity 0.3s ease;
    max-height: 64px;
    min-height: 20px;
}

.navbar-separator:hover img {
    opacity: 0.8;
}

.navbar-logo-center {
    margin: 0 20px;
}

.navbar-logo {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-stretch: extra-expanded;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    white-space: nowrap;
    padding: 8px 0;
}

.navbar-logo:hover {
    color: #ffffff;
}

.navbar-logo.active {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 0, 0, 0.4);
}

.navbar-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-stretch: extra-expanded;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-gif {
    height: 20px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.navbar-menu a:hover {
    color: #ffffff;
}

.navbar-menu a.active {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 0, 0, 0.4);
}

/* Container principal - Minimalista e Simétrico */
.main-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px 100px;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Container da imagem - Minimalista */
.image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 80px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: #0a0a0a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.image-container:hover {
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.8);
    transition: filter 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
}

.hero-image:hover {
    filter: grayscale(90%) contrast(1.3) brightness(0.85);
}

.hero-image.loaded + .mountain-placeholder {
    display: none;
}

/* Placeholder visual - Montanha com alpinista */
.mountain-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #e8e8e8 0%, #d0d0d0 20%, #a0a0a0 40%, #606060 60%, #303030 80%, #0a0a0a 100%);
    overflow: hidden;
    z-index: 1;
}

.mountain-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
}

.mountain-main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.mountain-snow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.climber {
    position: absolute;
    bottom: 25%;
    left: 45%;
    width: 3%;
    height: 8%;
    background: #000000;
    clip-path: polygon(50% 0%, 30% 40%, 20% 100%, 80% 100%, 70% 40%);
    transform: translateX(-50%);
}

.climber::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    background: #000000;
    border-radius: 2px;
}

.footprints {
    position: absolute;
    bottom: 20%;
    left: 42%;
    width: 8%;
    height: 3%;
}

.footprint {
    position: absolute;
    width: 15px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.footprint:nth-child(1) {
    left: 0;
    bottom: 0;
}

.footprint:nth-child(2) {
    left: 20px;
    bottom: 5px;
}

.footprint:nth-child(3) {
    left: 40px;
    bottom: 0;
}

.mountain-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.05) 10px,
            rgba(0, 0, 0, 0.05) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.05) 10px,
            rgba(0, 0, 0, 0.05) 11px
        );
    pointer-events: none;
    z-index: 1;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 3;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease;
    position: relative;
}

.site-logo {
    max-width: 180px;
    width: auto;
    height: auto;
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.15) brightness(0.9) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    position: relative;
    z-index: 1;
}

.site-logo:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1) contrast(1.15);
    transform: scale(1.03);
}

/* Efeito de brilho sutil ao redor do logo */
.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 0, 0, 0.02) 40%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-logo:hover::before {
    opacity: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.hero-angel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-text {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    animation: fadeInUp 0.8s ease;
    font-family: 'MingLIU', 'Times New Roman', serif;
    font-stretch: extra-expanded;
    line-height: 1.4;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: block;
}


.subtitle {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    animation: fadeInUp 1s ease;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-stretch: extra-expanded;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

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

@keyframes eliteGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1),
                    0 0 40px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.15),
                    0 0 60px rgba(255, 255, 255, 0.08);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('texture.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    /* Otimizações de performance */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container para páginas de conteúdo */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 50px;
    position: relative;
    z-index: 1;
}

.content {
    background: rgba(10, 10, 10, 0.6);
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 60px;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

h1 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    font-family: 'MingLIU', 'Times New Roman', serif;
    font-stretch: extra-expanded;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
}

.subtitle-page {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
}

/* Form sections - Removido, agora integrado no form-content */
.form-actions {
    margin-top: 48px;
    padding-top: 32px;
    position: relative;
}

.form-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.form-hint {
    margin-top: 12px;
    padding-left: 4px;
}

.form-hint span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 1px;
    font-style: italic;
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

/* Efeito de brilho etéreo ao redor do campo quando focado */
.form-group::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(255, 0, 0, 0.02) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.form-group:focus-within::before {
    opacity: 1;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 2px;
}

.form-group:focus-within label {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

/* Indicador etéreo ao lado do label quando focado */
.form-group:focus-within label::before {
    content: '◆';
    position: absolute;
    left: -14px;
    color: rgba(255, 0, 0, 0.5);
    font-size: 7px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        text-shadow: 0 0 4px rgba(255, 0, 0, 0.3);
    }
    50% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 15px;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Times New Roman', MingLIU, serif;
    font-weight: 400;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    position: relative;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 3px 3px, rgba(255, 255, 255, 0.012) 1px, transparent 0);
    background-size: 32px 32px;
    background-position: 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Linha animada etérea no foco - obra de arte */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.3) 8%,
        rgba(255, 255, 255, 0.5) 25%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 0, 0, 0.3) 92%,
        transparent 100%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.6),
                0 0 28px rgba(255, 0, 0, 0.4),
                0 0 42px rgba(255, 255, 255, 0.2);
    z-index: 2;
    pointer-events: none;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: transparent;
    background-image: 
        radial-gradient(circle at 3px 3px, rgba(255, 255, 255, 0.025) 1px, transparent 0);
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

/* Placeholder etéreo e sofisticado */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.2px;
    opacity: 0.6;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.3;
    transform: translateX(8px);
    letter-spacing: 1.8px;
}

/* Efeito quando campo tem valor */
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    line-height: 1.6;
}

.form-group textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Botões - Design Elitizado */
.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-stretch: extra-expanded;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
    opacity: 1;
}

.btn-primary {
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.btn-primary:hover:not(:disabled) {
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-warning {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-warning:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-success {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-success:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.alert {
    padding: 15px 20px;
    border-radius: 0;
    margin-bottom: 25px;
    display: none;
    border: 1px solid;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.alert-error {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.alert-info {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.result-section {
    background: rgba(10, 10, 10, 0.8);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    display: none;
}

.result-section h2 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.result-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.result-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-item {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.result-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.status-valid {
    color: #4ade80;
}

.status-invalid {
    color: #f87171;
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 1px;
}

.loading.active {
    display: block;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.batch-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px 32px;
    border: none;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 28px rgba(0, 0, 0, 0.3),
        0 5px 14px rgba(0, 0, 0, 0.2);
}

.batch-card.card-valid {
    background: 
        radial-gradient(circle at left, rgba(255, 0, 0, 0.06) 0%, transparent 40%),
        rgba(0, 0, 0, 0.4);
    padding-left: 40px;
    position: relative;
}

.batch-card.card-valid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.6) 50%,
        transparent 100%);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.batch-card.card-invalid {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.7;
}

.batch-card:hover {
    box-shadow: 
        0 14px 36px rgba(0, 0, 0, 0.4),
        0 7px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.batch-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.batch-card-number {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.batch-card.card-valid .batch-card-number {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .navbar-menu a {
        font-size: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 100px 15px 30px;
    }

    .content {
        padding: 25px;
    }

    .hero-text {
        font-size: 32px;
        letter-spacing: 4px;
    }


    .image-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 10px;
    }
}

.spinner {
    display: inline-block;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CHECKER - DESIGN ELITIZADO E ETÉREO
   ============================================ */

/* Container principal do checker */
.checker-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

/* Header do checker - Design Minimalista */
.checker-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.checker-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.checker-header-gif {
    height: 180px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.checker-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    font-stretch: extra-expanded;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
}

/* Grid horizontal - Layout principal */
.checker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dividers minimalistas */
.divider {
    height: 1px;
    width: 60%;
    margin: 32px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    border: none;
}

/* Coluna do formulário */
.checker-form-column {
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    overflow: visible;
}

.checker-form-column::-webkit-scrollbar {
    width: 4px;
}

.checker-form-column::-webkit-scrollbar-track {
    background: transparent;
}

.checker-form-column::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    border-radius: 2px;
}

.checker-form-column::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.25) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.25) 80%,
        transparent 100%);
}

/* Painel do formulário - Bloco com fundo */
.form-panel {
    background: rgba(10, 10, 10, 0.85);
    padding: 48px 56px;
    border-radius: 20px;
    border: none;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.form-panel:hover::after {
    opacity: 0;
}

.form-panel:hover {
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transform: none;
}

/* Tabs - Design Minimalista */
.tabs-container {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.tab-btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.6) 50%,
        transparent 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.tab-btn.active {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tab-btn.active::after {
    width: 80%;
}

.tab-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.75);
}

/* Conteúdo do formulário */
.form-content {
    padding: 0;
}

.form-title {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Coluna de resultados */
.checker-result-column {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
}

/* Painel de resultados - Bloco com fundo */
.result-panel {
    background: rgba(10, 10, 10, 0.85);
    padding: 48px 56px;
    min-height: 500px;
    border-radius: 20px;
    border: none;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.result-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.result-panel:hover::after {
    opacity: 0;
}

.result-panel:hover {
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transform: none;
}

/* Result section - sempre visível */
.result-section {
    display: block !important;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.result-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.result-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.result-status-indicator.valid {
    background: rgba(255, 0, 0, 0.9);
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.7),
        0 0 30px rgba(255, 0, 0, 0.5),
        0 0 45px rgba(255, 0, 0, 0.3);
    animation: indicatorNeon 2s ease-in-out infinite;
}

@keyframes indicatorNeon {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(255, 0, 0, 0.7),
            0 0 30px rgba(255, 0, 0, 0.5),
            0 0 45px rgba(255, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(255, 0, 0, 0.9),
            0 0 40px rgba(255, 0, 0, 0.7),
            0 0 60px rgba(255, 0, 0, 0.5);
        transform: scale(1.1);
    }
}

.result-status-indicator.invalid {
    background: #f87171;
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.6),
                0 0 40px rgba(248, 113, 113, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.result-content {
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    padding-right: 8px;
    padding-top: 8px;
    display: none;
    scroll-behavior: smooth;
}

.result-content::-webkit-scrollbar {
    width: 4px;
}

.result-content::-webkit-scrollbar-track {
    background: transparent;
}

.result-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    border-radius: 2px;
}

.result-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.25) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.25) 80%,
        transparent 100%);
}

/* Placeholder quando não há resultados */
.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    transition: opacity 0.4s ease;
    padding: 60px 0;
}

.result-placeholder.hidden {
    display: none;
}

.placeholder-icon {
    font-size: 72px;
    margin-bottom: 32px;
    opacity: 0.4;
    animation: float 4s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-12px) scale(1.05);
        opacity: 0.5;
    }
}

.result-placeholder p {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Result cards - Design Elitizado */
.result-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 32px 40px;
    border: none;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Efeito especial para cartões LIVE */
.result-card.card-valid {
    background: 
        radial-gradient(circle at left, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
        rgba(0, 0, 0, 0.4);
    padding-left: 48px;
    position: relative;
}

.result-card.card-valid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.7) 20%,
        rgba(255, 0, 0, 0.9) 50%,
        rgba(255, 0, 0, 0.7) 80%,
        transparent 100%);
    border-radius: 2px;
    box-shadow: 
        0 0 12px rgba(255, 0, 0, 0.6),
        0 0 24px rgba(255, 0, 0, 0.4);
    animation: neonPulse 2.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 12px rgba(255, 0, 0, 0.6),
            0 0 24px rgba(255, 0, 0, 0.4);
    }
    50% {
        opacity: 0.85;
        box-shadow: 
            0 0 18px rgba(255, 0, 0, 0.8),
            0 0 36px rgba(255, 0, 0, 0.6),
            0 0 54px rgba(255, 0, 0, 0.4);
    }
}

.result-card.card-valid:hover {
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Efeito para cartões DIE */
.result-card.card-invalid {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.7;
}

.result-card.card-invalid:hover {
    opacity: 0.85;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-card h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    font-family: 'MingLIU', 'Times New Roman', serif;
}

/* Efeito neon no título para LIVE */
.result-card.card-valid h3 {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 12px rgba(255, 0, 0, 0.5),
        0 0 24px rgba(255, 0, 0, 0.3),
        0 0 36px rgba(255, 0, 0, 0.2),
        0 0 18px rgba(255, 255, 255, 0.3);
    animation: titleNeon 2.5s ease-in-out infinite;
}

@keyframes titleNeon {
    0%, 100% {
        text-shadow: 
            0 0 12px rgba(255, 0, 0, 0.5),
            0 0 24px rgba(255, 0, 0, 0.3),
            0 0 36px rgba(255, 0, 0, 0.2),
            0 0 18px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 18px rgba(255, 0, 0, 0.7),
            0 0 36px rgba(255, 0, 0, 0.5),
            0 0 54px rgba(255, 0, 0, 0.3),
            0 0 28px rgba(255, 255, 255, 0.4);
    }
}

.result-card.card-invalid h3 {
    color: rgba(255, 255, 255, 0.45);
}

.result-item {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 2.2;
    transition: all 0.3s ease;
    padding-left: 28px;
    position: relative;
}

.result-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: rgba(255, 0, 0, 0.3);
    font-size: 9px;
    transition: all 0.3s ease;
    top: 0.5em;
}

.result-card.card-valid .result-item::before {
    color: rgba(255, 0, 0, 0.6);
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
    }
}

.result-item:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 34px;
}

.result-item:hover::before {
    color: rgba(255, 0, 0, 0.8);
    transform: translateX(4px);
}

.result-item strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-right: 12px;
    letter-spacing: 0.8px;
}

.result-card.card-valid .result-item {
    color: rgba(255, 255, 255, 0.9);
}

.result-card.card-invalid .result-item {
    color: rgba(255, 255, 255, 0.5);
}

.result-card.card-invalid .result-item::before {
    color: rgba(255, 255, 255, 0.15);
}

/* Status colors com vermelho neon */
.status-valid {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.3);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
    animation: statusNeon 2s ease-in-out infinite;
}

@keyframes statusNeon {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 0, 0, 0.6),
            0 0 20px rgba(255, 0, 0, 0.4),
            0 0 30px rgba(255, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 0, 0, 0.8),
            0 0 30px rgba(255, 0, 0, 0.6),
            0 0 45px rgba(255, 0, 0, 0.4);
    }
}

.status-invalid {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Loading melhorado */
.loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    gap: 24px;
}

.loading.active {
    display: flex;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Botões melhorados */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loader {
    display: block;
    position: absolute;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Efeito de aura sutil ao redor do campo quando preenchido */
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.form-group input:not(:placeholder-shown)::before,
.form-group textarea:not(:placeholder-shown)::before {
    opacity: 0.5;
}

/* Animação suave de entrada de texto */
.form-group input,
.form-group textarea {
    animation: fadeInField 0.5s ease-out;
}

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

/* Tabs melhoradas */
.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tab {
    position: relative;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.tab.active::after {
    width: 100%;
}

.tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

/* Alertas melhorados */
.alert {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 2000;
    min-width: 320px;
    max-width: 600px;
    padding: 20px 30px;
    border-radius: 0;
    border: 2px solid;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    text-transform: uppercase;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animações de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsivo - Layout horizontal */
@media (max-width: 1200px) {
    .checker-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checker-form-column,
    .checker-result-column {
        position: static;
        max-height: none;
    }
    
    .result-content {
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .checker-container {
        padding: 120px 30px 60px;
    }
    
    .checker-header {
        margin-bottom: 60px;
    }
    
    .checker-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .checker-header-gif {
        height: 140px;
    }
    
    .form-panel,
    .result-panel {
        padding: 36px 32px;
        border-radius: 16px;
    }
    
    .checker-grid {
        gap: 32px;
    }
    
    .divider {
        width: 70%;
        margin: 24px auto;
    }
    
    .form-title,
    .result-title {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .result-card {
        padding: 24px 28px;
    }
    
    .batch-card {
        padding: 20px 24px;
    }
}

/* Performance optimizations */
.checker-grid,
.form-wrapper,
.result-wrapper {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.result-card {
    will-change: transform, opacity;
}

/* ============================================
   GLOBAL PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU Acceleration para elementos animados */
.hero-image,
.pedido-card,
.result-card,
.stat-card,
.form-wrapper,
.result-wrapper {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
}

/* Containment para isolar reflows */
.navbar,
.form-section,
.pedido-card,
.result-card {
    contain: layout style paint;
}

/* Otimização de scroll */
* {
    scroll-behavior: smooth;
}

/* Pause animações quando tab inativa */
.tab-inactive * {
    animation-play-state: paused !important;
    transition: none !important;
}

/* Otimização adicional para elementos pesados quando tab inativa */
.tab-inactive .snow-background,
.tab-inactive img[src*=".gif"],
.tab-inactive .checker-header-gif {
    animation-play-state: paused !important;
    opacity: 0.1 !important;
    will-change: auto !important;
}

/* Otimização de imagens */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-image.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Reduce motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Otimização de renderização para listas grandes */
.pedidos-grid,
.result-content {
    contain: layout style;
}

.pedido-card {
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

/* Performance hints para navegadores */
body {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

/* Barra Inferior - Estilo Dark/Retro */
/* ============================================
   FOOTER ÁUREO E ELITIZADO
   ============================================ */

.elite-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    pointer-events: none;
}

.footer-divider {
    height: 1px;
    width: 85%;
    margin: 0 auto 20px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.footer-text:hover {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3);
}

.footer-ornament {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    position: relative;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-ornament::before,
.footer-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 6px rgba(255, 255, 255, 0.6),
        0 0 12px rgba(255, 255, 255, 0.3);
}

.footer-ornament.left-ornament::before {
    left: -2px;
}

.footer-ornament.left-ornament::after {
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-ornament.right-ornament::before {
    right: 50%;
    transform: translate(50%, -50%);
}

.footer-ornament.right-ornament::after {
    right: -2px;
}

/* Responsive */
@media (max-width: 768px) {
    .elite-footer {
        padding: 20px 0;
    }
    
    .footer-divider {
        width: 90%;
        margin-bottom: 16px;
    }
    
    .footer-content {
        gap: 24px;
        padding: 0 20px;
    }
    
    .footer-text {
        font-size: 9px;
        letter-spacing: 3px;
    }
    
    .footer-ornament {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 16px;
    }
    
    .footer-text {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .footer-ornament {
        width: 30px;
    }
}

.white-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

/* Music Player - Minimalist and Draggable */
/* ============================================
   MUSIC PLAYER - DESIGN PREMIUM & GLASSMORPHISM
   ============================================ */

.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    border-radius: 20px;
    padding: 20px 24px;
    z-index: 999;
    cursor: grab;
    user-select: none;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3);
    contain: layout style paint;
    pointer-events: auto;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0); /* Aceleração de hardware */
}

.music-player:active {
    cursor: grabbing;
}

/* Durante o drag, desabilita transições e otimiza */
.music-player.dragging {
    transition: none !important;
    will-change: transform;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3);
}

.music-player:hover:not(.dragging) {
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) translateZ(0);
}

.music-player.playing:not(.dragging) {
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.close-player-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: Arial, sans-serif;
    padding: 0;
}

.close-player-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.close-player-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.close-player-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.player-header {
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    margin: -20px -24px 16px -24px;
    cursor: grab;
    transition: background 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.music-player:hover .player-header {
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

/* Now Playing Label */
.now-playing-label {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    margin-bottom: 6px;
    text-align: center;
    user-select: none;
    cursor: grab;
}

/* Player Title - Destaque Principal */
.player-title {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-transform: lowercase;
    margin-bottom: 20px;
    text-align: center;
    user-select: none;
    cursor: grab;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.music-player:hover .player-title {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.play-pause-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.play-pause-btn:hover::before {
    opacity: 1;
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.play-pause-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.volume-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    min-width: 28px;
    flex-shrink: 0;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.15);
}

.volume-slider:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-webkit-slider-thumb:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.volume-slider::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.volume-value {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    min-width: 28px;
    text-align: right;
    flex-shrink: 0;
}

.waveform {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 12px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    contain: layout style paint;
    margin-top: 4px;
}

/* Responsive adjustments for music player */
@media (max-width: 768px) {
    .music-player {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 16px 20px;
        cursor: default;
    }
    
    .music-player:hover {
        transform: none;
    }
    
    .player-title {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .waveform {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .music-player {
        padding: 14px 16px;
    }
    
    .player-title {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .player-controls {
        gap: 12px;
    }
    
    .volume-control {
        gap: 10px;
    }
    
    .play-pause-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SCRAPING PAGE STYLES
   ============================================ */

/* ============================================
   SCRAPING PAGE - DESIGN ELITIZADO E ETÉREO
   ============================================ */

.scraping-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

/* Header do scraping */
.scraping-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scraping-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scraping-header-gif {
    height: 180px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    margin: 0 auto;
}

/* Tabs Premium - Design Sofisticado */
.tabs-container-scraping {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
    background: rgba(10, 10, 10, 0.6);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

.tab-btn-scraping {
    flex: 1;
    padding: 18px 32px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    border-radius: 12px;
}

.tab-btn-scraping::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-btn-scraping:hover::before {
    opacity: 1;
}

.tab-btn-scraping::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.6) 50%,
        transparent 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.tab-btn-scraping.active {
    color: rgba(255, 255, 255, 0.95);
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tab-btn-scraping.active::after {
    width: 70%;
}

.tab-btn-scraping:hover:not(.active) {
    color: rgba(255, 255, 255, 0.75);
}

.tool-content {
    display: none;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-content.active {
    display: block;
}

/* Tool Panel - Bloco com Fundo */
.tool-panel {
    background: rgba(10, 10, 10, 0.85);
    padding: 56px 64px;
    border-radius: 20px;
    border: none;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.tool-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.tool-panel:hover::after {
    opacity: 0;
}

.tool-panel:hover {
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transform: none;
}

/* Tool Form Section */
.tool-form-section {
    padding: 0;
}

.tool-title {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.tool-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.8;
    padding: 0;
    font-weight: 300;
    background: transparent;
    border: none;
    letter-spacing: 0.5px;
}

.tool-actions {
    margin-top: 48px;
    padding-top: 32px;
    position: relative;
}

.tool-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* File input styling - Design Elitizado */
.file-input-wrapper {
    margin-top: 12px;
}

input[type="file"] {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 13px;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

input[type="file"]:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

input[type="file"]::file-selector-button {
    padding: 10px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-right: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

input[type="file"]::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

input[type="file"]::file-selector-button:active {
    transform: translateY(0);
}

/* Date input styling */
input[type="date"] {
    color-scheme: dark;
}

/* Result section for scraping - Design Elitizado */
.scraping-container .result-section {
    margin-top: 0;
    background: transparent;
    padding: 0;
    border: none;
}

.scraping-container .result-header {
    margin-bottom: 32px;
    padding-bottom: 0;
    border: none;
}

.scraping-container .result-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.scraping-container .result-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
    padding-top: 8px;
    display: block !important;
    scroll-behavior: smooth;
}

.scraping-container .result-content::-webkit-scrollbar {
    width: 4px;
}

.scraping-container .result-content::-webkit-scrollbar-track {
    background: transparent;
}

.scraping-container .result-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    border-radius: 2px;
}

.scraping-container .result-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.25) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.25) 80%,
        transparent 100%);
}

/* Result cards dentro do scraping - Usar estilos consistentes */
.scraping-container .result-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 32px 40px;
    border: none;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

.scraping-container .result-card h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'MingLIU', 'Times New Roman', serif;
}

.scraping-container .result-card .result-item {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 2.2;
    padding-left: 28px;
    position: relative;
}

.scraping-container .result-card .result-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: rgba(255, 0, 0, 0.3);
    font-size: 9px;
    top: 0.5em;
}

.scraping-container .result-card .result-item strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-right: 12px;
    letter-spacing: 0.8px;
}

.scraping-container pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.6;
    overflow-x: auto;
}

/* Estilos para elementos gerados dinamicamente no scraping */
.scraping-container .result-card code {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.scraping-container .result-card a.btn {
    text-decoration: none;
    display: inline-block;
}

/* Preview boxes - Estilização para elementos com background inline */
.scraping-container .result-card > div[style*="background"] {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    padding: 20px !important;
    margin-top: 24px !important;
}

.scraping-container .result-card > div[style*="background"] strong {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Success boxes */
.scraping-container .result-card > div[style*="rgba(74, 222, 128"] {
    background: rgba(74, 222, 128, 0.08) !important;
    border: none !important;
    box-shadow: 
        0 0 20px rgba(74, 222, 128, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Info boxes */
.scraping-container .result-card > div[style*="rgba(0,0,0,0.3)"] {
    background: rgba(0, 0, 0, 0.4) !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Preview code blocks */
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

/* Responsive for scraping page */
@media (max-width: 768px) {
    .scraping-container {
        padding: 120px 30px 60px;
    }
    
    .scraping-header {
        margin-bottom: 40px;
    }
    
    .scraping-header-gif {
        height: 140px;
    }
    
    .tabs-container-scraping {
        padding: 6px;
        border-radius: 12px;
    }
    
    .tab-btn-scraping {
        padding: 14px 20px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .tool-panel {
        padding: 36px 32px;
        border-radius: 16px;
    }
    
    .tool-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .tool-description {
        font-size: 13px;
    }
    
    .divider {
        width: 70%;
        margin: 24px auto;
    }
}

/* ============================================
   PEDIDOS PAGE STYLES
   ============================================ */

/* ============================================
   PEDIDOS PAGE - DESIGN ELITIZADO E ETÉREO
   ============================================ */

.pedidos-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

/* Header do pedidos */
.pedidos-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pedidos-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.pedidos-header-gif {
    height: 180px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    margin: 0 auto;
}


.pedidos-header .subtitle-page {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-weight: 400;
    text-transform: uppercase;
}

/* Upload Panel - Bloco com Fundo */
.upload-panel {
    background: rgba(10, 10, 10, 0.85);
    padding: 48px 56px;
    border-radius: 20px;
    border: none;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.upload-panel:hover::after {
    opacity: 0;
}

.upload-panel:hover {
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transform: none;
}

.upload-content {
    padding: 0;
}

.upload-title {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Estatísticas - Painel Premium */
.stats-panel {
    margin-bottom: 40px;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.stat-card {
    background: rgba(10, 10, 10, 0.85);
    border: none;
    padding: 40px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 16px;
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 0;
}

.stat-card:hover {
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.2);
    transform: none;
}


.stat-card .stat-value {
    font-size: 3em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Controles */
/* Controls Panel - Bloco com Fundo */
.controls-panel {
    margin-bottom: 40px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.controls-content {
    background: rgba(10, 10, 10, 0.85);
    padding: 48px 56px;
    border-radius: 20px;
    border: none;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.controls-content::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.controls-content:hover::after {
    opacity: 0;
}

.controls-content:hover {
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transform: none;
}

.controls-title {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-group label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 6px;
}

.control-group input,
.control-group select {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
}

.control-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.control-group input:focus,
.control-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Grid de Pedidos */
/* Results Panel - Layout Duas Colunas */
.results-panel {
    animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 40px;
    align-items: flex-start;
}

.panel-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

/* Card de Pedido */
.pedido-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease;
    overflow: hidden;
    position: relative;
}

.pedido-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Header do Pedido */
.pedido-header {
    padding: 0;
    margin-bottom: 24px;
    border: none;
    background: transparent;
    text-align: center;
}

.pedido-header h2 {
    color: #ffffff;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Nome do cliente clicável */
.cliente-nome-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 4px;
    user-select: none;
}

.cliente-nome-clickable:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.cliente-nome-clickable.expanded .expand-icon {
    transform: rotate(180deg);
}

.expand-icon {
    font-size: 0.6em;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.pedido-card.expanded .cliente-nome-clickable .expand-icon {
    transform: rotate(180deg);
}

.badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

/* Informações do Pedido */
.pedido-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.pedido-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.info-label-row strong {
    flex: 1;
}

.pedido-info-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pedido-info-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    word-break: break-word;
}

/* Botão de Copiar */
.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 6px 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    border-radius: 3px;
    line-height: 1;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Botão de copiar pequeno (para produtos) */
.copy-btn-small {
    padding: 4px 8px;
    font-size: 10px;
    margin-left: 8px;
}

/* Totais do Pedido */
.pedido-totais {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pedido-totais .total-valor {
    font-size: 2em;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
}

.pedido-totais .total-itens {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Seção de Produtos */
.produtos-section {
    padding: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.pedido-card.expanded .produtos-section {
    display: block !important;
}

.produtos-section h3 {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-transform: uppercase;
}

.produtos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.produto-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.produto-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Layout do produto */
.produto-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
}

.produto-nome {
    font-weight: 400;
    color: #ffffff;
    font-size: 1em;
    letter-spacing: 0.5px;
    word-break: break-word;
    flex: 1;
    text-align: center;
}

.produto-detalhes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.produto-detalhe-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quantidade-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 18px;
    font-weight: 400;
    font-size: 1.2em;
    letter-spacing: 1px;
    min-width: 60px;
}

.quantidade-badge.badge-success {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.quantidade-badge.badge-warning {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.produto-preco-total {
    color: #4ade80;
    font-weight: 400;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.produto-preco-unit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

/* No Results */
.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: transparent;
    border: none;
    backdrop-filter: blur(20px);
}

.placeholder-content {
    padding: 60px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    letter-spacing: 1px;
}

.no-results-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.no-results p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 1200px) {
    .pedidos-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pedidos-container {
        padding: 120px 30px 60px;
    }
    
    .pedidos-header {
        margin-bottom: 40px;
    }
    
    .pedidos-header-gif {
        height: 140px;
    }
    
    .upload-panel,
    .controls-content,
    .pedidos-list-panel,
    .pedido-detalhe-panel {
        padding: 36px 32px;
        border-radius: 16px;
    }
    
    .upload-title,
    .controls-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .controls-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .results-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pedidos-list-panel,
    .pedido-detalhe-panel {
        max-height: none;
    }
}

/* ========= Layout da área de resultados (Pedidos) - Duas Colunas ========= */

/* Grid com lista à esquerda e detalhes à direita */
.results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
    gap: 20px;
    max-height: 70vh;
    align-items: flex-start;
}

/* Coluna da lista - Painel Premium */
.pedidos-list-panel {
    background: rgba(10, 10, 10, 0.85);
    border: none;
    border-radius: 20px;
    padding: 40px 48px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.pedidos-list-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.pedidos-list-panel:hover::after {
    opacity: 0;
}

.pedidos-list-panel::-webkit-scrollbar {
    width: 4px;
}

.pedidos-list-panel::-webkit-scrollbar-track {
    background: transparent;
}

.pedidos-list-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    border-radius: 2px;
}

/* Coluna dos detalhes - Painel Premium */
.pedido-detalhe-panel {
    background: rgba(10, 10, 10, 0.85);
    border: none;
    border-radius: 20px;
    padding: 40px 48px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: 
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 10, 10, 0.85);
}

.pedido-detalhe-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.pedido-detalhe-panel:hover::after {
    opacity: 0;
}

.pedido-detalhe-panel::-webkit-scrollbar {
    width: 4px;
}

.pedido-detalhe-panel::-webkit-scrollbar-track {
    background: transparent;
}

.pedido-detalhe-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    border-radius: 2px;
}

/* Lista de cards de pedidos (lado esquerdo) */
.pedidos-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card compacto do pedido na lista - Design Elitizado */
.pedidos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedidos-list .pedido-card {
    padding: 24px 28px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.pedidos-list .pedido-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.5) 50%,
        transparent 100%);
    border-radius: 14px 0 0 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pedidos-list .pedido-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pedidos-list .pedido-card:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.pedidos-list .pedido-card:hover::before {
    opacity: 0.6;
}

.pedidos-list .pedido-card:hover::after {
    opacity: 1;
}

.pedidos-list .pedido-card.ativo {
    background: 
        radial-gradient(circle at left, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
        rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.2);
}

.pedidos-list .pedido-card.ativo::before {
    opacity: 1;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.7) 20%,
        rgba(255, 0, 0, 0.9) 50%,
        rgba(255, 0, 0, 0.7) 80%,
        transparent 100%);
    box-shadow: 
        0 0 12px rgba(255, 0, 0, 0.6),
        0 0 24px rgba(255, 0, 0, 0.4);
}

.pedidos-list .pedido-card.ativo::after {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Linhas internas do card */
.pedido-header {
    margin-bottom: 10px;
}

.pedidos-list .pedido-header {
    margin-bottom: 16px;
}

.pedidos-list .pedido-header h2 {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-family: 'MingLIU', 'Times New Roman', serif;
    letter-spacing: 2px;
}

.pedido-resumo-linha {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.6;
}

.pedido-resumo-linha span {
    color: rgba(255, 255, 255, 0.6);
}

/* Painel de detalhes (lado direito) */
.pedido-detalhe {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedido-detalhe.vazio {
    opacity: 0.7;
    font-size: 16px;
    font-weight: 500;
}

.pedido-detalhe-header {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border: none;
    position: relative;
}

.pedido-detalhe-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
}

.pedido-detalhe-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-transform: uppercase;
}

.pedido-detalhe-totais {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
}

.pedido-detalhe-totais .total-valor {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    letter-spacing: 1px;
}

/* Blocos de informações do cliente */
.pedido-detalhe-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.pedido-detalhe-info .pedido-info-item {
    font-size: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.pedido-detalhe-info .pedido-info-item:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.info-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 13px;
}

.info-label-row strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 1px;
}

.pedido-detalhe-info .pedido-info-item span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    display: block;
    line-height: 1.5;
}

/* Títulos de resultados */
.results-title {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 4px;
    border: none;
    padding: 0;
    font-family: 'MingLIU', 'Times New Roman', serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Seção de produtos dentro do painel de detalhes */
.pedido-detalhe .produtos-section {
    margin-top: 32px;
    padding-top: 32px;
    border: none;
    position: relative;
}

.pedido-detalhe .produtos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
}

.pedido-detalhe .produtos-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-family: 'MingLIU', 'Times New Roman', serif;
}

.pedido-detalhe .produtos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pedido-detalhe .produto-item {
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.pedido-detalhe .produto-item:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.produto-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.produto-nome {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.produto-detalhes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.produto-preco-total {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    margin: 6px 0;
}

.produto-preco-unit {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.produto-detalhe-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantidade-badge {
    padding: 6px 12px;
    border-radius: 0;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quantidade-badge.badge-success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.quantidade-badge.badge-warning {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
    color: #fbbf24;
}

/* Botões de copiar pequenos no painel */
.copy-btn-small {
    font-size: 11px;
    padding: 2px 6px;
}

/* Responsivo - Layout duas colunas */
@media (max-width: 900px) {
    .results-layout {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .pedidos-list-wrapper,
    .pedido-detalhe-wrapper {
        max-height: none;
    }
}

