/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #e0e5ec;
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden; /* Evita que a tela inteira role no PC */
}

/* CONTAINER DO APP (Limita a largura para parecer celular) */
#app-container {
    width: 100%;
    max-width: 480px;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* CABEÇALHO */
.top-bar {
    background-color: #2b3990;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
}
.logo span { color: #f39200; }
.logo .unidade { font-weight: normal; font-size: 16px; margin-left: 5px;}

.carteira {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

/* ÁREA CENTRAL */
#main-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    /* O espaço abaixo garante que o conteúdo não fique escondido atrás do menu */
    padding-bottom: 90px; 
}

/* CONTROLE DAS TELAS E A ANIMAÇÃO SUAVE */
.tela {
    display: none; /* Esconde todas as telas por padrão */
}

.tela.ativa {
    display: block; /* Mostra a tela atual */
    animation: deslizarTela 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Troque a animação antiga por esta: */
@keyframes deslizarTela {
    from { 
        opacity: 0; 
        margin-top: 60px; /* Usando margin ao invés de transform */
    }
    to { 
        opacity: 1; 
        margin-top: 0; 
    }
}

/* ESTILOS ESPECÍFICOS (Cards, Botões, Buscas) */
.busca-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

/* =========================================
   TELA INICIAL (FEED DE COMS)
   ========================================= */
.card-com {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

/* Cabeçalho do Card (Autor) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.perfil-autor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foto-perfil {
    width: 35px;
    height: 35px;
    background: #2b3990;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.dados-autor {
    display: flex;
    flex-direction: column;
}

.dados-autor strong { font-size: 14px; color: #333; }

/* Visual da Etiqueta de ID */
.id-com {
    font-size: 10px;
    color: #888;
    background: #f1f3f5;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: normal;
}

.dados-autor span { font-size: 11px; color: #888; }

.status {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
}
.status.aberta { background: #fff3e0; color: #f39200; }
.status.em-andamento { background: #e3f2fd; color: #1976d2; }

/* Corpo do Card (Problema) */
.tag-categoria {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}
.tag-categoria.pavimentacao { background: #795548; }
.tag-categoria.iluminacao { background: #ffb300; }

.card-body h3 { font-size: 16px; color: #2b3990; margin-bottom: 5px; }
.card-body p { font-size: 13px; color: #555; line-height: 1.4; margin-bottom: 12px;}

.foto-problema {
    background: #f1f3f5;
    height: 140px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Rodapé do Card (Botões Sociais) */
.card-footer {
    display: flex;
    gap: 10px;
    border-top: 1px solid #f1f3f5;
    padding-top: 12px;
}
.card-acoes {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
.btn-acao {
    flex: 1;
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 0;
    border-radius: 6px;
    transition: background 0.2s;
}
.btn-acao:hover { background: #f8f9fa; }
.btn-acao.share { flex: 0.5; color: #adb5bd; }

.btn-acao.apoiado-ativo {
    color: #f39200 !important;
    background-color: #fff3e0;
    font-weight: bold;
    border-radius: 8px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
}

.status.aberta { color: #f39200; font-weight: bold; }

/* =========================================
   BOTÃO FLUTUANTE (+) - CORRIGIDO
   ========================================= */
.fab-button {
    position: absolute;
    bottom: 90px; /* Distância do chão */
    right: 20px;  /* Distância da direita */
    width: 60px;
    height: 60px;
    background-color: #f39200;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(243, 146, 0, 0.4);
    cursor: pointer;
    z-index: 100; /* Garante que ele fique sempre por cima de tudo */
    transition: transform 0.2s, background-color 0.2s;
}

/* Efeito legal quando clica no botão (+) */
.fab-button:active {
    transform: scale(0.9);
}
.fab-button:hover {
    background-color: #d67f00; /* Feedback visual no hover */
    transform: scale(1.1); /* Aumenta ligeiramente para destaque */
}

/* FORMULÁRIOS */
.form-container select, .form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}
.form-container textarea { height: 100px; resize: none; }

.mapa-placeholder {
    width: 100%;
    height: 150px;
    background: #e0e5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #666;
}

.botoes-acao { display: flex; gap: 10px; }
.botoes-acao button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
.btn-primario { 
    background: #f39200; 
    color: white; 
    padding: 14px; /* Aumente ou diminua esse valor para mudar a altura! */
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px; /* Aumenta um pouquinho a letra */
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn-primario:hover {
    background-color: #d67f00 !important; /* Escurece levemente o laranja no hover */
}
.btn-primario:active {
    transform: scale(0.98); /* Efeito de clique real */
}
.btn-secundario { background: #ddd; color: #333; }
.btn-secundario {
    cursor: pointer; /* Adiciona a mãozinha */
    transition: background 0.2s;
}
.btn-secundario:hover {
    background-color: #e0e0e0;
}
/* NAVEGAÇÃO INFERIOR */
.bottom-nav {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    z-index: 10;
}

.nav-item {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-item.ativo {
    color: #2b3990;
    font-weight: bold;
}
.nav-item span { font-size: 20px; margin-bottom: 2px; }
/* =========================================
   TELA DE MERCADO (Lojas e Cupons)
   ========================================= */
.header-mercado {
    margin-bottom: 20px;
}

.header-mercado h2 {
    color: #2b3990;
    margin-bottom: 5px;
}

.header-mercado p {
    font-size: 14px;
    color: #666;
}

.card-loja {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.loja-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.loja-icone {
    font-size: 30px;
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
}

.loja-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
}

.loja-info .categoria {
    font-size: 12px;
    color: #888;
}

.cupom-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cupom-item:last-child {
    margin-bottom: 0;
}

.cupom-textos {
    display: flex;
    flex-direction: column;
}

.cupom-textos strong {
    font-size: 14px;
    color: #2b3990;
}

.cupom-textos span {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.btn-resgatar {
    background: #f39200;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.1s, background 0.2s;
    box-shadow: 0 2px 5px rgba(243, 146, 0, 0.3);
}

.btn-resgatar:active {
    transform: scale(0.95);
    background: #d67f00;
}
/* =========================================
   MODAIS PERSONALIZADOS (Caixas de Aviso)
   ========================================= */
.modal-box {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    position: relative;
    /* 👉 MUDE O margin-top para margin: auto */
    margin: auto; 
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.ativo {
    display: flex; /* O Javascript usa isso para mostrar a tela escura */
}

.modal-box {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    position: relative;
    
    /* 👉 REMOVEMOS o margin-top e adicionamos margin: auto para segurança */
    margin: auto; 
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box.ativo {
    display: block; /* O Javascript usa isso para mostrar a caixa certa */
}

@keyframes pularModal {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-box h3 { color: #2b3990; margin-bottom: 10px; }
.modal-box p { font-size: 14px; color: #555; margin-bottom: 20px; }

.icone-sucesso { font-size: 50px; margin-bottom: 10px; animation: flutuar 2s infinite ease-in-out; }

/* O design do Código do Voucher */
.voucher-destaque {
    background: #fff8f0;
    color: #f39200;
    font-size: 26px;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed #f39200;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Campo de texto dentro dos Modais */
.modal-textarea {
    width: 100%;
    height: 90px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}
.modal-textarea:focus {
    border-color: #2b3990;
}
/* =========================================
   TELA DE PERFIL
   ========================================= */
.perfil-header-container {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 20px;
}

.foto-perfil-grande {
    width: 80px;
    height: 80px;
    background: #2b3990;
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.perfil-header-container h2 { color: #333; font-size: 20px; margin-bottom: 5px; }
.perfil-header-container p { color: #666; font-size: 14px; margin-bottom: 10px; }

.tag-regiao {
    background: #f1f3f5;
    color: #555;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.status-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.status-box {
    flex: 1;
    background: white;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.status-box strong { display: block; font-size: 22px; color: #f39200; margin-bottom: 5px; }
.status-box span { font-size: 11px; color: #888; }

.menu-perfil {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.menu-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f3f5;
    padding: 15px 20px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: #f8f9fa; }

.botoes-perigo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-sair {
    background: white; border: 1px solid #ddd; color: #333;
    padding: 15px; border-radius: 8px; font-weight: bold; cursor: pointer;
}
.btn-excluir {
    background: transparent; border: none; color: #dc3545;
    padding: 15px; font-size: 13px; cursor: pointer; text-decoration: underline;
}
.card-foto img {
    width: 100%;
    max-height: 250px;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
#area-preview img {
    border: 2px solid #f39200; /* Uma borda com a cor do seu app */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

#area-preview img:hover {
    transform: scale(1.02); /* Um efeitinho leve ao passar o mouse */
}
.card-com {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Quando escondido pelo filtro */
.card-com[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}
.filtros-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Esconde barra no Firefox */
}
.filtros-chips::-webkit-scrollbar { display: none; } /* Esconde no Chrome */

.chip {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: white;
    white-space: nowrap;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.chip.active {
    background: #2b3990;
    color: white;
    border-color: #2b3990;
}
/* =========================================
   FILTROS (CHIPS EMPILHADOS)
   ========================================= */
.filtros {
    display: flex;
    flex-wrap: wrap; /* A MÁGICA: Permite que os botões caiam para a linha de baixo */
    gap: 8px; /* Espaço entre os botões */
    padding: 10px 0;
    margin-bottom: 10px;
}

.chip {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
    color: #555;
}

.chip:hover {
    background: #f8f9fa;
}

.chip.active {
    background: #2b3990;
    color: white;
    border-color: #2b3990;
    font-weight: bold;
}
#mapa {
    position: relative; /* Necessário para o pino absoluto */
    overflow: hidden;
}

.pino-central-fixo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -100%);
}

.pino-central-fixo img {
    width: 25px;
    height: 41px;
}

/* Estilo visual para o botão desabilitado */
#btn-enviar-com:disabled {
    background-color: #666 !important;
    cursor: not-allowed;
}
/* ESTILOS DA ÁREA DO PARCEIRO */
.abas-parceiro {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.btn-aba-parceiro {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.btn-aba-parceiro.ativa {
    color: #2b3990;
    border-bottom-color: #2b3990;
}

.card-oferta-gestao {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 5px solid #f39200;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.label-modal {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.input-modal {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
/* Garante que o fundo escuro cubra TUDO */
.modal-overlay {
    display: none; /* O JS muda para flex */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

/* Centraliza o modal perfeitamente */
.modal-box {
    display: none;
    background: white;
    width: 90%;
    max-width: 380px;
    max-height: 90vh;
    border-radius: 15px;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    overflow-y: auto;
    
    /* 👉 BLINDAGEM MÁXIMA DE CENTRALIZAÇÃO */
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important; 
}
.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
}
.dot.active {
    background: #f39200; /* Cor de destaque do COM-UNICA */
    width: 25px;
    border-radius: 10px;
}
/* style.css - Estilo para os botões de gestão de comentários */

.comentario-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    border: 1px solid #eee;
}

.comentario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.comentario-acoes {
    display: flex;
    gap: 12px;
}

.btn-gestao-com {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-gestao-com:hover {
    opacity: 1;
    transform: scale(1.2);
}

.btn-excluir-com:hover {
    color: #dc3545; /* Vermelho apenas no hover da lixeira */
}
/* style.css */
.btn-secundario {
    background: #eee;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer; /* Adiciona a mãozinha (pointer) */
    transition: background 0.2s;
}

.btn-secundario:hover {
    background: #e0e0e0;
}
/* style.css - Padronização Global de Interatividade */

/* Aplicar cursor pointer a todos os elementos clicáveis */
.nav-item, 
.btn-aba-parceiro, 
.btn-resgatar, 
.btn-sair, 
.card-oferta-gestao button,
#perfil-loja-marca-input {
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Efeito de Hover nas Abas de Navegação (Inferior e Parceiro) */
.nav-item:hover, .btn-aba-parceiro:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Botão Sair da Conta */
.btn-sair:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    color: #dc3545;
}

/* Botão de Resgate de Oferta (Laranja) */
.btn-resgatar:hover {
    background-color: #d67f00;
    transform: scale(1.05);
}

/* Botão Adicionar Ofertas (+) */
#btn-add-oferta:hover {
    background-color: #d67f00;
    transform: scale(1.05);
}

/* Botões de Gestão (Editar/Excluir) em Ofertas e Estoque */
.card-oferta-gestao button:hover {
    opacity: 0.8;
    text-decoration: underline;
    transform: scale(1.1);
}
/* style.css - Adicione no final do arquivo */

/* Animações dos botões de pesquisa */
.btn-opcao-pesquisa {
    transition: all 0.2s ease;
    border: 2px solid transparent !important;
}

.btn-opcao-pesquisa:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #f1f3f5;
}

.btn-opcao-pesquisa.selecionada {
    border-color: #f39200 !important;
    background-color: #fff8f0 !important;
    color: #d67f00 !important;
    font-weight: bold;
    transform: scale(1.02);
}

/* Animação da barra de resultados no Modal */
.barra-resultado {
    height: 10px;
    background: #2b3990;
    border-radius: 4px;
    margin-top: 4px;
    transition: width 1s ease-out;
}
/* style.css - Bolinhas de cor para o Avatar */
.cor-opcao {
    width: 25px; 
    height: 25px; 
    border-radius: 50%; 
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: transform 0.2s;
}
.cor-opcao:hover {
    transform: scale(1.2);
    border-color: #333;
}
/* =========================================
   NOVA BARRA DE NAVEGAÇÃO NO TOPO
   ========================================= */
.nav-global {
    display: flex;
    background-color: white;
    border-bottom: 2px solid #f0f0f0;
    justify-content: space-around;
    padding: 0;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px -6px rgba(0,0,0,0.1);
}

.nav-global .nav-item {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    /* AS 4 LINHAS ABAIXO CENTRALIZAM O ÍCONE E O TEXTO: */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-global .nav-item span {
    font-size: 18px;
    margin-bottom: 4px;
    display: inline-block;
}

.nav-global .nav-item.ativo {
    color: #2b3990;
    font-weight: bold;
    border-bottom: 3px solid #2b3990;
}
/* ==========================================
   BOTÕES ESPECIAIS (PERFIL E ONBOARDING)
========================================== */

/* Botão de Trocar Perfil (Azul com elevação) */
.btn-trocar-perfil {
    width: 100%;
    margin: 20px 0 15px 0;
    background: #ffffff;
    color: #2b3990;
    border: 2px solid #2b3990;
    padding: 14px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(43, 57, 144, 0.05);
}
.btn-trocar-perfil:hover {
    background: #eef2ff;
    transform: translateY(-3px); /* Levanta o botão */
    box-shadow: 0 6px 12px rgba(43, 57, 144, 0.15);
}
.btn-trocar-perfil:active {
    transform: translateY(0); /* Afunda ao clicar */
}

/* Botão de Sair da Conta (Vermelho suave) */
.btn-sair-conta {
    width: 100%;
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
    padding: 14px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-sair-conta:hover {
    background: #fca5a5;
    color: #991b1b;
    border-color: #fca5a5;
    transform: translateY(-2px);
}
.btn-sair-conta:active {
    transform: translateY(0);
}

/* Botão de Cancelar (Cinza elegante) */
.btn-cancelar-acao {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    font-size: 14px;
    margin-top: 10px;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cancelar-acao:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}
/* Variante para botões de perigo discreto */
.btn-perigo-discreto {
    background: transparent;
    color: #dc2626;
    border: 1px solid #fee2e2;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-perigo-discreto:hover {
    background: #fff1f2;
    border-color: #fecaca;
}
