body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: #333;
  background-color: #f9f9f9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a4365;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #3182ce;
  margin: 2.5rem 0 1.5rem;
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #3182ce;
  margin: 0.8rem auto 0;
  opacity: 0.3;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 3rem 0 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
}

.contact-info {
  background: #f0f7ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #3182ce;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #2c5282;
}

.disclaimer {
  margin-top: 400px;
  font-size: 0.9rem;
  color: #718096;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Efeitos Visuais */
a {
  color: #3182ce;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* Animação sutil para interações */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
}
