/*
Design by Alex Ramos - 2024
https://www.forcasmisticas.com.br
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

/* Grade
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.container-grid {
  display:grid;
  grid-template-columns: auto auto;
  padding: 10px;
  gap: 5px;
}
.container-grid > div {
 background-color: transparent;
 border: 1px solid #d1d1d1;
 border-radius: 8px;
 font-size: 20px;
 text-align: center;
}
.row{
	display:inherit;
    margin-left: auto;
    margin-right: auto;
	width: 100%;
	padding-top: 30px;
}
  .justify-align {
  	text-align: justify;
  }
  
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* Para dispositivos maiores de 400px */
@media all and (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

/* Para dispositivos maiores de 550px */
@media all and (min-width: 550px) {
  .container {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 55%;
	margin-right: 0;
  }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
 
}
/* Estilo Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
  font-size: 80%;
}
body {
  font-size: 18px; 
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #5B5B5B;
}
#div1{
display: flex;
}
/* Typografia
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 300;
}
h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0px;
}
h2 {
  font-size: 45px;
  line-height: 1.25;
  letter-spacing: 0px;
}
h3 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0px;
}
h4 {
  text-align:center;
  font-size: 35px;
  line-height: 1.35;
  letter-spacing: 0px;
}
h5 {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0px;
}
h6 {
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0px;
}
h7 {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0px;
}

/* Para dispositivos maiores que tablet */
@media all and (min-width: 550px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 35px;
  }
  h4 {
    font-size: 30px;
  }
  h5 {
    font-size: 25px;
  }
  h6 {
    font-size: 20px;
  }
}
p {
  font-size: 15px;
  margin-top: 0;
}
.style2: p{
color: #f20707;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1eaedb;
}
a:hover {
  color: #0fa0ce;
}
/* Botoes
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover,
button:hover {
background-color: #33c3f0;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #fff;
  background-color: #33c3f0;
  border-color: #33c3f0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #1eaedb;
  border-color: #1eaedb;
}
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea{
  height: 27px;
  padding: 6px 4px; 
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
}
select {
  height: 30px;
  padding: 2px 3px; 
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
}
/* Remove alguns padroes de inputs no iOS*/
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33c3f0;
  outline: 0;
}
label{
  display: block;
  margin-left:10px;
  margin-bottom: 25px;
  font-weight: 600;
}
legend {
  display: block;
  margin-left:10px;
  margin-bottom: 35px;
  font-weight: 600;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
label > .label-body {
  display: inline-block;
  margin-left: 5px;
  font-weight: normal;
}
/* Listas
–––––––––––––––––––––––––––––––––––––––––––––––––– */
tr{
	font-size: 75%;
	display: table-row;
    vertical-align: center;
    border-color: inherit;
}
ul {
  list-style: circle inside;
}
ol {
  list-style: decimal inside;
}
ol,
ul {
  padding-left: 0;
  margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 15px 15px 15px 15px;
  font-size: 90%;
}
li {
  margin-bottom: 5px;
}
/* Codigo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 2px 5px;
  margin: 0px 2px;
  font-size: 90%;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 10px 15px;
  white-space: pre;
}
/* Tabelas
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 4px 2px 2px 2px;
  text-align: left;
  /* border-bottom: 1px solid #807a7a; */
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
/* Espacamento
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 10px;
}
input{
  margin-left: 5px;
  margin-bottom: 5px;
}
textarea{
  margin-left: 5px;
  margin-bottom: 0px;
}
select{
  margin-left: 5px;
  margin-bottom: 0px;
}
fieldset {
  margin-left: 5px;
  margin-bottom: 5px;
}
pre{
  margin-bottom: 25px;
}
blockquote{
  margin-bottom: 25px;
}
dl{
  margin-bottom: 25px;
}
figure{
  margin-bottom: 25px;
}
table{
  margin-bottom: 25px;
}
p{
  margin-bottom: 15px;
}
ul{
  margin-bottom: 25px;
}
ol{
  margin-bottom: 25px;
}
form {
  margin-bottom: 25px;
}
/* Utilidades
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
/* Mistura
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}
/* Limpando
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container:after,
/* .row:after,*/
.u-cf {
  content: "";
  display: table;
  clear: both;
}


:root {
  --white: #f9f9f9;
  --black: #646666;
  --gray: #5893e0;
} 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--white);
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* Header */
.header {
  background-color: var(--black);
  box-shadow: 1px 1px 5px 0px var(--gray);
  position: relative;
  top: 0;
  width: 100%;
}
/* Logo */
.logo {
  display: inline-block;
  color: var(--white);
  font-size: 40px;
  padding: 0px 0px 5px 10px;
}

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--black);
  overflow: auto;
}
.menu a {
  display: inline-block;
  padding: 15px; /*MUDA ESPACAMENTO DO MENU*/
  color: var(--white);
}
.menu a:hover {
  background-color: var(--gray);
}
.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

/* Menu Icon */
.hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
} 

.hamb-line {
  background: var(--white);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} 

.hamb-line::before,
.hamb-line::after {
  background: var(--white);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: 5px;
}

.side-menu {
  display: none;
}
.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

/* Responsivo */

@media all and (min-width: 860px) {
  .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
  }
  .menu li {
    float: left;
  }
  .menu a:hover {
    background-color: transparent;
    color: var(--gray);
  }

  .hamb {
    display: none;
  }
}
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-skype {
  background: #00aff0;
  color: white;
}

.fa-android {
  background: #a4c639;
  color: white;
}

.fa-dribbble {
  background: #ea4c89;
  color: white;
}

.fa-vimeo {
  background: #45bbff;
  color: white;
}

.fa-tumblr {
  background: #2c4762;
  color: white;
}

.fa-vine {
  background: #00b489;
  color: white;
}

.fa-foursquare {
  background: #45bbff;
  color: white;
}

.fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.fa-soundcloud {
  background: #ff5500;
  color: white;
}

.fa-reddit {
  background: #ff5700;
  color: white;
}

.fa-rss {
  background: #ff6600;
  color: white;
}
/* Fim icones Rede Social */
/* Media
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Para dispositivos maiores que celular */
@media all and (min-width: 400px) {
}

/* Para dispositivos maiores que tablet */
@media all and (min-width: 550px) {
}

/* Para dispositivos maiores que tablet */
@media all and (min-width: 750px) {
}

/* Para dispositivos maiores que desktop */
@media all and (min-width: 1000px) {
}