/* Estilos específicos da página inicial (extraídos do index.html) */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: var(--text-color);
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  margin: 0 10px;
  color: var(--primary-color);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.8rem;
  color: #777;
}

@media (max-width: 768px) {
  #go-button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Seções de conteúdo (SEO) */
.content {
  text-align: left;
}

.content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
}

.faq details:last-child {
  border-bottom: none;
}

.faq summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--text-color);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--text-color);
}
