:root {
  --cream:      #F6F1E9;
  --dark:       #16120E;
  --gold:       #E64A26;
  --gold-light: #E8C07A;
  --rose:       #C9848A;
  --muted:      #7A6E65;
  --light-bg:   #EDE8DF;
  --white:      #FEFCF8;
  --promo-red:  #932B2B;
  --promo-soft: #F9EAEA;
  --border:     rgba(22, 18, 14, 0.10);
  --sombra-p:   0 2px 12px rgba(22,18,14,0.08);
  --sombra-m:   0 8px 32px rgba(22,18,14,0.13);
  --sombra-g:   0 20px 60px rgba(22,18,14,0.18);
  --transicao:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

input, button, select, textarea { font-family: inherit; }

/* Playfair Display */
.logo, .hero-fundo, .hero-titulo, .numero-valor, .secao-titulo,
.faixa-fundo, .faixa-titulo, .desconto-valor, .desconto-sinal,
.produto-nome, .vazio p, .modal-titulo, .codigo-valor,
.modal-preco-atual, .login-fundo, .login-slogan, .login-titulo {
  font-family: 'Playfair Display', serif;
}

/* Itálico dourado */
.logo em, .hero-titulo em, .faixa-titulo em, .login-slogan em {
  font-style: italic;
  color: var(--gold);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* =============================================
   NAVBAR
   ============================================= */
#mainNavbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 149, 76, 0.25);
  padding: 0;
  min-height: 64px;
  z-index: 1050;
}

.logo {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--cream) !important;
  text-decoration: none;
  line-height: 1;
}

.navbar-toggler {
  border-color: rgba(201,149,76,0.4);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,149,76,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.aba {
  background: none;
  border: none;
  color: rgba(246, 241, 233, 0.55);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 22px 16px;
  cursor: pointer;
  position: relative;
  transition: color var(--transicao);
  white-space: nowrap;
}
.aba::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transicao);
}
.aba:hover,
.aba.active { color: var(--cream); }
.aba.active::after,
.aba:hover::after { transform: scaleX(1); }

.aba-promo { color: var(--rose); }
.aba-promo::after { display: none; }
.aba-promo:hover,
.aba-promo.active {
  color: #fff;
  background: var(--promo-red);
  border-radius: 4px;
}

.carrinho {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid rgba(201,149,76,0.3);
  border-radius: 100px;
  transition: border-color var(--transicao);
  line-height: 1;
}
.carrinho:hover { border-color: var(--gold); }
.carrinho span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero-fundo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.12em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.min-vh-40 { min-height: 40vh; }

.hero-selo {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,149,76,0.4);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-titulo {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-descricao {
  color: rgba(246,241,233,0.45);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.numeros { padding-top: 6px; }
.numero {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.numero-valor {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.numero-label {
  font-size: 0.72rem;
  color: rgba(246,241,233,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.numero-linha {
  width: 1px;
  height: 36px;
  background: rgba(201,149,76,0.25);
  align-self: center;
}

.hero-pilha {
  position: relative;
  width: 220px;
  height: 280px;
}
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-radius: 12px;
  width: 130px;
  height: 170px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,149,76,0.2);
  backdrop-filter: blur(4px);
}
.card-1 { top: 0; right: 0; z-index: 3; background: rgba(201,149,76,0.08); --fy: -10px; animation: flutuar 4s ease-in-out infinite; }
.card-2 { top: 60px; right: 70px; z-index: 2; --fy: -7px; animation: flutuar 4s ease-in-out infinite 0.8s; }
.card-3 { top: 110px; right: 20px; z-index: 1; --fy: -12px; animation: flutuar 4s ease-in-out infinite 1.6s; }

@keyframes flutuar { 0%,100%{transform:translateY(0)} 50%{transform:translateY(var(--fy))} }

[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate].animated { opacity: 1; transform: none; }

/* =============================================
   FILTROS
   ============================================= */
.filtros {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--sombra-p);
  z-index: 1040;
  position: sticky;
  top: 64px;
}

.filtro-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.btn-filtro {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transicao);
  letter-spacing: 0.02em;
}
.btn-filtro:hover { border-color: var(--gold); color: var(--gold); }
.btn-filtro.active,
.tamanho.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

.filtro-linha {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.preco-wrap { display: flex; align-items: center; }
.preco-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 130px;
  height: 3px;
  background: linear-gradient(to right, var(--gold) var(--pct, 100%), rgba(22,18,14,0.15) var(--pct, 100%));
  outline: none;
  border-radius: 3px;
  cursor: pointer;
}
.preco-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}
.preco-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  cursor: pointer;
}
.preco-texto {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 90px;
}

.ordenar {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transicao);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A6E65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.ordenar:focus { border-color: var(--gold); }

/* =============================================
   SEÇÕES
   ============================================= */
.conteudo { padding-top: 10px; }

.secao { display: none; padding: 40px 0 70px; }
.secao.active { display: block; }

.secao-topo {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.secao-titulo {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--dark);
}
.secao-subtitulo {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}
.contagem {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}

/* =============================================
   FAIXA DE PROMOÇÃO
   ============================================= */
.faixa-promo {
  background: var(--dark);
  border-radius: 10px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.faixa-fundo {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(255,255,255,0.04);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.faixa-selo {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid rgba(201,132,138,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.faixa-titulo {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 10px;
}
.faixa-sub {
  color: rgba(246,241,233,0.45);
  font-size: 0.88rem;
  margin: 0;
}
.promo-numero {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--gold);
}
.desconto-valor {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}
.desconto-sinal {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  padding-top: 8px;
  color: var(--gold-light);
}
.titulo-promo { color: var(--promo-red); }

/* =============================================
   CARDS DE PRODUTO
   ============================================= */
.produto {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transicao), box-shadow var(--transicao);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.produto:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-g);
  border-color: transparent;
}

.produto-foto {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--light-bg);
  overflow: hidden;
  flex-shrink: 0;
}
.produto-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(22,18,14,0.06) 100%);
}
.foto-produto {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selo-promo,
.selo-novo {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.selo-promo { background: var(--promo-red); color: #fff; }
.selo-novo  { background: var(--dark); color: var(--cream); }

.favorito {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(254,252,248,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  z-index: 1;
  transition: all var(--transicao);
  backdrop-filter: blur(4px);
}
.favorito:hover { background: #fff; color: var(--promo-red); transform: scale(1.1); }

.produto-corpo {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.produto-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.produto-nome {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
  flex-grow: 1;
  color: var(--dark);
}
.produto-preco {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.preco-atual {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.preco-antigo {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}
.preco-off {
  font-size: 0.7rem;
  background: var(--promo-red);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vazio {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.vazio-icone { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.vazio p { font-size: 1.3rem; color: var(--muted); margin: 0; }

/* =============================================
   MODAL DE PRODUTO
   ============================================= */
.modal-caixa {
  border-radius: 12px;
  border: none;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sombra-g);
  position: relative;
}

.fechar {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 36px;
  height: 36px;
  background: rgba(246,241,233,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transicao);
  backdrop-filter: blur(4px);
}
.fechar:hover { background: var(--cream); transform: scale(1.08); }

.modal-foto {
  min-height: 360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  background: var(--light-bg);
  position: relative;
}

.modal-corpo {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  max-height: 80vh;
}

.modal-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}
.modal-titulo {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--dark);
}

.codigo-box {
  background: var(--light-bg);
  border: 1px dashed rgba(22,18,14,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.codigo-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 4px;
}
.codigo-valor {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
}
.btn-copiar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transicao);
  flex-shrink: 0;
  line-height: 1;
}
.btn-copiar:hover { border-color: var(--gold); color: var(--gold); }
.btn-copiar.copied { border-color: #198754; color: #198754; }

.modal-preco { margin-bottom: 16px; }
.modal-preco-atual {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.modal-preco-antigo {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.modal-descricao {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.modal-tamanhos { margin-bottom: 16px; }
.tamanhos-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.tamanho {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  color: var(--dark);
  transition: all var(--transicao);
}
.tamanho:hover { border-color: var(--gold); color: var(--gold); }

.divisor { border-color: var(--border); margin: 16px 0; }

.diferenciais {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  flex: 1;
}
.diferencial i { font-size: 1.25rem; color: var(--gold); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transicao), transform 0.15s;
  margin-top: auto;
}
.btn-whatsapp:hover { background: #1db954; color: #fff; transform: scale(1.02); }
.icone-wa { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

#copyToast { border-radius: 8px; font-size: 0.88rem; }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .hero-titulo { font-size: 2.4rem; }
  .filtros { top: 78px; }
  #mainNavbar { min-height: 56px; }
  .aba { padding: 14px 12px; font-size: 0.72rem; }
  .faixa-promo { padding: 28px 24px; }
  .modal-corpo { padding: 24px 22px 28px; max-height: none; }
  .modal-foto { min-height: 240px; }
  .codigo-box { flex-wrap: wrap; }
}

@media (max-width: 576px) {
  .logo { font-size: 1.4rem; letter-spacing: 0.2em; }
  .hero-titulo { font-size: 2rem; }
  .secao-titulo { font-size: 1.8rem; }
  .faixa-titulo { font-size: 1.6rem; }
  .modal-titulo { font-size: 1.5rem; }
}

/* =============================================
   LOGIN
   ============================================= */
.pagina-login {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.login-caixa {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.login-painel {
  flex: 1;
  background: var(--dark);
  border-right: 1px solid rgba(201, 149, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-fundo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.login-painel-corpo {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.login-slogan {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-top: 24px;
  margin-bottom: 40px;
}

.login-pontos {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.login-pontos span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 149, 76, 0.35);
}
.login-pontos span:first-child { background: var(--gold); }

.login-lado-form {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

@media (max-width: 991px) {
  .login-lado-form { max-width: 100%; padding: 40px 24px; }
}

.login-form { width: 100%; max-width: 360px; }
.login-logo { text-align: center; }

.login-titulo {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.login-subtitulo {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.campo-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
}

.campo-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.campo-icone {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  z-index: 1;
}
.campo {
  width: 100%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 44px 13px 40px;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transicao), box-shadow var(--transicao);
}
.campo::placeholder { color: rgba(122, 110, 101, 0.5); }
.campo:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 149, 76, 0.12);
  background: var(--white);
}

.btn-senha {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transicao);
}
.btn-senha:hover { color: var(--gold); }

.link-esqueci {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transicao);
}
.link-esqueci:hover { color: var(--gold-light); }

.check {
  width: 17px;
  height: 17px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.check-label {
  font-size: 0.84rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.btn-entrar {
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transicao), transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-entrar:hover { background: #2c2520; transform: scale(1.01); }
.btn-entrar:active { transform: scale(0.99); }

.login-linha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.login-linha::before,
.login-linha::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.registro-texto {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.registro-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transicao);
}
.registro-link:hover { color: var(--gold-light); }

footer{
  background: var(--dark);
  font-size: clamp(7rem, 7vw, 7rem);

  color: rgba(255,255,255,0.03);
  letter-spacing: 0.12em;
}