/* Estilização adicional para complementar Tailwind CSS */
body {
  font-family: 'Arial', sans-serif;
}

header img {
  max-width: 100%;
  height: auto;
}

main a {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}

details summary {
  outline: none;
  display: flex;
  align-items: center;
}

details p {
  line-height: 1.5;
}

iframe, .instagram-media {
  border-radius: 8px;
}

#language-selector {
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.logo {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 640px) {
  main a {
    font-size: 1rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .logo {
    max-width: 40px;
    max-height: 40px;
  }

  #language-selector {
    top: 2rem;
    right: 1rem;
    font-size: 0.8rem;
  }
}