:root {
  --primary-color: #2cc0c0;
}

*,
*::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(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
}

.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;
  max-width: 100vw;
}

.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: var(--primary-color);
}

.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;
}

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

.logo {
  height: 3.5rem;
  width: auto;
}

.logo-semed {
  height: 3.25rem;
}

.logo-prodam {
  margin-top: 12px;
  height: 1.5rem;
}

.logo-semed {
  margin-top: 8px;
}

.illustration {
  display: flex;
  justify-content: center;
  background-color: hsl(0, 0%, 100%);
  position: relative;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
}

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

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

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

  .illustration {
    display: none;
  }

  .logo {
    height: 2.5rem;
    width: auto;
  }

  .logo-semed {
    height: 2rem;
  }

  .logo-prodam {
    height: 1rem;
    margin-top: 8px;
  }

  h1, .highlight {
    font-size: 3rem;
  }
}
