body {
  font-family: "PowerGrotesk", sans-serif;
  background-color: var(--new-color-bg);
  color: var(--new-color-ft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus-visible {
  color: var(--obsidian-gray-deep);
}

.container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-alt {
  width: clamp(3.5rem, 7vw + 1rem, 6rem);
  height: auto;
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

p {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.5;
  margin: 0;
}

.contact {
  border-top: 1px solid var(--warm-alabaster-soft, rgba(255, 255, 255, 0.1));
  width: 100%;
  display: flex;
  flex-direction: column; /* Padrão mobile: empilhado */
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  margin-top: 1rem;
  gap: 1.5rem;
  font-size: 1.125rem;
  opacity: 0.85;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact a:hover {
  color: var(--warm-sand-hover);
}

.contact a svg {
  color: var(--brand-warm-sand);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact {
    flex-direction: row;
    justify-content: space-between;
  }
}
