<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&amp;display=swap");

:root {
  --main-color: #2f9fe9;
  --sec-color: #3c3c3c;
  --font: "Poppins", sans-serif;
}

/* Reset simples */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root font size */
html {
  font-size: 16px;
}

body {
  font-family: var(--font);
}

.container {
  display: grid;
  grid-template: 15vh 70vh 14vh/ 1fr; /* Linhas x Colunas*/
  grid-template-areas:
    "header"
    "main"
    "footer";
  width: 90%;
  margin: 0 auto;
}

.left-text {
  margin-left: 0 !important;
}

.left-transform {
  transform: translate(-100%, -50%) !important;
}


/* Header */
header {
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  grid-area: header;
  height: 100%;
}

header .header-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-wrapper .logo {
  text-align: right;
  font-size: 30px;
  font-weight: 600;
}

.header-wrapper nav {
  margin-top: 1rem;
}

.header-wrapper nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
}

.header-wrapper nav ul li {
  margin-right: 2rem;
}

.header-wrapper nav ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--main-color);
  cursor: pointer;
}

.header-wrapper nav ul li:hover a {
  border-bottom: 2px solid var(--main-color);
}

.header-wrapper nav ul li.active a {
  background-color: var(--main-color);
  color: white;
  padding: 5px 30px;
  border-radius: 5px;
}

/* Main */
main {
  height: 100%;
  grid-area: main;
  position: relative;
  overflow: hidden;
}

main .main-wrapper {
  width: 90%;
  margin: 0 auto;
}

.main-wrapper .title h1 {
  /* text-align: center; */
  font-weight: 600;
  font-size: 1.8rem;
  width: fit-content;
  /* margin: 15px auto; Definido como auto, nÃ£o pode ser animada */
  margin-left: calc(50% - 190px); /* Sendo 190px o tamanho do h1*/
  transition: all 2s;
}

.main-wrapper .title h1 span {
  color: var(--main-color);
}

main .guide-container {
  position: absolute;
  top: 0;
  right: -135%; /* Para sumir =&gt; -200%,  Para aparecer =&gt; 0 */
  height: 100%;
  width: 400px;
  padding: 40px;
  background-color: var(--main-color);
  z-index: 1;
  transition: right 300ms ease-in-out;
  color: white;
}

main .guide-container .guide-wrapper {
  height: 85%;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  overflow-y: scroll;
}

/* Scrollbar */
.guide-wrapper::-webkit-scrollbar {
  width: 10px;
}

.guide-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
  background-color: white;
}

.guide-wrapper::-webkit-scrollbar-thumb {
  background: #C0E9FF; 
  border-radius: 10px;
}

main .guide-container.active-box {
  right: 0;
}

/* Footer */
footer {
  height: 100%;
  grid-area: footer;
  color: var(--sec-color);
  border-top: 1px solid var(--sec-color);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 95%;
  margin: 0 auto;
}

.footer-wrapper .logo-container svg {
  width: 75%;
}

.footer-wrapper div {
  text-align: center;
}

.footer-wrapper a {
  text-decoration: under;
  color: unset;
}

/* Responsivo */
@media only screen and (max-width: 600px) {
  .footer-wrapper {
    font-size: .8rem;
  }
}

/* HP12C Specific */
/* ConfiguraÃ§Ã£o da posiÃ§Ã£o da calculadora na pÃ¡gina. */
div#pointer_div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  transition: transform 300ms;
}
/* ConfiguraÃ§Ã£o div script */
div.script {
  position: absolute;
}</pre></body></html>