:root {
  --green-primary: #10b981;
  --green-dark: #059669;
  --text-dark: #1f2937;
  --text-light: #4b5563;
  --bg-color: #ffffff;
  --bg-gray: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navegação */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--green-primary);
  text-decoration: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green-primary);
}

.lang-btn {
  border: 1px solid var(--text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Conteúdo Principal */
main {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

/* Botões das Lojas */
.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn {
  background-color: var(--green-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: var(--green-dark);
}

/* Listas */
ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-light);
}

ul li {
  margin-bottom: 0.5rem;
}

/* Alerta */
.alert {
  background-color: var(--bg-gray);
  border-left: 4px solid var(--green-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  background-color: var(--bg-gray);
  color: var(--text-light);
}

footer a {
  color: var(--green-primary);
  text-decoration: none;
}



.logoRow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.logoImg{
  height:42px;
  width:auto;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.logoTitle{
  font-weight:850;
  font-size:18px;
}
.logoSub{
  color:var(--muted);
  font-size:13px;
  font-weight:650;
}

