﻿RESET E REMOÇÃO DE SCROLL
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: url("fundo.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 420px;
  margin: 0 auto;
  padding: 15px;
}

/* TOPBAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
}

.icon-button {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.top-icon.material-symbols-outlined {
  font-size: 20px;
}

.menu-lines {
  width: 18px;
  height: 2px;
  background: white;
  box-shadow: 0 6px 0 white, 0 -6px 0 white;
}

.menu-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #78ff6e;
  border-radius: 50%;
  border: 1.5px solid rgba(226, 32, 58, 1);
}

/* BRAND */
.brand {
  text-align: center;
  margin: 15px 0 25px;
}

.brand-logo-img {
  width: 160px;
  filter: brightness(0) invert(1);
}

/* CARD */
.login-card {
  background: transparent;
  /* backdrop-filter: blur(15px); */
  /* -webkit-backdrop-filter: blur(15px); */
  border: none;
  box-shadow: none;
  /* border-radius: 25px; */
  /* padding: 20px; */
  color: white;
}

.progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.progress-bar {
  height: 100%;
  width: 33%;
  background: white;
  transition: 0.3s;
}

.step { display: none; 
  background: transparent;
  border: none;
  box-shadow: none;
  width: 100%;

}
.step.active { display: block; }

h1 { font-size: 24px; margin: 0; }
.subtitle { font-size: 14px; margin: 8px 0 20px; opacity: 0.9; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 12px; opacity: 0.8; margin-bottom: 5px; }
.input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 8px 0;
  outline: none;
  font-size: 16px;
}

/* TECLADO */
.keyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 15px;
}

.keyboard button, .step-actions button {
  padding: 12px;
  border-radius: 15px;
  border: none;
  font-weight: bold;
}

.keyboard button { background: white; color: #e2203a; font-size: 18px; }
.step-actions button { background: white; color: #e2203a; width: 100%; margin-top: 10px; }
.button-secondary { background: rgba(255,255,255,0.2) !important; color: white !important; }

/* NAV INFERIOR */
.bottom-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 10px 0;
}

.bottom-link {
  flex: 1;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.bottom-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.bottom-icon.material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: 'wght' 300, 'FILL' 0;
}

.pix-image-file {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.bottom-label {
  font-size: 12px;
  text-align: center;
}

/* Container para alinhar a imagem de ícones */
.container-icones-fixo {
  width: 100%;
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;    /* Centraliza verticalmente */
  margin-top: 30px;       /* Dá um espaço do botão acima */
  background: transparent !important; /* Garante que não haja fundo branco */
}

/* Estilo para a imagem inteira dos ícones */
.imagem-icones-inteira {
  max-width: 100%;       /* Impede que a imagem passe do tamanho da tela */
  height: auto;          /* Mantém a proporção */
  display: block;
  opacity: 0.9;          /* Deixa levemente transparente para misturar com o fundo */
  
  /* Remove qualquer borda ou fundo que o navegador possa colocar */
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Fundo escuro atrás do modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Escurece o fundo */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Garante que fique acima de tudo */
}

/* Caixa de mensagem branca */
.modal-content {
  background: white;
  width: 90%;
  max-width: 350px;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #333;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.modal-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Botão rosa dentro do modal */
.modal-content button {
  background: #cc092f;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}