@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*RESET*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100%;
  font-size: 16px;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

a {
  text-decoration: none;
}

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 {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-size: 100%;
  line-height: 1.3;
  cursor: default;
}

/*
  ========================================
  Typography
  ========================================
*/
b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

/*
  ========================================
  Img
  ========================================
*/
img,
picture,
video,
embed,
object {
  max-width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

:root {
  --cor-primaria: #2C87E7;
  --cor-secundaria: #00113B;
  --cor-texto: #00113B;
  --cor-texto-secundario: #ffffff;
}

:root {
  --gradient-site: linear-gradient(to right, #F3DB42 0%, #FCFE2E 100%);
}

/**/
body {
  background: #fff url("../images/bg.png");
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--cor-texto);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0px;
  padding-top: 30px;
}

body * {
  color: var(--cor-texto);
  font-family: "Inter", sans-serif;
}

p {
  font-size: 1.25rem;
}

/*CONTAINER*/
.container {
  margin: 0 auto;
  max-width: 87.5rem;
  padding-left: 20px;
  padding-right: 20px;
}

.swiper {
  position: relative;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ede4db;
}

::-webkit-scrollbar-thumb {
  background: var(--cor-texto);
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:active {
  background: var(--cor-texto);
}

.__content {
  max-width: 700px;
  margin: auto;
  position: relative;
  height: 100%;
  min-height: calc(100vh - 30px);
}
.__content::before {
  content: "";
  width: calc(100% - 60px);
  height: calc(100% - 170px);
  background-color: #F09E0A;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
  border-radius: 34px 34px 0 0;
}
.__content::after {
  content: "";
  width: 100%;
  height: calc(100% - 190px);
  background-color: #A51916;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 34px 34px 0 0;
}
.__content .__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.__content .__title {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #fff;
  margin: 45px 0 55px 0;
  text-align: center;
}
.__content .__links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  padding: 0 100px;
}
.__content .__links a {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border-radius: 10px;
  background: #FFF;
  font-size: 1.25rem;
  color: #A51916;
  transition: 0.3s all;
}
.__content .__links a:hover {
  background-color: #F09E0A;
  color: #fff;
  box-shadow: 5px 5px 20px #F09E0A;
}
.__content .__links a b, .__content .__links a span {
  color: inherit;
  transition: 0.3s all;
}
.__content .__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 600px) {
  body {
    padding-bottom: 20px;
  }
  .__content {
    min-height: calc(100vh - 20px);
  }
  .__content::before {
    height: calc(100% - 100px);
    border-radius: 25px 25px 0 0;
  }
  .__content::after {
    height: calc(100% - 120px);
    border-radius: 25px 25px 0 0;
  }
  .__content .__logo img {
    max-width: 200px;
  }
  .__content .__title {
    font-size: 1.25rem;
    margin: 35px 0 45px 0;
  }
  .__content .__links {
    padding: 0 30px;
    gap: 20px;
  }
  .__content .__links a {
    padding: 6px 10px;
    font-size: 1rem;
    gap: 8px;
  }
  .__content .__links a img {
    width: 35px;
  }
}

/*# sourceMappingURL=style.css.map */
