*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: #f5f5f5;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Pontos 1px, malha 6px (1px + margem 5px entre centros) */
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(65, 46, 35, 0.6);
  background-image: radial-gradient(
    circle at center,
    #412e23 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  background-repeat: repeat;
}

.content {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  gap: clamp(2rem, 5vw, 3.5rem);
}

.content__logo-wrap {
  animation: logo-float 5.5s ease-in-out infinite;
  will-change: transform;
}

.content__logo {
  width: min(72vw, 420px);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.content__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.contact-link__icon {
  display: flex;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.contact-link__icon svg {
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .content__logo-wrap {
    animation: none;
  }

  .contact-link {
    transition: none;
  }

  .contact-link:hover {
    transform: none;
  }
}
