/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #0f1825, #1b2838);
  color: #f4f4f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
}

/* Botão estilizado */
.btn-login {
    background: linear-gradient(90deg, #1e90ff, #00bfff);
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 0 12px rgba(30, 144, 255, 0.6);
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.btn-login:hover {
    background: linear-gradient(90deg, #00bfff, #1e90ff);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.9);
}
/* Logo */
header img {
  width: 180px;
  max-width: 90%;
  margin: 20px auto;
  display: block;
}

.crypto-adz-login {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;      /* Centraliza verticalmente (se tiver altura definida) */
}

.crypto-adz-login img {
    width: 150px;
    margin-bottom: 10px;
}
/* Texto do topo */
header p {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Conteúdo principal */
main {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

main h2 {
  font-size: 1.5rem;
  color: #4FC3F7;
  margin-bottom: 15px;
}

main p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 25px;
}

/* Botão principal */
.btn {
  display: inline-block;
  background-color: #3182ce;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: #2b6cb0;
  border: 2px solid #63b3ed;
}

/* Estatísticas */
.dashboard-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  max-width: 800px;
  width: 100%;
}

.dashboard-stats div {
  background-color: #1e2733;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  min-width: 150px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f4f4f4;
}

.dashboard-stats i {
  color: #f6ad55;
  margin-right: 8px;
}

/* Botão de pagamentos */
a[href*="pagamentos.html"] {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #4A90E2;
  border: 2px solid #4A90E2;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

a[href*="pagamentos.html"]:hover {
  background-color: #4A90E2;
  color: #fff;
}



/* Publicidade responsiva */
.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

.ad-container iframe {
  border: none;
  display: block;
}

/* Responsividade */
@media (max-width: 600px) {
  main {
    padding: 20px;
  }

  main h2 {
    font-size: 1.2rem;
  }

  main p {
    font-size: 0.9rem;
  }

  .dashboard-stats {
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-stats div {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}


.dashboard-stats .dgb-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}

.dashboard-stats .doge-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}



.dashboard-stats .trx-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}

.dashboard-stats .token-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}

/* Ícone do usdt*/
.dashboard-stats .usdt-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}

/* Container dos banners */
.banners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;      /* permite quebrar linha em telas menores */
  gap: 30px;            /* espaçamento entre os banners */
  margin: 90px 0;
}

/* Estilo dos iframes */
.banners-container iframe {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito hover */
.banners-container iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
}

/* Responsivo */
@media (max-width: 1000px) {
  .banners-container {
    gap: 15px;
  }
}

@media (max-width: 700px) {
  .banners-container {
    flex-direction: column; /* empilha os banners no celular */
  }

  .banners-container iframe {
    width: 300px;
    height: 250px;
  }
}


.payment-info {
  background: linear-gradient(135deg, #1e2733, #141a21);
  border: 2px solid #4A90E2;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  margin: 40px auto;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.payment-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(74, 144, 226, 0.4);
}

.payment-info h3 {
  color: #66fcf1;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.payment-info p {
  font-size: 1rem;
  color: #cfd8dc;
  margin-top: 10px;
}

.payment-info .metamask {
  color: #ff9800;
  font-weight: bold;
}

.payment-info .usdt {
  color: #27ae60;
  font-weight: bold;
}

/* Animação "Em breve" */
.payment-info .soon {
  color: #4A90E2;
  font-style: italic;
  margin-top: 10px;
  font-size: 0.95rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Botão “Últimos Pagamentos” */
.btn-pagamentos {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #4A90E2;
  padding: 10px 25px;
  border: 2px solid #4A90E2;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-pagamentos:hover {
  background-color: #4A90E2;
  color: #fff;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Responsivo */
@media (max-width: 480px) {
  .payment-info {
    width: 90%;
    padding: 18px;
  }

  .payment-info h3 {
    font-size: 1.2rem;
  }
}

.cashback-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #00ffc8, #00ccaa);
    color: #0a0a0a;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.35);
}

.cashback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 255, 204, 0.55);
}


