* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;

  font-size: 2vh;
}

:root {
  --text-light: #fffffe;

  --background: linear-gradient(90deg, #213445 0%, #2A5D7F 69.9%, #3896D0 100.85%);

  --family-normal: 'Poppins', sans-serif;
  --family-bold: 'Poppins', sans-serif;
}

:where(html) {
  block-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  @media (prefers-reduced-motion: no-preference) {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(:focus-visible) {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active):focus-visible) {
    transition-duration: 0.25s;
  }
}

:where(:not(:active):focus-visible) {
  outline-offset: 5px;
}

:where(body) {
  background: var(--background);
}

:where(body, button, textarea, input) {
  color: var(--text-light);
  font: 400 1rem var(--family-normal);
}

:where(h1, h2, h3, h4, h5, h6, strong, b) {
  font-weight: 600;
}

:where(a[href], area, button, label[for], summary, [tabindex]:not([tabindex*='-'])) {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  background: transparent;
}

#app {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 3.125rem 0;
}

header .logo {
  width: 21.875rem;
  height: 9.375rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo img {
  width: 100%;
}

main {
  background-color: #F1F8FF;
  border-top-left-radius: 15.625rem;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5rem 0;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.25rem;
  height: 100%;
}

.renovacao h4 {
  font-family: 'Donegal One', serif;
  font-size: 1.606rem;
  color: #535353;
}

.renovacao h1 {
  color: #FA6E68;
  font-size: 3.063rem;
}

.renovacao button {
  background-color: #535353;
  font-size: 1.125rem;
  padding: 0.313rem 1.563rem;
  border-radius: 0.313rem;
  margin-top: 2.188rem;
}

.imagem {
  height: 48vh;
  width: 40vh;
}

.imagem img {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #F1F8FF;
  width: 25rem;
  color: black;
  overflow-y: scroll;
  border-left: 1px solid #717171;

  display: none;
}

.modal_title {
  color: #4189C9;
  border-bottom: 1px solid #717171;
  padding: 1.625rem 0;
  display: flex;
  justify-content: center;
  font-size: 1.563rem;
  font-weight: bold;
}

.sections section {
  padding: 1.875rem;
  border-bottom: 1px solid #D9D9D9;
}

.sections section h3 {
  font-size: 1.063rem;
  font-weight: 500;
}

.sections section h4 {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5B5B5B;
}

.sections section h5 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin-top: 2rem;
}

.sections section p {
  font-size: 0.75rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.sections section .setores span {
  color: #4189C9;
  font-weight: 800;
}

.sections section .setores p {
  color: #5B5B5B;
}

.sections section .setores b {
  color: #000;
}

.blur {
  filter: blur(5px);
}

.active {
  display: inherit;
}

.fechar {
  position: absolute;
  top: 0rem;
  left: 1.25rem;
}

.fechar:hover {
  cursor: pointer;
}

@media screen and (min-width: 320px) and (max-width: 796px) {
  .logo {
    padding: 1.25rem;
  }

  .main {
    flex-wrap: wrap;
  }

  .renovacao {
    text-align: center;
  }

  main {
    border-top-left-radius: 0;
  }

  .modal {
    width: 100%;
  }

  .modal p {
    word-break: break-all;
  }

}

@media screen and (max-width: 743px) {
  main {
    border-top-left-radius: 0;
  }

  .main {
    flex-wrap: wrap;
  }

  .renovacao {
    text-align: center;
    padding: 1rem;
  }

  .imagem {
    display: none;
  }

}