/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.content {
  background-color: white;
  padding: 2rem;
  gap: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 4rem;
  font-weight: normal;
  color: black;
}

.highlight {
  font-size: 4rem;
  font-weight: 700;
  color: #2f00a3;
}

.links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 1rem;
  text-decoration: none;
  color: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Adicionando transição suave ao box-shadow */
}

.link-item:hover {
  background-color: #fbfbfb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-text {
  font-weight: normal;
}

.link-bold {
  font-weight: bold;
}

.icon {
}

.logos {
  margin: 2rem 0rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.logo {
  height: 3rem;
}

.illustration {
  display: flex;
  justify-content: center;
  background-color: hsl(var(--secondary));
  position: relative;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #664998;
  background-image: url("/assets/background.png");
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 80%;
  min-width: 250px;
  position: relative;
  z-index: 2;
  margin: 0rem 0rem -8rem -8rem;
}

.illustration-image {
  max-width: 80%;
  height: auto;
  position: relative;
  z-index: 3;
}

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

  .illustration {
    display: none;
  }
}
