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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #0D1347 0%, #1a2570 50%, #0D1347 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

/* LOGO */
.header {
  margin-bottom: 48px;
}

.logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* TÍTULO */
.title-section {
  margin-bottom: 40px;
}

.title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.title .slash {
  color: #FF5520;
  margin-right: 6px;
}

.divider {
  width: 48px;
  height: 3px;
  background: #FF5520;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 340px;
  margin: 0 auto;
}

.description .highlight {
  color: #FF5520;
  font-weight: 700;
}

/* BOTÕES */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.link-button {
  background: rgba(255, 255, 255, 0.98);
  color: #0D1347;
  padding: 20px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.link-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #FF5520;
  transform: translateX(-4px);
  transition: transform 0.25s ease;
}

.link-button:hover {
  transform: translateY(-2px);
  border-color: #FF5520;
  box-shadow: 0 12px 28px rgba(255, 85, 32, 0.25);
}

.link-button:hover::before {
  transform: translateX(0);
}

.link-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-left: 4px;
}

.link-title {
  font-size: 15px;
  font-weight: 700;
  color: #0D1347;
  margin-bottom: 4px;
}

.link-subtitle {
  font-size: 11px;
  color: #FF5520;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.link-arrow {
  color: #FF5520;
  font-size: 22px;
  font-weight: 600;
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.link-button:hover .link-arrow {
  transform: translateX(6px);
}

/* FOOTER */
.footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.footer .accent {
  color: #FF5520;
  font-weight: 700;
  margin: 0 6px;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .title {
    font-size: 26px;
  }
  .description {
    font-size: 14px;
  }
  .logo-img {
    max-width: 260px;
  }
  .link-button {
    padding: 18px 20px;
  }
}

/* ANIMAÇÕES DE ENTRADA */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.header,
.title-section,
.links .link-button,
.footer {
  opacity: 0;
  animation: fade-up 0.7s ease-out forwards;
}

.header                          { animation-delay: 0.05s; }
.title-section                   { animation-delay: 0.25s; }
.links .link-button:nth-child(1) { animation-delay: 0.45s; }
.links .link-button:nth-child(2) { animation-delay: 0.6s; }
.footer                          { animation: fade-in 0.8s ease-out 0.85s forwards; }

@media (prefers-reduced-motion: reduce) {
  .header,
  .title-section,
  .links .link-button,
  .footer {
    opacity: 1;
    animation: none;
  }
}
