/* ==========================================================================
   CSS Variables (Design System: Luxo Industrial) - Link Tree
   ========================================================================== */
:root {
  /* Colors */
  --color-dark: #1A1A1A;
  --color-black: #000000;
  --color-gray: #E0E0E0;
  --color-light: #FFFFFF;
  --color-yellow: #FFCE00;

  /* Typography */
  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background-image: radial-gradient(circle at 50% -20%, #333333 0%, var(--color-dark) 60%);
}

/* ==========================================================================
   Wrapper Container (Light Background Card)
   ========================================================================== */
.wrapper {
  background-color: var(--color-light);
  width: 100%;
  max-width: 480px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   Components
   ========================================================================== */
.logo-container {
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
}

.logo-container img {
  padding: 1.25rem 2rem;
  border-radius: 12px;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.logo-container h1 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 1.75rem;
  font-weight: 700;
  color: var(--color-black);
  /* Título em preto */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 1.15rem 1.5rem;
  background-color: var(--color-black);
  color: white;
  /* Texto do botão em preto */

  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.link-btn:hover {
  background-color: var(--color-dark);
  color: var(--color-yellow);
  border-color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-legal {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #666666;
  /* Texto legível no fundo claro */
  text-align: center;
  font-family: var(--font-body);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 480px) {
  .wrapper {
    padding: 2rem 1.5rem;
  }

  .logo-container img {
    max-width: 180px;
    padding: 1rem 1.5rem;
  }

  .logo-container h1 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .link-btn {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }
}

.light {
  font-weight: 200 !important;
}