:root {
  --c1: #7f6db5;
  --c2: #4c4c65;
  --c3: #575775;
  --c4: #272731;
  --c5: #3f3c4b;
  --c6: #8b8799;
  --w: #fff;
  --dark: #1e1b2df7;  
  --bo: #ffffff1f;
  --br: 20px;
  --br_button: 50px;
  --brb: 50px;
}
::-webkit-scrollbar-thumb {
  background: #ffffff47;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
  border-radius: var(--br);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
html {
  scroll-behavior: smooth; 
}
body {
  background: var(--c4);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--w);
  box-sizing: border-box;
}
a {
  color: var(--w);
  outline: none;
  text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}
h1 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.5;
}
h2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}
strong {font-weight: 700;}
ul {padding: 0}
ul li {list-style-type: none}
b {font-weight: 600;}
button:focus, input:focus, textarea:focus {
    outline: 0;
    box-shadow: none;
}
fieldset {
  padding: 0 10px 10px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
}
legend {
  padding: 0 10px;
}
blockquote {
  background: var(--c5);
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
input[type=file]::file-selector-button {
  border: none;
  background: linear-gradient(0deg, #cfcfcf, #ffffff);
  padding: 10px 20px;
  border-radius: var(--br);
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
input[type="checkbox"] {
  appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid var(--bo);
    border-radius: 4px;
    cursor: pointer;
}
input[type="checkbox"]::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  clip-path: polygon(28% 38%, 41% 53%, 75% 24%, 86% 38%, 40% 78%, 15% 50%);
  transform: scale(0);
  background-color: var(--c1);
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}
select {
  background: none;
  display: flex;
  margin: 3px;
  padding: 5px 35px 5px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bo);
  border-radius: var(--brb);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  align-items: center;
}
select option {
  color: black;
}
select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%), linear-gradient(to right, #fff0, #ccc3);
  background-position: calc(100% - 15px) center, 88% center, 68% center;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
* {
  transition: all 0.2s;
}
*, *:before, *:after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
::placeholder {
  font-weight: 500;
  color: #ffffff59
}
:focus {
    outline: 0;
}
.hidden {
  display: none !important;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
  } 
}
@media (max-width:768px) {
  h1 {
    font-size: 2rem;
    line-height: 46px;
}
}
.button {
  position: relative;
  border-radius: var(--br_button);
  overflow: hidden;
}
.button:hover::after {
  content: "";
  position: absolute;
  top: -3em;
  left: -100%;
  width: 61px;
  height: 150px;
  background: linear-gradient(248deg, #ffffff78, #ffffff00, transparent);
  transform: rotate(30deg);
  z-index: 1000;
  pointer-events: none;
  animation: button_hover 3s ease infinite;
}
@keyframes button_hover {
  0% {
      left: -100%;
  }  
  50% {
      left: 200%;
  }
  100% {
      left: -100%;
  }
  }

/* Header */

header {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.header_container {
  background: radial-gradient(#4d4d65, #25252f) no-repeat;
  background-size: 100% 11rem;
  width: 100%;
  display: flex;
  padding: 10px 15px;
  color: white;
  border-bottom: 1px solid var(--bo);
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.header_container .logo {
  display: flex;
  align-items: center;
}
.header_container .logo img {
  max-width: 100px;
}
#header_section {
  display: flex;
  width: auto;
  margin: 0;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#header_section .menu-item {
  width: auto;
  margin: 0;
  display: flex;
  border: 0;
}
#header_section .menu-item .menu_header {
  margin: 0 5px;
}
.menu_header i {
  margin-right: 6px;
  font-size: 16px !important;
}
#header_section .menu_header:hover {
  border: 1px solid #ffffff29;
}
#user-menu {
  display: flex;
  align-items: center;
}
#login-button {
  background: none;
  width: 100%;
  margin: 0;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  border-radius: var(--br);
}
#login-button i {
  margin: 0 5px 0 0;
}
#logout-button, #dashboard-button {
  background: none;
  width: 100%;
  display: flex;
  margin: 0;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  align-items: center;
  border-radius: var(--br);
}
#login-button:hover, #logout-button:hover, #dashboard-button:hover {
  background: var(--c1);
  border-radius: var(--br);
}
#user-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.user_dash {
  position: relative;
  display: flex;
  padding: 2px;
  align-items: center;
  border-radius: 50%;
}
.user_dash:hover {
  background: #ffffff1a;
}
#user-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#user-options {
  display: none;
}

#user-info #user-options {
  background: #4c4c65f2;
  display: flex;
  position: absolute;
  min-width: 150px;
  margin: 43px 0 0;
  padding: 5px;
  right: 0;
  flex-direction: column;
  border: 1px solid #ffffff1a;
  border-radius: var(--br);
  box-shadow: 0 0 10px -5px black;
  z-index: 1000;
  cursor: default;
  opacity: 1;
}
.scrollPage #user-info #user-options {
  margin: 0;
  right: 3rem;
  bottom: -20px;
}
#user-options i {
  display: flex;
  width: 20px;
  margin-right: 8px;
  justify-content: center;
}
#mobile-menu-icon {
  display: none;
}
.toolsApp {
  display: none; 
}
@media screen and (min-width: 769px) {
header.scrollPage {
  position: fixed;
  bottom: 0;
  margin: 0 auto;
  z-index: 1000;
  align-items: center;
}
header.scrollPage .header_container {
  background: #485077d6;
  max-width: 800px;
  border-top: 1px solid var(--bo);
  border-bottom: 0;
  flex-wrap: wrap;
  border-radius: var(--br) var(--br) 0 0;
}
.scrollPage .main-menu {
  border-top: 1px solid var(--bo);
  border-image: none;
}
}
@media screen and (max-width: 768px) {
  .header_container {
    background: #484659cc;
}  
#mobile-menu-icon {
  display: block;
}
header.scrollPage {
  background: #48465945;
  position: fixed;
  width: 100%;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border: 1px solid #5f5b69;
  box-shadow: 0 8px 10px -10px black;
  z-index: 10000;
}  
.scrollPage #user-info #user-options {
  right: -49px;
  bottom: 50px;
}
#header_section .menu-item {
  display: none;
}
header.scrollPage .logo img {
  max-width: 5rem;
}
body.menuBG:before {
  content: '';
  background: #1a1a21eb;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  backdrop-filter: blur(7px);
}
.toolsApp {
  display: block;
  padding: 0 !important;
  margin: 0 0 3rem 0;
}
.menu-item.toolsApp a {
  background: #7f6db5;
  height: 40px;
  padding: 0 1rem;
  margin: 12px 0;
  border: 0 !important;
  border-radius: 0 5rem 5rem 0;
  font-weight: 500;
}
.dropdown {
  margin: 1rem;
}
.dropdown-box {
  position: relative;
}
.dropdown-content {
  background: #272730;
  right: 0;
}
}

/* Menu */

.main-menu {
  background: linear-gradient(90deg, transparent, #4c4c65c7, transparent);
  display: flex;
  width: 100%;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, #00000000 0%, #ffffff52, #00000000 100%) 0 0 100% 0;
  z-index: 999;
  transition: width .2s linear;
  justify-content: center;
  flex-wrap: wrap;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 15px 30px -20px black;
  -moz-box-shadow: 0 15px 30px -20px black;
  -webkit-box-shadow: 0 15px 30px -20px black;
  align-items: center;
}
.scrollPage .main-menu {
  z-index: 1001;
}
.menuBox {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.menu-item {
  position: relative;
  padding: 0 10px;
  place-items: center;
  cursor: pointer;
}
.menu-item a {
  display: flex;
  width: 100%;
  height: 35px;
  margin: 5px 0;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: var(--br_button);
  text-align: left;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.menu-item a.active {
  border: 1px solid var(--bo);
}
.menu-item a:hover {
  border: 1px solid #ffffff29;
  border-radius: var(--br_button);
}
.menu-item svg, .menu-item i, .menu-item img {
  display: flex;
  width: 100%;
  max-width: 25px;
  min-width: 23px;
  max-height: 25px;
  font-size: 16px;
  justify-content: center;
}
.main-menu i.menu-icon {
  font-size: 15px;
  cursor: pointer;
}
.menu-text {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 300;
  white-space: nowrap;
}
.main-menu .menu-item i, .main-menu .menu-item svg, .main-menu .menu-item img {
  margin-right: 10px;
}
.closeMenu {
  display: none;
}

/* Estilos para o dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;

  &:hover .dropdown-box {
    padding: 1rem 0 0;
    pointer-events: all;
  }
}
.dropdown-box {
  position: absolute;
  width: 100%;
  height: 50px;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
.scrollPage .dropdown:hover .dropdown-box {
    top: -14px;
    padding: 0 0 1rem;
}
.scrollPage .dropdown-box {
  top: 0;
}
.scrollPage .dropdown-content {
  top: -7rem;
}
}
.dropbtn {
  background: none;
  height: 36px;
  color: white;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: var(--br_button);
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: var(--c4);
  padding: 10px 0;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown:hover button {
  border: 1px solid #ffffff29;
  border-radius: var(--br_button);
}
.dropdown-content .menu-item a {
  display: flex;
  height: 40px;
  color: white;
  text-decoration: none;
  align-items: center;
}
.dropdown:hover .dropdown-content {
  display: block; /* Exibir conteúdo ao passar o mouse sobre o dropdown */
}
.dropbtn i {
  margin-right: 6px;
}

/* Tornar o ícone visível em dispositivos móveis */
@media screen and (max-width: 768px) {
  .closeMenu {
    display: block;
} 
.menu-item a {
  height: 45px;
  margin: 5px 0 0;
  justify-content: flex-start;
}
  .main-menu {
    position: fixed;
    display: flex;
    height: 100%;
    right: -100%;
    margin: 0;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
  }
  .menu-item a.active {
    width: 100%;
    border: 1px solid var(--bo);
  }
  .main-menu.active {
    background: #272731eb;
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    margin: 0;
    padding: 1rem 0;
    border-left: 1px solid var(--c1);
    border-image: none;
    z-index: 20000;
    transition: all 0.3s ease;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  #mobile-menu-icon {
    position: relative;
    display: flex;
    width: 4rem;
    height: 100%;
    margin: 0 -12px 0 1rem;
    border-left: 1px solid var(--bo);
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }  
  #mobile-menu-icon i {
    margin: -3px;
}
  #mobile-menu-icon span {
    font-size: 10px;
    text-transform: uppercase;
}
  .closeMenu {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 0;
    padding: 10px;
    font-size: 25px;
    color: white;
    border-top: 1px solid var(--bo);
    justify-content: center;
    cursor: pointer;
  }
  .menuBox {
    justify-content: flex-start;
}
}


/* Main */
#main-content {
  position: relative;
  height: 100%;
}

/* footer */

footer {
  background: radial-gradient(#4d4d65, #25252f);
  display: flex;
  width: 100%;
  padding: 30px;
  border-top: 1px solid #ffffff21;
  font-size: 15px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact_list {
  display: flex;
  margin: 0 0 1rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, #00000000 0%, #ffffff52, #00000000 100%) 0 0 100% 0;
  flex-direction: column;
  align-items: center;
}
.contact_list a {
  display: flex;
  margin-right: 1rem;
  font-weight: 300;
  align-items: center;
}
.contact_list a i {
  display: flex;
  font-size: 20px;
  margin-right: 10px;
  justify-content: flex-end;
}
.contact_list a:hover {
  transform: translateY(-3px);
}
.expand-button {
  position: absolute;
  top: 45px;
  right: -28px;
  display: grid;
  place-items: center;
  height: 30px;
  width: 100%;
  font-size: 20px;
  color: #fff;
}
.expand-button i {
  position: absolute;
  display: grid;
  place-items: center;
  height: 35px;
  width: 35px;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px -5px black;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.expand-button i:hover {
  background: var(--c1);
  border: 0;
}
.contact_ul {
  display: flex;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.logoFooter {
  max-width: 90px;
}
.ft_copy {
  font-size: 13px;
}
.f_text {
  margin: 1rem 0 0;
}
@media (max-width:768px) {
  footer {
    padding: 20px 20px 7rem;
    text-align: left;
    align-items: flex-start;
} 
.contact_list {
  align-items: flex-start;
}
  .contact_list a {height: 35px}  
  .contact_ul {
    justify-content: flex-start;
}
}

/* Pages Headers */
  
  header_page {
    background: linear-gradient(90deg, transparent, #4c4c65c7, transparent);
    position: sticky;
    display: flex;
    top: 0;
    margin: 0 auto;
    justify-content: center;
    z-index: 101;
    overflow: hidden;
  }
  header_page:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #00000000 0%, #ffffff52, #00000000 100%) 0 0 100% 0;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  header_page nav ul {
    display: flex;
    height: 50px;
  }
  header_page nav ul li {
      display: flex;
      position: relative;
      margin: 0 0 0 45px;
      align-items: center;
      text-transform: uppercase;
  }
  header_page nav ul li:first-child {
    margin: 0;
}
  header_page li a {
      font-weight: 500;
      color: var(--w);
  }
  header_page li.nav_active a:after {
      content: "";
      background: var(--w);
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 1;
      background-color: rgb(255 255 255 / 1);
  }
  header_page li a:after {
      content: "";
      background: var(--w);
      position: absolute;
      width: 0;
      margin: 0 auto;
      opacity: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transition: all 1s ease;
  }
  header_page li a:hover:after,
  header_page li a:after {
      content: "";
      background: var(--w);
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgb(255 255 255 / 1);
  }
  
  header_page li a:hover:after {
      width: 100%;
      opacity: 1;
  }
  header_page li a:hover:after {
    width: 100%;
    opacity: 1;
}
header_page li a:hover:after, header_page li a:after {
    content: "";
    background: var(--w);
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 1);
}
  @media (max-width: 768px) {
    header_page {
      top: 0;
      align-items: center;
  }  
  }

  .navGrid {
    background: linear-gradient(140deg, #373751 0, transparent 45vw) no-repeat;
    position: relative;
    display: flex;
    width: 100%;
    padding: 2rem;
    align-items: center;
    border-bottom: 0px solid var(--bo);
    justify-content: center;
}
.navGrid h1 {
    display: flex;
    width: 100%;
    line-height: normal;
    align-items: flex-start;
    flex-direction: column;
}
.navGrid h1 p {
    font-size: 15px;
    font-weight: 300;
}
.navGrid i {
    margin-right: 1.3rem;
    font-size: 2rem;
}

  /* Main - Faq */
  
#faq, #faqLP {
    position: relative;
    display: flex;
    width: 100%;
    margin: 5rem 0 10rem;
    justify-content: center;
    align-items: center;
}
.block_faq {
    position: relative;
    display: flex;
    align-items: center;
}
.block_faq svg {
    width: 100%;
    max-width: 280px;
    margin: 0 42px 0 0;
    fill: var(--w)
}
.accordion {
  max-width: 600px;
}
.accordion h1 {
    padding: 0 0 17px 0;
    font-size: 33px;
    text-align: left;
    color: var(--w);
}
.accordion .accordion-item {
    border-bottom: 1px solid #ffffff1f;
}
.accordion button[aria-expanded=true] {
    color: var(--w);
}
.accordion button:hover, .accordion button:focus {
  letter-spacing: 0.5px;
  cursor: pointer;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--w);
    border: none;
    background: none;
    outline: none;
}
.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: flex;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid;
  border-radius: 22px;
  align-items: center;
  justify-content: center;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    width: 2px;
    height: 10px;
    background: currentColor;
    transition: all 1s ease;
}
.accordion [aria-expanded=true] .icon::after {
  content: '';
  height: 0;
  transition: all 1s ease;
}
.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all .5s linear;
}
.accordion button[aria-expanded=true] + .accordion-content p {
  transform: translateY(0);
  transition: all .5s linear;
}
.accordion .accordion-content p {
  transform: translateY(-100%);
  transition: all .5s linear;
}
.accordion button[aria-expanded=true] + .accordion-content {
  max-height: 500px;
}
.accordion .accordion-content p {
  margin: 0 0 2em;
  line-height: 25px;
}
@media (max-width:768px) {
#faq {
  margin: 0 0 7rem;
}
.block_faq svg {
    display: none;
}
.accordion h1 {
    font-size: 1.3rem;
}
}

/* Pages */

.pages, .pagesPremium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 3rem 1rem 2rem;
  gap: 15px;
}
.pages a, .pagesPremium a {
  background: #ffffff0d;
  display: inline-flex;
  padding: 15px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  font-weight: 500;
  align-items: center;
  transition: background 1s linear;

  &:hover {
      border: 1px solid var(--c1);
  }
}
.pages a.active {
  background: linear-gradient(135deg, var(--c1) -30%, #ffffff0d 43%) no-repeat;
  border: 1px solid var(--c1);
  transition: background 1s linear;
}

.t_titleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pages a img {
  max-width: 70px;
  margin-right: 1rem;
  border-radius: 12px;
}
.pages a p, .pagesPremium a p {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 600;
}
.pages a span, .pagesPremium a span {
  font-size: 13px;
  font-weight: 300;
  color: white;
}
.pagesPremium a i {
  margin-right: 1.3rem;
  font-size: 3rem;
}
#insert_container {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
.pages {
  margin: 3rem 1rem;
}
.pages a {
  max-width: 100%;
}
.pages a img {
  max-width: 35px;
}
}

.pagesBox {
  background: #ffffff0d;
  position: relative;
  display: flex;
  padding: 20px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  flex-direction: column;
}
.pagesTitle {
  display: flex;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--bo);
  align-items: center;
}
.pagesTitle h1 {
  font-size: 25px;
  line-height: normal;
}
.pagesTitle h2 {
  font-size: 15px;
}
.pagesTitle i {
  display: flex;
  margin-right: 1rem;
  padding: 15px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--c1);
  border-radius: 10em;
  font-size: 19px;
  justify-content: center;
  align-items: center;
}

/* API PIX */

#uservip_qrcode {
        margin: 2rem 0 0;
    }  
    #contentArea {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
  }      
    .openpop #contentArea {
      position: fixed;
      z-index: 5000;
  }    
#paypix {
    background: white;
    position: absolute;
    width: 100%;
    max-width: 700px;
    top: 50%;
    left: 50%;
    border: 0px solid #fff;
    border-radius: var(--br);
    flex-direction: column;
    box-shadow: 0 0 20px -8px black;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 2000;
    transition: all 1s ease;
    }
    .openpop #main-content:before {
      content: '';
      position: fixed;
      background: black;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      opacity: 0.5;
}    
    .section_pix {
    display: flex;
    align-items: center;
}  
    .title {
        display: flex;
        margin: 0 0 17px;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: black;
    }
    #qrcode_text {
        word-break: break-word;
        font-size: 13px;
        font-weight: 400;
        color: black;
        line-height: 22px;
    }
    .info_pix {
        display: flex;
        padding: 15px;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }
    .copy_code {
    background: var(--c1);
    margin: 1rem 0 0;
    padding: 15px 50px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border: 0;
    border-radius: var(--br_button);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 1s ease;

&:hover {
    transition: all 1s ease;
}

    }
    .pix_footer {
        background: whitesmoke;
        display: flex;
        padding: 16px;
        font-size: 15px;
        font-weight: 600;
        color: black;
        border-top: 1px solid #c8c8c8;
        justify-content: space-between;
    }
    #timer {
    margin-left: 10px;
    color: red;
}
#show_theme {
  display: none;
  margin: 0 auto;
  padding: 4rem 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  white-space: break-spaces;
}
#result {
    background: #dbdbdb;
    margin: 0 0 1rem;
    padding: 10px;
    border: 0;
    border-radius: var(--br);
    text-align: center;
}
#downloadButton {
    justify-content: center;
    background: var(--c1);
    padding: 10px 2rem;
    border: 0;
    border-radius: var(--br);
    text-align: center;
}
#downloadButton a {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
#warclick_key {
  max-width: 600px;
  width: 100%;
  height: 100%;
  color: black;
  white-space: pre-line;
  word-wrap: break-word;
}
#pay-vip_close {
  background: none;
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 0;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  }    
  /* Animação de carregamento */
.loading-placeholder {
  background-color: #f0f0f0;
  background-image: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}

/* Estilo para o placeholder do QR Code */
#qrcode.loading-placeholder {
  width: 200px;
  height: 200px;
}

/* Estilo para o placeholder do texto */
#qrcode_text.loading-placeholder {
  width: 100%;
  height: 20px;
  margin-top: 10px;
}

@media (max-width:768px) {
    #paypix {
            max-width: 90%;
    }
    .section_pix {flex-wrap: wrap}
    #qrcode, #qrcode img {width: 100%}
    .info_pix {
        flex-direction: column;
        text-align: justify;
        align-items: stretch;
    }
    .copy_code {
        font-size: 12px;
        font-weight: 800;
    }
    #show_theme {
    margin: 0 auto 2rem;
}   
#warclick_key {
  max-width: 300px;
}
    }

/* Post */    

.topBanner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} 
.TitlePost {
background: #353547e0;
display: flex;
margin: 0 0 2rem;
padding: 5px 1rem 15px;
border-top: 1px solid var(--bo);
border-bottom: 1px solid var(--bo);
box-shadow: 0 5px 20px -15px black;
flex-direction: column;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}   
#main-posts {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  } 
#main-posts section {
  display: block;
  margin: 1rem 0 4rem;
  font-size: 18px;
  line-height: 30px;
  } 
  #main-posts img {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
}
 #main-posts iframe {
  max-width: 100%;
  margin: 1rem 0;
}
#main-posts pre {
  background: var(--c5);
  margin: 1rem 0;
  padding: 1rem;
  font-size: 15px;
  line-height: 25px;
  tab-size: 4;
  overflow: auto;
  }
#main-posts pre ::marker {
    color: GrayText;
  }
.tagPost {
    background: var(--c1);
    margin-right: 9px;
    padding: 2px 15px;
    border-radius: var(--br_button);
}
.postAutor {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#main-posts a {
  color: var(--c1);
  
  &:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .topBanner {
    height: 200px;
    background-position: bottom;
}
.tagPost {
  margin: 10px 0;
}
.autorBox {
  font-size: 13px;
}
#main-posts iframe {
  height: 52vw;
}
}