/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #2b0000 0, #050505 55%, #000 100%);
  color: #dadada;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.background-galaxy {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.12) 0,
      transparent 40%
    ),
    radial-gradient(circle at 80% 15%, rgba(255, 0, 0, 0.16) 0, transparent 50%),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.09) 0,
      transparent 45%
    );
  background-color: #000;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.background-galaxy::before,
.background-galaxy::after {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0 2px,
    transparent 3px
  );
  background-size: 160px 160px;
  opacity: 0.35;
  animation: galaxy-drift 55s linear infinite;
}

.background-galaxy::after {
  background-size: 220px 220px;
  opacity: 0.25;
  animation-duration: 75s;
  animation-direction: reverse;
}

@keyframes galaxy-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-60px, -40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.container {
  width: 100%;
  max-width: 600px;
  background: radial-gradient(circle at top, #1a0000 0, #050505 55%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 1;
}

/* Header & Logo */
.header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
    url("./img/fundo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  padding: 10px 0 0 0;
  width: 100%;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-container {
  margin-top: 30px;
  width: 160px;
  height: 160px;
  /* margin-bottom: 15px; */
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
  }
}

.header-texts {
  width: 100%;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.03)
  );
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  padding: 4px 0;
  color: #fff;
  /* margin-bottom: 5px; */
}

.tagline {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Buttons - Mimicking the reference "Image Button" look with CSS */
.links-container {
  width: 100%;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.links-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.16) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 0, 0, 0.24) 0,
      transparent 55%
    );
  opacity: 0.6;
  filter: blur(22px);
  z-index: -1;
  animation: links-glow 12s ease-in-out infinite alternate;
}

@keyframes links-glow {
  0% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-4px);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
}

.modern-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s;
  text-transform: uppercase;
}

.modern-button:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
  border-color: #555;
}

.img-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 16 / 9;
  /* background-color: #151515;
    background-image: linear-gradient(to bottom, #222, #111);
    border: 1px solid #333; */
  /* border-radius: 6px; */
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.icon-wrapper {
  /* margin-right: 12px; */
  display: flex;
  object-fit: cover;
  font-size: 20px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  text-align: center;
  width: 100%;
  background-color: #000;
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  gap: 2rem;
  padding: 30px 0;
}

.hours-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hour-item {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-info {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
}

.company-name {
  color: #dadada;
  font-weight: 400;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.footer-contacts a {
  color: #dadada;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-contacts a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .links-container {
    padding: 10px 8px;
    gap: 1.4rem;
  }

  .img-links {
    width: 100%;
    max-width: 360px;
  }

  .icon-wrapper {
    border-radius: 8px;
  }
}
