/* ===============================
   iAccess Tool – Public Website
   =============================== */

:root {
  --bg-dark: #2B2B2B;
  --primary: #0A4DBF;
  --accent: #FF7A18;
  --text: #FFFFFF;
  --text-muted: #6E6E6E;
  --hover: #1FA2FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  background: radial-gradient(circle at top, #343434, var(--bg-dark));
  color: var(--text);
}

/* ===============================
   HEADER
   =============================== */

header.top {
  background: linear-gradient(90deg, #1e1e1e, #252525);
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 26px;
  font-weight: 900;
}

.logo span {
  color: var(--hover);
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

/* ===============================
   SEÇÃO PRINCIPAL
   =============================== */

.page {
  padding: 90px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.page h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}

.page p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 35px;
}

/* ===============================
   BOTÕES
   =============================== */

.btn {
  background: linear-gradient(135deg, var(--primary), var(--hover));
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(10,77,191,0.45);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.big {
  background: linear-gradient(135deg, #ff7a18, #ff9a3d);
  box-shadow: 0 10px 30px rgba(255,122,24,0.5);
}

/* ===============================
   CARDS
   =============================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: linear-gradient(180deg, #353535, #2c2c2c);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===============================
   FOOTER
   =============================== */

footer {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 80px;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {
  header.top {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  .page h2 {
    font-size: 28px;
  }
}
/* ===============================
   SELO REVENDEDOR OFICIAL
   =============================== */

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #0A4DBF, #1FA2FF);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  box-shadow: 0 6px 15px rgba(10,77,191,0.4);
}
/* ===============================
   ALINHAMENTO CARD REVENDEDOR
   =============================== */

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card img {
  margin-bottom: 12px;
}

.badge {
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 6px;
}

.card .btn {
  margin-top: 10px;
}
/* ===============================
   DOWNLOAD – LAYOUT CENTRAL
   =============================== */

.download-text {
  margin-bottom: 35px;
}

.download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.download-img {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
/* ===============================
   FIX ALINHAMENTO DOWNLOAD
   =============================== */

.download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.download-img {
  display: block;
  margin: 0 auto;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ===============================
   HOVER NA IMAGEM DE DOWNLOAD
   =============================== */

.download-img {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.download-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0,0,0,0.75);
  filter: brightness(1.08);
}
/* ===== CORES DE TEXTO ===== */
.text-primary {
  color: #1FA2FF; /* azul claro */
}

.text-accent {
  color: #FF7A18; /* laranja destaque */
}

.text-brand {
  color: #0A4DBF; /* azul principal */
}

.text-muted {
  color: #6E6E6E; /* texto secundário */
}
/* ===== COR DO TEXTO PRINCIPAL ===== */
body p, 
body ul, 
body li {
  color: #1FA2FF; /* azul para todo o texto do corpo */
}

/* Títulos e subtítulos mantêm suas cores */
h2, h3 {
  color: #FFFFFF; /* branco */
}
/* ===== TEXTO AZUL PARA TODO O CORPO ===== */
body p, 
body ul, 
body li {
  color: #1FA2FF; /* azul para parágrafos e listas */
}

/* Títulos/subtítulos mantêm branco */
h2, h3 {
  color: #FFFFFF;
}
/* ===== CARDS MELHORADOS ===== */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1B1B1B;
  border-radius: 15px;
  padding: 20px;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  text-align: center;
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.7);
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* ===== BOTÃO DOWNLOAD ===== */
.download-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #FF7A18;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.download-btn:hover {
  background: #1FA2FF;
  transform: translateY(-3px);
}

/* ===== TIPOGRAFIA ===== */
p, ul, li {
  color: #1FA2FF;
  font-size: 16px;
  line-height: 1.6;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0A4DBF, #1FA2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  color: #FFFFFF;
}

/* ===== RESPONSIVO ===== */
@media(max-width:768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav a {
    margin: 10px 10px 0 0;
  }
}
.download-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza imagem e botão */
  gap: 20px; /* espaço entre imagem e botão */
  margin-top: 30px;
}

.download-img {
  width: 200px;
  max-width: 80%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.download-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.download-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #FF7A18;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.download-btn:hover {
  background: #1FA2FF;
  transform: translateY(-3px);
}

.selo {
  display: inline-block;
  margin-left: 10px;
  color: #0A4DBF;
  font-weight: bold;
}
