/*
Autor: Willy Cruz
www.dznbox.com
*/

:root {
  --bgColor: #fff;
  --txtColor: #1b2b38;
  --corLogo: #fff;
  --logoBranco: inline;
  --logoAzul: none;
  --iconSun: inline;
  --iconMoon: none;
  --txtTema: #1b2b38;
  --rotateIconColor: none;
  --btnMenuColorHover: invert(0);
  --logoColor: none;
  --bgMenuLateral: #333;
}
.darkMode{
  --bgColor: #1b2b38;
  --txtColor: #fff;
  --corLogo: #1b2b38;
  --logoBranco: none;
  --logoAzul: inline;
  --iconSun: none;
  --iconMoon: inline;
  --txtTema: #fff;
  --rotateIconColor: 180deg;
  --btnMenuColorHover: invert(.8);
  --logoColor: invert(1);
  --bgMenuLateral: #ddd;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  cursor: default;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  color: var(--txtColor);
  background-color: var(--bgColor);
  transition: .2s;
}

::selection {
  color: #fff;
  background-color: #3a73ff;
}

a,
a:link,
a:focus,
a:active,
a:visited{
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5, strong{
  font-weight: 900;
}
.btn01{
  font-size: 16px;
  padding: 9px 22px;
  color: #fff !important;
  border-radius: 40px;
  background-color: transparent;
  border: 1px solid #fff;
}
.btn01:hover{
  background-color: #fff;
  color: #4334af !important;
}



/* MUDAR TEMA */
.mudarTema{
  font-size: 18px;
  color: #3a73ff;
  position: fixed;
  top: 12px;
  right: 20px;
}
.mudarTema span{
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: .3s;
}
.mudarTema a:hover{
  cursor: pointer;
}
.mudarTema a:hover span{
  opacity: 1;
}
.fa-sun{
  display: var(--iconSun);
}
.fa-moon{
  margin-left: 2px;
  margin-right: 2px;
  display: var(--iconMoon);
}
/* END MUDAR TEMA */

.bgEmBreve{
  height: 100vh;
  background-image: url("../img/bgEmBreve01.jpg");
  background-size: cover;
  background-position: bottom;
  border-right: 10px solid #3a73ff;
}

.logotipo{
  max-width: 240px;
  background-color: var(--corLogo);
  transition: .2s;
  position: absolute;
}
.logotipo:hover{
  opacity: 0;
  cursor: pointer;
}
.logoBranco{
  position: absolute;
  display: var(--logoBranco);
}
.logoAzul{
  position: absolute;
  display: var(--logoAzul);
}


.txtInfos{
  font-size: 17px;
}
.txtInfos i{
  color: #3a73ff;
}
.txtInfos hr{
  border-top: 7px solid #3a73ff;
  width: 80px;
  opacity: 1;
}
.txtInfos p:nth-child(2){
  width: 100%;
  max-width: 600px;
  margin-top: 70px;
}
.txtInfos p:last-child{
  font-size: 14px;
  color: #999;
}




@media (min-width: 1400px) {

}