/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS PARA PALETA PREMIUM */
:root {
  --primary-bg: #ffffff; /* Branco puro para fundo */
  --secondary-bg: #f8f9fa; /* Cinza muito claro para seções alternadas */
  --accent-bg: #000000; /* Preto para hero e footer */
  --text-primary: #111111; /* Preto quase puro para texto principal */
  --text-secondary: #666666; /* Cinza médio para texto secundário */
  --text-muted: #999999; /* Cinza claro para detalhes */
  --border-color: #e5e5e5; /* Bordas sutis */
  --shadow-light: rgba(0, 0, 0, 0.05); /* Sombras leves */
  --shadow-medium: rgba(0, 0, 0, 0.1); /* Sombras médias */
  --accent-blue: #1a365d; /* Azul escuro para acentos premium */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Transições suaves */
}

/* BASE */
body {
  font-family: "poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px; /* Aumentado para mais espaço premium */
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: var(--primary-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Aumentado para mais presença */
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Espaço entre imagem e texto */
  font-size: 24px; /* Levemente maior para impacto */
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo img {
  height: 40px; /* Ajuste conforme o tamanho da sua logo */
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 32px; /* Mais espaço entre links */
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--accent-blue);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--accent-blue);
  transform: translateY(-1px); /* Efeito sutil de elevação */
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--accent-bg) 0%, #1a1a1a 50%, #333333 100%); /* Gradiente mais dinâmico e premium */
  color: var(--primary-bg);
  padding: 120px 0; /* Mais espaço para impacto */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.02); /* Overlay sutil para profundidade */
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 48px; /* Maior para destaque */
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 20px;
  color: #e2e8f0; /* Cinza claro para contraste */
  max-width: 600px;
}

/* SECTIONS */
.section {
  padding: 100px 0; /* Mais espaço para elegância */
}

.section-alt {
  background: var(--secondary-bg);
}

.section h3 {
  font-size: 32px; /* Maior para hierarquia */
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-align: center; /* Centralizado para simetria */
}

/* POLICY */
.policy .card {
  background: var(--primary-bg);
  border-radius: 16px; /* Bordas mais arredondadas */
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.policy .card:hover {
  transform: translateY(-4px); /* Efeito de elevação no hover */
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.policy h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-blue);
}

.policy p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.update {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* CONTACT */
.contact-email {
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-blue);
}

/* FOOTER */
.footer {
  background: var(--accent-bg);
  color: var(--primary-bg);
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  border-top: 1px solid var(--border-color);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .header-content {
    height: 60px;
    padding: 0 10px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo img {
    height: 32px;
  }
  
  .nav a {
    margin-left: 16px;
    font-size: 14px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h2 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h3 {
    font-size: 28px;
  }
  
  .policy .card {
    padding: 24px;
  }
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
