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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a2e 0%, #1a4a6b 50%, #2a806c 100%);
  min-height: 100vh;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  margin-bottom: 4rem;
}

.logo {
  margin-bottom: 2rem;
}

.logo-image {
  max-width: 350px;
  height: auto;
}

.tagline {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 1rem;
  color: white;
}

.banner-loja {
  text-align: center;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-loja img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

main {
  flex: 1;
  margin-bottom: 2rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.link-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.arrow {
  font-size: 1.2rem;
}

.footer {
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-separator {
    display: none;
  }

  .banner-loja {
    margin-top: 0.5rem;
  }
}