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

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #4F4F4F;
  font-weight: 500;
}

prosas-menu-superior::part(global-container) {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  color-scheme: light;
  font-family: "Roboto", Helvetica, Arial, sans-serif;

  --primary-blue: #056EA7;
  --primary-red: #9b2e2e;
}

body {
  background-color: #F2F2F2;
  min-height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;

  p {
    color: #525252;
  }
}

.prosas-button {
  display: block;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary-blue);
  cursor: pointer;
  letter-spacing: 1px;

  &:hover {
    transform: translateY(-1px);
  }

  &:active {
    transform: translateY(0);
  }
}

.card {
  background: white;
  border-radius: 8px;
  max-width: 1200px;
  padding: 3rem 4rem;

  margin: auto;
  display: flex;
  gap: .5rem;

  & > div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    & > a {
      text-decoration: none;
      margin-right: auto;
      padding: 0.75rem 3.5rem;
    }

    svg {
      margin-bottom: -4px;
    }
  }
}

#logo_prosas {
  width: 114px;
  height: auto;
}