:root {
  --cor1: #ff007f;
  --cor2: #fff;
  --cor3: #c1cbe6;
  --cor4: #2e2e2e;
  --cor5: #1f1f1f;
  --cor6: #171926;
  --cor7: #0a0c14;
  --cor8: rgba(0, 0, 0, 0.9);
  --cor9: rgba(10, 12, 20, 0.9);
  --cor10: #000;
  --cor11: #139b1d;
  --cor12: #bc363f;
  --cor13: #fcb853;
}

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  color: var(--cor3);
}

input:not([type="checkbox"]),
select {
  border-radius: 10px 10px 10px 10px;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  padding: 10px;
  border: 1px solid var(--cor4);
  width: 100%;
  height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--cor7);
}

select {
  cursor: pointer;
  background-color: var(--cor7);
  color: var(--cor3);
}

input:hover,
select:hover {
  border-color: var(--cor3) !important;
  color: var(--cor3);
}

button {
  outline: none;
  font-family: "Poppins", sans-serif;
  border: 0;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

input::placeholder {
  color: var(--cor3);
  opacity: 0.3;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  line-height: 1;
  color: var(--cor3);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: var(--cor7);
  font-weight: 400;
}

:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

:focus {
  outline: none;
}

.limpa {
  clear: both;
}

.oculta {
  display: none;
}

/* jQuery Confirm */
.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}

.jconfirm {
  -webkit-perspective: 400px;
  perspective: 400px;
}

.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
  outline: 0;
}

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: var(--cor8);
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
  text-align: center;
  color: var(--cor2);
  font-size: 28px;
  font-weight: normal;
  padding: 0 20px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
  text-align: center;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
  font-size: 16px;
  background-color: transparent;
  text-shadow: none;
  padding: 10px;
  min-width: 100px;
  font-weight: 700;
  border-radius: 10px 10px 10px 10px;
  cursor: pointer;
  outline: none;
  margin-right: 10px;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons .btPadrao {
  background-color: transparent;
  color: var(--cor2);
  border: 1px solid var(--cor2);
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons .btPadrao:hover {
  background-color: var(--cor2);
  color: var(--cor10);
}

/* jQuery Colorbox */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px var(--cor9);
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--cor9);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  background: var(--cor6);
  overflow: hidden;
}

#cboxClose:active {
  outline: 0;
}

#cboxClose {
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url("https://d2iunxaj6b2put.cloudfront.net/imagens/interface/home/fechar.webp");
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

.cboxIframe {
  width: 100%;
  height: 95%;
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
}

#colorbox {
  border-radius: 10px 10px 10px 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--cor3) var(--cor5);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}


/* Textos do site */
.textos p:first-child {
    margin-top: 0 !important;
}

.textos p:last-child {
    margin-bottom: 0 !important;
}

.textos p::first-line {
    line-height: normal;
}

.textos p {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 32px;
}

.textos strong,
.textos b {
    font-weight: 700;
}

.textos i,
.textos em {
    font-style: italic;
}

.textos ul {
    margin-top: 10px;
}

.textos ul li ul {
    margin-left: 30px;
}

.textos ul li ul li {
    list-style: circle !important;
}

.textos ul li:first-child {
    margin-top: 0 !important;
}

.textos ul li:last-child {
    margin-bottom: 0 !important;
}

.textos ul li {
    list-style: inside;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 32px;
}

.textos ol li:first-child {
    margin-top: 0 !important;
}

.textos ol li:last-child {
    margin-bottom: 0 !important;
}

.textos ol li {
    list-style: decimal;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 32px;
}

.textos a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 700;
}

.textos a:hover {
    text-decoration: underline;
}

.textos h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos h4 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.textos sup {
    vertical-align: super;
    font-size: smaller;
}

.textos sub {
    vertical-align: sub;
    font-size: smaller;
}