/* 1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@200;400;700&display=swap');
/*#################################### CORES GLOBAIS #################################### */
:root {
    --accent: #00f2ff;
    --accent-2: #ff0054;
    --bg-dark: #121212;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --primary-glow: #00f2ff;
    --secondary-glow: #7000ff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: move 25s infinite alternate;
}

.orb-1 { width: 300px; height: 400px; background: var(--accent); top: -10%; left: -10%; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-2); bottom: -10%; right: -5%; }

/*#################################### GERAIS #################################### */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}



@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(150px, 100px) scale(1.3); }
}

#cursor-aura {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
}


/* ================================================= */
/* 7. PÁGINA DE AUTENTICAÇÃO (LOGIN/REGISTER)       */
/* ================================================= */
.auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    z-index: 10;
}

.auth-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
}

/* Logo e Títulos */
.auth-logo {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}
.auth-logo span { color: var(--accent); }

.glitch-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.glitch-title span { color: var(--accent); }

.auth-subtitle {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 40px;
}

/* Inputs Futuristas */
.input-wrapper {
    position: relative;
    margin-bottom: 25px;
    text-align: left;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-wrapper label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: 0.3s;
    text-transform: uppercase;
}

/* Efeito de flutuar o label */
.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label {
    top: -15px;
    color: var(--accent);
}

.input-wrapper input:focus {
    border-bottom-color: var(--accent);
}

/* Botões */
.auth-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: white;
    color: black;
    border: none;
    padding: 18px;
    border-radius: 100px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

.auth-divider {
    font-size: 0.6rem;
    opacity: 0.3;
    margin: 10px 0;
}

/* Olho da Senha */
.eye-toggle {
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.eye-icon {
    width: 20px;
    fill: none;
    stroke: rgba(255,255,255,0.3);
    stroke-width: 2;
}



/*#################################### CARD LOGIN #################################### */
.log-card-container {
    margin: 20px auto !important; 
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px; /* Reduzido para não inflar o card */
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 350px; /* Reduzido de 420px para um visual mais clean */
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 100;
}

.log-glitch-title {
    color: white;
    font-size: 1.4rem; /* Reduzido de 1.8rem */
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.log-glitch-title span { color: #00f2ff; }

.log-subtitle {
    font-size: 0.75rem; /* Reduzido de 0.85rem */
    color: rgba(255,255,255,0.4);
    margin-bottom: 25px; /* Reduzido de 40px */
}

/* Grupos de Input */
.log-field-group {
    position: relative;
    margin-bottom: 22px; /* Reduzido de 30px */
    text-align: left;
}

.log-input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 8px 0; /* Reduzido de 12px */
    color: white;
    font-size: 0.9rem; /* Reduzido de 1rem */
    outline: none;
    transition: 0.3s;
}

.log-field-label {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.6rem; /* Reduzido de 0.65rem */
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: 0.3s;
    text-transform: uppercase;
}

/* Efeito flutuante ajustado para o novo tamanho */
.log-input-field:focus ~ .log-field-label,
.log-input-field:not(:placeholder-shown) ~ .log-field-label {
    top: -14px;
    color: #00f2ff;
    font-size: 0.55rem;
}

.log-input-field:focus {
    border-bottom-color: #00f2ff;
}

/* Botões */
.log-btn-main {
    width: 100%; /* Melhor preenchimento interno */
    max-width: 220px; 
    background: white;
    color: black;
    border: none;
    padding: 12px; /* Reduzido de 18px */
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.log-btn-main:hover {
    background: #00f2ff;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(0, 242, 255, 0.2);
}

.log-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    padding: 8px 16px;
}

/* Olho da senha */
.log-pass-group { position: relative; }

.log-toggle-eye {
    position: absolute;
    right: 0;
    top: 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 1rem;
}

.file-input-custom {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 8px;
    font-size: 0.7rem;
    width: 100%;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    border-radius: 6px;
}

/* Botão Google Moderno */
.google-btn-modern {
    width: 60%;
    max-width: 220px;          
    margin: 10px auto;      
    height: 30px; /* Reduzido de 45px */          
    background-color: #fff;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 0.8rem;
}


.login-page-root {
    /* Força o preenchimento total da tela */
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    
    /* Flexbox de alta prioridade */
    display: flex !important;
    align-items: center !important;   /* Centro Vertical */
    justify-content: center !important; /* Centro Horizontal */
    
    background: #050505;
    position: fixed; /* Garante que ele se baseie na janela do navegador, não em outros elementos */
    top: 0;
    left: 0;
    overflow: hidden;
}



.log-bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    /* Removemos o círculo central e usamos um degradê linear muito sutil */
    /* Isso elimina o efeito de 'lanterna' que estava estragando o visual */
    background: linear-gradient(
        135deg, 
        rgba(255, 157, 0, 0.01) 0%, 
        #050505 50%, 
        rgba(255, 157, 0, 0.01) 100%
    );
    background-color: #050505; 
}
/* Ajuste específico para Celulares (Dispositivos Móveis) */
@media (max-width: 480px) {
    .google-btn-modern {
        width: 220px;       /* Botão mais estreito no celular */
        height: 40px;       /* Um pouco mais baixo */
        border-radius: 10px;
    }

    .btn-text {
        font-size: 13px;    /* Letra levemente menor para caber */
        padding-right: 36px; /* Ajuste do alinhamento central */
    }

    .google-icon-wrapper {
        width: 36px;
        height: 36px;
    }
}

.google-btn-modern:hover {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}

.google-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-icon { 
    width: 10px; 
}

.btn-text {
    flex-grow: 1;
    color: #444;
    font-size: 10px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding-right: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap; /* Impede que o texto quebre em duas linhas */
}

/* Estilo Base (Desktop) */
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
background: rgba(255, 255, 255, 0.05); /* Fundo sutil */
    backdrop-filter: blur(5px); /* Efeito de vidro embaçado */
}

.btn-back-home:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-back-home:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* MODAL AJUSTADO PARA CELULAR */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Margem de segurança */
}

.modal-content {
    background: #111;
    border: 1px solid #ff4444;
    padding: 30px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 320px; /* Largura ideal para iPhone SE/Androids pequenos */
    text-align: center;
}

/* RESPONSIVIDADE ESPECÍFICA */
@media (max-width: 480px) {
    .log-card-container {
        padding: 20px;
        margin: 10px;
        width: 95%;
    }

    .log-glitch-title {
        font-size: 1.8rem; /* Diminui um pouco o título no celular */
    }

    .btn-back-home {
        width: fit-content;
        align-self: flex-start; /* Alinha à esquerda no mobile */
    }
}


/* Fundo escurecido com desfoque (Blur) */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Caixa da Modal seguindo seu padrão glass-card */
.modal-content {
    background: rgb(0, 0, 0) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content h3 { 
    color: #00f2ff; 
    margin-bottom: 15px; 
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.modal-content p { 
    color: #ffffff; 
    line-height: 1.6; 
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Botão de fechar (X) */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.2s;
}
.close-modal:hover { opacity: 1; }








/* #################### MODAL BANDA OU ESTABELECIMENTO #################### */

.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #000 !important;
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 50px 40px;
    border-radius: 28px;
    text-align: center;
    max-width: 800px; 
    width: 95%;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}

.modal-content h3 {
    font-family: 'Inter', sans-serif;
    color: #00f2ff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

/* Grid para Layout Horizontal */
.opcoes-perfil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-perfil {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 40px 20px !important;
    border-radius: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    outline: none;
}

/* Estilo do Ícone com Brilho Azul */
.icon-grande {
    font-size: 2.5rem; /* Aumentado levemente */
    color: #00f2ff; 
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); /* Efeito neon no ícone */
}

.titulo-btn {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.subtitulo-btn {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Hover: Destaque Azul */
.btn-perfil:hover {
    transform: translateY(-8px);
    background: rgba(0, 242, 255, 0.08) !important;
    border-color: #00f2ff !important;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.btn-perfil:hover .icon-grande {
    filter: brightness(1.3);
    transform: scale(1.1); /* Ícone pulsa levemente no hover */
}

/* Botão de Fechar Modal */
.btn-fechar-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5); /* Cor discreta inicial */
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-fechar-modal:hover {
    color: #00f2ff; /* Seu azul original no hover */
    transform: rotate(90deg) scale(1.2); /* Efeito dinâmico */
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.8);
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* #################### CSS PARA DISPOSITIVOS MÓVEIS (ATÉ 768px) #################### */
@media (max-width: 768px) {
    
    /* Ajusta o espaçamento externo para o modal não colar na tela */
    .modal-overlay {
        padding: 20px;
    }

    .btn-fechar-modal {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }

    /* Reduz o tamanho da caixa para ganhar espaço vertical */
    .modal-content {
        padding: 35px 20px !important;
        width: 100% !important;
        max-width: 100%;
        border-radius: 20px !important;
    }

    /* Título menor para não quebrar em várias linhas */
    .modal-content h3 {
        font-size: 1.5rem !important;
        letter-spacing: 1px !important;
    }

    .modal-content p {
        margin-bottom: 25px !important;
        font-size: 0.85rem !important;
    }

    /* FORÇA OS BOTÕES A FICAREM UM EMBAIXO DO OUTRO */
    .opcoes-perfil {
        grid-template-columns: 1fr !important; /* Muda de 2 colunas para 1 */
        gap: 15px !important;
    }

    /* Ajusta o tamanho dos botões (Cards) */
    .btn-perfil {
        padding: 25px 15px !important;
        gap: 10px !important;
    }

    /* Redimensiona os ícones e títulos internos */
    .icon-grande {
        font-size: 2rem !important;
    }

    .titulo-btn {
        font-size: 1.2rem !important;
    }

    .subtitulo-btn {
        font-size: 0.75rem !important;
        max-width: 200px; /* Evita que o texto espalhe muito */
    }

    /* Ajuste de clique para mobile (UX) */
    .btn-perfil:active {
        transform: scale(0.98); /* Efeito de apertar ao tocar */
        background: rgba(0, 242, 255, 0.1) !important;
    }
}


/* Estilo para o botão de excluir/cancelar na modal */
.btn-perfil-cancelar {
    margin-top: 15px;
    background: #d32f2f !important; /* Vermelho sólido mais forte */
    color: #ffffff !important;      /* Texto branco puro */
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3); /* Sombra avermelhada para destaque */
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.btn-perfil-cancelar:hover {
    background: #b71c1c !important; /* Vermelho ainda mais escuro no hover */
    transform: translateY(-2px);    /* Leve subida ao passar o mouse */
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

/* Remove o fundo branco/amarelo do preenchimento automático */
.log-input-field:-webkit-autofill,
.log-input-field:-webkit-autofill:hover, 
.log-input-field:-webkit-autofill:focus, 
.log-input-field:-webkit-autofill:active {
    /* Isso cria uma transição infinita na cor de fundo, impedindo que ela apareça */
    -webkit-transition: background-color 9999s ease-out;
    transition: background-color 9999s ease-out;
    
    /* Define a cor do texto para que não fique branca sobre o fundo claro ou vice-versa */
    -webkit-text-fill-color: #ffffff !important; /* Ajuste para a cor do seu texto */
}

/* Garante que a borda e o estilo permaneçam consistentes */
.log-input-field {
    background-color: transparent !important;
}








/* Fundo Único da Modal de Venda (Substitui o antigo .modal-overlay) */
.welcome-sale-bg {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Fundo bem escuro para foco total */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Garante que fique acima de outros overlays */
}

/* Cartão Centralizado */
.clean-card-style {
    background: #111 !important;
    border: 1px solid #333 !important;
    padding: 35px !important;
    border-radius: 12px !important;
    max-width: 380px !important;
    width: 90%;
    text-align: center;
    color: white !important;
    font-family: sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.clean-card-style h3 {
    font-family: 'Syne', sans-serif;
    color: #00ffcc !important;
    margin: 0;
    font-size: 1.4rem;
}

.clean-card-style .status-msg {
    color: #888;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Caixa do E-mail */
.email-info-box {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.email-info-box .label {
    display: block;
    font-size: 10px;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

#display-email-venda {
    color: #00ffcc;
    font-family: monospace;
    font-size: 15px;
}

.instruction-text {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

/* Input de Senha Organizado */
.senha-input-container {
    text-align: left;
    margin-top: 15px;
}

.senha-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

.senha-field {
    width: 100%;
    background: #000;
    border: 1px solid #444;
    padding: 12px;
    border-radius: 6px;
    color: white;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.senha-field:focus {
    border-color: #00ffcc;
}

/* Botão Estilo Premium */
.btn-finalizar-premium {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.btn-finalizar-premium:hover {
    background: #00ffcc;
    transform: translateY(-1px);
}