:root {
  --background: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #eaeaea;
}

/* Base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
}

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

/* Header styles */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero section */
.hero {
  padding: 6rem 0 8rem;
  text-align: center;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.gradient-text {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.gradient-text span {
  color: var(--text);
}

.hero-subtitle {
  max-width: 42rem;
  margin: 1.5rem auto;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Features section */
.features {
  padding: 4rem 0;
  text-align: center;
}

.features h2 {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 1.5rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Science section */
.science-section {
  background: #f8f8f8;
  padding: 6rem 0;
}

.science-header {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

/* Research quote */
.research-quote {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
}

/* Download section */
.download-section {
  text-align: center;
  padding: 6rem 0;
}

.download-section h2 {
  margin-bottom: 1rem;
}

.download-section p {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .gradient-text {
    font-size: 2.25rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 1.5rem;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Privacy Policy page specific styles */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-policy .logo-container {
  margin-bottom: 2rem;
}

.privacy-policy .logo-container img {
  width: 32px;
  height: 32px;
}

.privacy-policy h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.privacy-policy h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.privacy-policy p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy-policy ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-policy li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 1.5rem;
  }
}

/* Contact links in privacy policy */
.privacy-policy .back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-policy .back-link:hover {
  color: var(--text);
}

/* Separar visualmente os links de contato */
.privacy-policy .contact-links {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
