/* --- CONFIGURAÇÕES GERAIS --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; } 
body {
    margin: 0; padding: 0;
    background-color: #000000; color: #ffffff;
    font-family: 'Roboto', sans-serif; overflow-x: hidden;
    position: relative;
}

/* FUNDO ESTELAR + COMETA */
.stars-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
    background: radial-gradient(white, rgba(255,255,255,.2) 1px, transparent 2px),
                radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
                radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    opacity: 0.7;
    animation: moveStars 60s linear infinite;
}
@keyframes moveStars {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 550px 550px, 350px 350px, 250px 250px; }
}

.comet {
    position: fixed; top: -100px; left: -100px;
    width: 350px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(204,0,0,0.5), #cc0000);
    box-shadow: 0 0 20px 4px rgba(204, 0, 0, 0.4);
    transform: rotate(45deg);
    z-index: -1; opacity: 0;
    animation: shootComet 12s ease-in-out infinite;
}
@keyframes shootComet {
    0% { transform: translate(-300px, -300px) rotate(45deg); opacity: 1; }
    20% { transform: translate(120vw, 120vh) rotate(45deg); opacity: 0; }
    100% { transform: translate(120vw, 120vh) rotate(45deg); opacity: 0; }
}

h1, h2, h3, .logo, .btn-main, .dash-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
}
a { text-decoration: none; color: white; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- HEADER --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; border-bottom: 1px solid #222;
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.95); z-index: 1000;
}
.logo-container { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-img { height: 35px; width: auto; display: block; transition: filter 0.3s; }
.logo-img:hover { filter: drop-shadow(0 0 5px #cc0000); }
.logo-text { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 2px; }
nav ul { display: flex; gap: 25px; align-items: center; }
nav a { font-size: 0.9rem; font-weight: 500; }
nav a:hover { color: #cc0000; }

.btn-login {
    border: 1px solid #333; padding: 8px 25px; 
    border-radius: 50px;
    cursor: pointer; background: transparent; color: #fff; font-family: 'Oswald', sans-serif;
}
.btn-login:hover { border-color: #cc0000; background: #cc0000; color: white; }

/* --- HERO --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 10% 80px 10%; perspective: 1000px; gap: 80px; flex-wrap: wrap;
    position: relative; z-index: 10;
}
.hero-info { flex: 1; max-width: 500px; z-index: 2; }
.hero-logo { width: 80px; height: auto; display: block; margin-bottom: 25px; }
.hero-info h1 { font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; }
.hero-info p { color: #888; margin-bottom: 30px; font-size: 1.1rem; line-height: 1.6; }
.btn-main {
    padding: 12px 40px; border: 1px solid #fff; background: transparent;
    color: #fff; cursor: pointer; font-size: 1rem; transition: 0.3s; display: inline-block;
}
.btn-main:hover { background: #cc0000; border-color: #cc0000; box-shadow: 0 0 15px #cc0000; }
.btn-main:disabled { opacity: 0.5; cursor: not-allowed; border-color: #555; box-shadow: none; background: transparent; }

.card-3d-container { width: 400px; height: 500px; position: relative; display: flex; justify-content: center; align-items: center; }
.card-3d-bg { width: 100%; height: 100%; background: transparent; border: none; box-shadow: none; position: absolute; display: flex; align-items: center; justify-content: center; }
model-viewer { width: 100%; height: 100%; --poster-color: transparent; transition: filter 0.4s ease; cursor: grab; }
model-viewer:active { cursor: grabbing; }
.card-3d-container:hover model-viewer { filter: drop-shadow(0 0 20px rgba(204, 0, 0, 0.5)) brightness(1.3); }
.floating-badge {
    position: absolute; bottom: 0px; right: 20px; background: #cc0000; color: white;
    padding: 5px 15px; font-size: 0.8rem; font-weight: bold; box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    border-radius: 4px; pointer-events: none; z-index: 10;
}

/* --- SECTIONS --- */
section { padding: 100px 10%; border-bottom: 1px solid #111; position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; display: inline-block; position: relative; }
.section-header h2::after { content:''; display: block; width: 60px; height: 3px; background: #cc0000; margin: 10px auto 0; }

/* GRID DE CARDS */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: stretch; }
@media (max-width: 1200px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }

/* Container do Flip */
.flip-container { perspective: 1000px; height: 250px; cursor: pointer; }
.flip-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-container.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 4px; }
.flip-front { background: transparent; } 

/* SHINE WRAPPER */
.shine-wrapper { position: relative; padding: 2px; border-radius: 4px; background: #222; transition: all 0.3s ease; height: 100%; width: 100%; display: flex; flex-direction: column; }
.shine-wrapper:hover { background: linear-gradient(60deg, #cc0000, #fff, #cc0000); background-size: 300% 300%; animation: rotate-shine 2s ease infinite; box-shadow: 0 0 20px rgba(204, 0, 0, 0.4); }
.shine-content { background: #050505; height: 100%; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 2px; padding: 30px; gap: 20px; }
@keyframes rotate-shine { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.card-icon { font-size: 2.5rem; color: #ddd; margin-bottom: 5px; }
.card h3 { margin: 0; font-size: 1.3rem; }
.card p { color: #666; font-size: 0.9rem; margin: 0; }

.flip-back {
    background-color: #050505;
    color: white;
    transform: rotateY(180deg);
    border: 1px solid #cc0000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    padding: 0;
    transition: transform 0.5s ease;
}

.flip-back:hover img { transform: scale(1.1); }
.flip-back-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.9); width: 100%; pointer-events: none; }
.more-sectors { text-align: center; color: #cc0000; margin-top: 50px; font-family: 'Oswald', sans-serif; font-size: 1.5rem; letter-spacing: 3px; font-weight: bold; text-shadow: 0 0 10px rgba(204,0,0,0.5); }

.about-layout { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-visual { flex: 1; min-width: 300px; height: 350px; background: #080808; border: 1px solid #222; display: flex; align-items: center; justify-content: center; position: relative; }
.code-snippet { width: 80%; font-family: monospace; color: #444; font-size: 0.8rem; line-height: 1.4; text-align: left; }
.code-highlight { color: #cc0000; }

/* --- FAQ SECTION --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #0a0a0a; border: 1px solid #222; margin-bottom: 15px; border-radius: 4px; overflow: hidden; }
.faq-item summary { padding: 15px 20px; cursor: pointer; font-weight: bold; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: #cc0000; }
.faq-item[open] summary::after { content: '-'; }
.faq-item[open] summary { border-bottom: 1px solid #222; color: #cc0000; }
.faq-content { padding: 20px; color: #999; line-height: 1.6; font-size: 0.95rem; }
.support-btn-area { text-align: center; margin-top: 40px; }

/* --- SEÇÃO DA ESCOLHA --- */
.lucky-section { position: relative; background: linear-gradient(180deg, #000 0%, #080000 100%); border-bottom: 1px solid #111; padding-bottom: 60vh; padding-top: 50px; overflow: hidden; display: flex; flex-direction: column; align-items: center; z-index: 10; }
.lucky-stage { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.char-container { position: absolute; bottom: 0; width: 40vw; max-width: 500px; height: auto; max-height: 90%; transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease; cursor: pointer; z-index: 10; display: flex; align-items: flex-end; opacity: 0; pointer-events: auto; }
.char-container img { width: 100%; height: auto; display: block; filter: brightness(0.7) sepia(0.2); object-fit: contain; }
.char-container:hover img { filter: brightness(1.0) sepia(0); }
.char-left { left: 0; transform: translateX(-100%); } .char-right { right: 0; transform: translateX(100%); }
.lucky-section.active .char-container { opacity: 1; }
.lucky-section.active .char-left { transform: translateX(0); } .lucky-section.active .char-right { transform: translateX(0); }
.hand-coin { position: absolute; width: 100px; height: 100px; z-index: 20; opacity: 0; transition: all 2.5s ease 0.2s; pointer-events: none; }
.coin-left { bottom: 45%; left: 15%; transform: translateX(-200%) scale(0.5); } .coin-right { bottom: 45%; right: 15%; transform: translateX(200%) scale(0.5); }
.lucky-section.active .hand-coin { opacity: 1; transform: translateX(0) scale(1); }
@keyframes spin-coin { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
.spinning-coin { width: 100%; height: auto; animation: spin-coin 3s linear infinite; filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
.prize-display { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); width: 60%; max-width: 600px; text-align: center; opacity: 0; pointer-events: none; transition: 0.5s; z-index: 30; }
.prize-display.active { opacity: 1; pointer-events: all; }
.prize-box { background: #111; border: 2px solid #ffd700; padding: 30px; border-radius: 12px; box-shadow: 0 0 50px rgba(255,215,0,0.3); backdrop-filter: blur(10px); }

/* --- MODAIS & VIP --- */
.vip-section { padding: 100px 10%; display: flex; justify-content: center; }
.vip-card-wrapper { max-width: 700px; width: 100%; }
.vip-box { padding: 60px 40px; text-align: center; }
.input-group { display: flex; gap: 0; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.vip-input { padding: 15px; background: #000; border: 1px solid #333; border-right: none; color: white; font-family: 'Roboto', sans-serif; outline: none; width: 300px; font-size: 1rem; transition: 0.3s; }
.vip-input:focus { border-color: #cc0000; }
.btn-input { padding: 15px 30px; background: #222; border: 1px solid #333; border-left: none; color: white; cursor: pointer; font-family: 'Oswald', sans-serif; transition: 0.3s; }
.btn-input:hover { background: #cc0000; color: white; border-color: #cc0000; }

#landing-page-content { transition: opacity 0.5s ease; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(10px); }
.auth-card { background: #0a0a0a; border: 1px solid #333; padding: 40px; width: 400px; text-align: center; position: relative; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
/* MODAL LEGAL (Largo) */
.auth-card.legal-card { width: 800px; max-width: 90%; height: 80vh; text-align: left; display: flex; flex-direction: column; }
.legal-content { overflow-y: auto; padding-right: 15px; margin-top: 20px; color: #ccc; line-height: 1.8; font-size: 0.9rem; }
.legal-content::-webkit-scrollbar { width: 6px; }
.legal-content::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.legal-content h2 { color: #cc0000; margin-top: 25px; margin-bottom: 10px; font-size: 1.1rem; text-transform: uppercase; font-family: 'Oswald'; }
.legal-content p { margin-bottom: 15px; text-align: justify; }
.legal-content ul { padding-left: 20px; margin-bottom: 15px; }
.legal-content li { margin-bottom: 5px; }
.legal-title { font-family: 'Oswald'; color: #fff; font-size: 1.5rem; border-bottom: 1px solid #333; padding-bottom: 15px; }

.close-modal { position: absolute; top: 20px; right: 25px; font-size: 1.5rem; cursor: pointer; color: #666; }
.close-modal:hover { color: #cc0000; }
.modal-step { display: none; animation: fadeUp 0.4s ease; }
.modal-step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.auth-input { width: 100%; padding: 15px; margin: 10px 0; background: #000; border: 1px solid #222; color: white; outline: none; border-radius: 4px; font-family: 'Roboto', sans-serif; }
.auth-input:focus { border-color: #cc0000; }

/* BOTÕES DE TROCA DE TELA (LINK EMBAIXO) */
.switch-btn { background: none; border: none; color: #888; text-decoration: underline; cursor: pointer; margin-top: 10px; font-size: 0.9rem; }
.switch-btn:hover { color: white; }

/* ABAS DE PAGAMENTO */
.pay-tabs { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; }
.pay-tab-btn {
    background: #111; border: 1px solid #333; color: #666;
    flex: 1; padding: 10px; cursor: pointer; font-family: 'Oswald';
    transition: 0.3s;
}
.pay-tab-btn:hover { border-color: #666; }
.pay-tab-btn.active { background: #cc0000; color: white; border-color: #cc0000; }

.pix-box { background: #fff; padding: 10px; display: inline-block; margin: 20px 0; border-radius: 8px; }
.legal-check-wrapper { text-align: left; margin: 15px 0; font-size: 0.8rem; color: #aaa; display: flex; gap: 10px; align-items: flex-start; }
.legal-check-wrapper input { margin-top: 3px; cursor: pointer; }
.legal-check-wrapper a { color: #cc0000; text-decoration: underline; cursor: pointer; }

/* --- FOOTER STYLE --- */
footer { padding: 60px 5%; background: #020202; border-top: 1px solid #111; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; position: relative; z-index: 10; }
.footer-left { display: flex; align-items: center; gap: 10px; color: #888; font-size: 0.9rem; }
.footer-left i { color: #cc0000; font-size: 1.2rem; }
.footer-center { text-align: center; color: #444; font-size: 0.9rem; flex: 1; }
.legal-links { margin-top: 10px; display: flex; justify-content: center; gap: 20px; }
.legal-links span { color: #666; font-size: 0.8rem; text-decoration: underline; cursor: pointer; }
.legal-links span:hover { color: #cc0000; }
.social-box a { font-size: 1.2rem; margin-left: 15px; color: #555; transition: 0.3s; }
.social-box a:hover { color: #fff; }

/* --- MODAL DE MENSAGEM (Custom Alert) --- */
#msgModal { z-index: 9999; } /* Fica acima de tudo, inclusive do login */

.msg-icon { 
    font-size: 3rem; margin-bottom: 20px; display: block; 
}
.msg-success { color: #00ff00; text-shadow: 0 0 15px rgba(0, 255, 0, 0.5); }
.msg-error { color: #cc0000; text-shadow: 0 0 15px rgba(204, 0, 0, 0.5); }
.msg-info { color: #ffd700; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }

#msgTitle { font-family: 'Oswald'; font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; }
#msgText { color: #ccc; margin-bottom: 30px; font-size: 1rem; }

/* --- ESTILO DOS ERROS NOS CAMPOS --- */
.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px; /* Espaço extra para o input não grudar */
}

.field-error {
    position: absolute;
    bottom: 100%; /* Fica exatamente acima do input */
    left: 0;
    background-color: #cc0000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: none; /* Escondido por padrão */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
}

/* Setinha do balão */
.field-error::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 15px;
    border-width: 5px;
    border-style: solid;
    border-color: #cc0000 transparent transparent transparent;
}

/* Borda vermelha no input quando errar */
.input-invalid {
    border-color: #cc0000 !important;
    animation: shake 0.3s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Botão Cancelar novo */
.btn-cancel {
    background: transparent; border: none; color: #666; 
    text-decoration: underline; margin-top: 15px; 
    cursor: pointer; font-size: 0.8rem; width: 100%;
    font-family: 'Roboto', sans-serif;
}
.btn-cancel:hover { color: #cc0000; }

/* ESTILO NOVO: BOTÕES DE OPÇÃO DE PAGAMENTO */
.pay-option-btn { width: 100%; padding: 15px; margin-bottom: 15px; background: #111; border: 1px solid #333; color: white; cursor: pointer; font-family: 'Oswald'; font-size: 1.1rem; transition: 0.3s; border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pay-option-btn:hover { background: #222; border-color: #cc0000; }
.pay-option-btn i { font-size: 1.5rem; color: #cc0000; }

/* -----------------------------------------------------------------
   🔥 CORREÇÕES FINAIS PARA CELULAR (Evitar bug de sobreposição)
   ----------------------------------------------------------------- */

@media (max-width: 768px) { 
    /* Ajustes da Seção da Moeda */
    .lucky-section { padding-bottom: 50vh; } 
    .char-container { width: 70vw; } 
    .char-left { left: -10%; } 
    .char-right { right: -10%; } 
    .hand-coin { width: 70px; height: 70px; } 
    .coin-left { bottom: 20%; left: 10%; } 
    .coin-right { bottom: 20%; right: 10%; } 
    .prize-display { width: 90%; bottom: 50px; } 
    
    /* FIX: Rodapé não sobrepor (Flex Column + Gap) */
    footer { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; /* Garante espaço entre os blocos */
        padding-bottom: 40px; 
    } 
    .footer-left { 
        align-items: center !important; 
        width: 100%; 
        margin-bottom: 10px;
    }
    .footer-center {
        width: 100%;
        margin-bottom: 10px;
    }
    .legal-links { 
        flex-direction: column; 
        gap: 10px;
        margin-top: 10px;
    } 
    .social-box {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

/* FIX: Grid de Cards para Celular (2 colunas sem estourar) */
@media (max-width: 600px) { 
    .grid { 
        grid-template-columns: repeat(2, 1fr); /* 2 Colunas Forçadas */
        gap: 10px; /* Espaço menor */
    } 
    
    /* Ajusta altura para não ficar comprido demais */
    .flip-container { height: 210px; } 

    /* Diminui letra e padding para caber no quadrado */
    .shine-content { padding: 15px; gap: 10px; }
    .card-icon { font-size: 1.8rem; margin-bottom: 2px; }
    .card h3 { font-size: 1rem; }
    .card p { font-size: 0.75rem; line-height: 1.1; }

    /* Ajuste do Hero Title */
    .hero-info h1 { font-size: 2.2rem; }
    .hero { padding-top: 100px; gap: 30px; }
}

/* --- CORREÇÃO DO CABEÇALHO (HEADER) MOBILE --- */

@media (max-width: 768px) {
    header {
        padding: 10px 10px; /* Borda bem fina para caber tudo */
        justify-content: space-between;
    }

    .logo-container {
        gap: 5px; /* Aproxima o ícone do texto */
    }
    
    .logo-img {
        height: 25px; /* Ícone um pouco menor */
    }

    /* Agora o texto aparece, mas pequeno igual aos links */
    .logo-text {
        display: block;      /* Garante que aparece */
        font-size: 0.75rem;  /* Mesmo tamanho dos botões */
        letter-spacing: 1px; /* Espaçamento menor */
    }

    /* Menu de links (Biblioteca, Sobre...) */
    nav ul {
        gap: 8px; /* Tudo bem pertinho */
    }

    nav a {
        font-size: 0.75rem; /* Tamanho pequeno padrão */
    }

    /* Botão de Login */
    .btn-login {
        padding: 4px 10px; 
        font-size: 0.75rem;
        border-width: 1px;
    }
}

/* --- AJUSTE EXTREMO (Para telas muito pequenas tipo iPhone SE) --- */
@media (max-width: 360px) {
    /* Se a tela for minúscula, aí sim escondemos o texto do logo para não quebrar */
    .logo-text {
        display: none;
    }
}

/* Limita a altura do Brick e cria scroll se passar disso */
#pay-card-container {
    max-height: 450px; /* Altura máxima (ajuste se precisar) */
    overflow-y: auto;  /* Cria a barra de rolagem vertical */
    overflow-x: hidden; /* Evita rolagem lateral */
    
    /* Estética: Borda arredondada e um fundo leve para destacar */
    background: rgba(0,0,0,0.2); 
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

/* Opcional: Personalizar a barra de rolagem para ficar bonita (estilo Dark) */
#pay-card-container::-webkit-scrollbar {
    width: 8px;
}
#pay-card-container::-webkit-scrollbar-track {
    background: #111; 
    border-radius: 4px;
}
#pay-card-container::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 4px;
}
#pay-card-container::-webkit-scrollbar-thumb:hover {
    background: #cc0000; /* Vermelho do seu site */
}

/* Esconde as etiquetas de parcelamento do Mercado Pago na marra */
.svelte-1049103, 
.svelte-1d3h55u,
span[class*="installments"],
div[class*="installments-badge"],
.benefit-text,
.installments-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* --- CORREÇÃO DEFINITIVA DO OLINHO --- */
.password-wrapper {
    position: relative !important;
    display: flex !important; /* Ajuda a segurar o layout */
    width: 100% !important;
    margin-bottom: 15px;
}

.password-wrapper input.auth-input {
    width: 100% !important;
    padding-right: 45px !important; /* Espaço pro olho */
    box-sizing: border-box !important;
}

.password-wrapper i {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    color: #999;
    pointer-events: auto !important; /* Garante o clique */
}

.password-wrapper i:hover {
    color: #cc0000;
}