/*

Template 2080 Minimax

http://www.tooplate.com/view/2080-minimax

*/

body {
  background: #fff;
  font-family: 'lane_-_narrowregular', sans-serif;
  line-height: 30px;
}

@font-face {
  font-family: 'lane_-_narrowregular';
  src: url('../fonts/LANENAR_-webfont.eot');
  src: url('../fonts/LANENAR_-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/LANENAR_-webfont.woff') format('woff'),
    url('../fonts/LANENAR_-webfont.ttf') format('truetype'),
    url('../fonts/LANENAR_-webfont.svg#lane_-_narrowregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

h1,
p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

h2,
h3 {
  font-weight: bold;
}

hr {
  border-color: #0059B2;
  margin: 0;
  opacity: 0.3;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-in;
}

img:hover {
  cursor: pointer;
  opacity: 0.5;
}

/* navigation */
.navbar-default {
  background: #fff;
  border: none;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
  margin: 0 !important;
}

.navbar-nav {
  float: right;
  text-align: center;
}

.navbar-default .navbar-brand {
  /* background: #dc5034; */
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  line-height: 50px;
  height: 90px;
  margin: 0;
  padding: 7px 20px 40px 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.navbar-brand img {
  max-width: 230px;
}

.navbar-brand:hover,
.navbar-brand:clicked {
  /* background: dc5034; */
  background: #0059B2;
}

.navbar-default .navbar-nav li a {
  border-right: 1px solid #f9f9f9;
  color: #202020;
  font-weight: bold;
  padding-right: 40px;
  padding-left: 40px;
  line-height: 60px;

  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav>li>a:clicked,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
  /* color: #f2af00; */
  color: #999999;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
  /* color: #f2af00; */
  color: #999999;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border: none;
  padding-top: 30px;
}

.navbar-default .navbar-toggle .icon-bar {
  background: #dc5034;
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}

/* home section */
/* #home {
  background: url('../images/banner-top.jpg')no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  padding-top: 220px;
  padding-bottom: 100px;

    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);

  overflow-x: hidden;
  overflow-y: hidden;
}

#home h1 {
  color: #fafaf9;
  font-weight: 300;
  text-align: center;
}

#home h2 {
  line-height: 10px;
  color: #fafaf9;
}

#home p {
  color: #fafaf9;
}

#home .btn {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #444;
  border-radius: 0px;
  color: #444;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding-top: 14px;
  width: auto;
  padding: 20px;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

#home .btn:hover {
  background: #494342;
  border-color: transparent;
  color: #fff;
} */

#home {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Imagem com blur */
.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/banner-top.jpg') no-repeat center center;
  background-size: cover;
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    -o-filter: blur(7px);
    -ms-filter: blur(7px);
  filter: blur(7px);
  z-index: 1;
}

/* Camada escura semi-transparente */
.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.5); /* Preto com 50% de opacidade */
  z-index: 2;
}

/* Conteúdo */
.home-content {
  position: relative;
  z-index: 3;
  padding-top: 220px;
  padding-bottom: 100px;
  color: #fafaf9;
}

/* Botão */
.home-content .btn {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #444;
  color: #444;
  font-weight: bold;
  padding: 14px 20px;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}

.home-content .btn:hover {
  background: #494342;
  color: #fff;
  border-color: transparent;
}




/* service section */
#service {
  padding-top: 100px;
  padding-bottom: 80px;
}

#service h2 {
  /* border-left: 2px solid #f2af00; */
  border-left: 2px solid #0059B2;
  display: inline-block;
  padding: 20px;
}

#service .fa {
  /* border-top: 3px solid #f2af00; */
  /* border-top: 3px solid #0059B2; */
  /* border-bottom: 3px solid #dc5034; */
  /* border-bottom: 3px solid #0059B2; */
  /* border-radius: 50%; */
  font-size: 20px;
  color: #dc5034;
  text-align: left;
  vertical-align: middle;
  /* margin-top: 50px; */
  /* margin-bottom: 15px; */
  padding-right: 10px;
}

.parent {
  display: flex;
  justify-content: center;
  height: 100px;
  margin-bottom: 50px;
}

.child {
  padding: 20px;
}

#service ul {
  padding-top: 30px;
  padding-left: 10px;
}

#service ul li{
  list-style-type: none;
  text-align: left;
  font-weight: 600;
  font-size: 2rem;
  padding: 5px;
  margin-bottom: 7px;
  /* margin-left: -50px; */
}

#service ul li a {
  text-decoration: none;
}

#service img {
  border: 1px solid #666;
  padding: 10px;
  max-width: 400px;
  margin-right: 20px;
  margin-bottom: 5px;
  float: left;
}

.modal-title {
  font-weight: 600;
  font-size: 2rem;
}

/* about section */
#about {
  padding-top: 100px;
  padding-bottom: 80px;
}

#about h2 {
  border-right: 2px solid #0059B2;
  display: inline-block;
  padding: 10px 20px 10px 10px;
}

#about .col-md-12 {
  text-align: center;
  padding-bottom: 60px;
}

#about img {
  border: 1px solid #666;
  padding: 10px;
  max-width: 450px;
}

#about img:hover {
  cursor: default;
  opacity: 100;
}

#about h4 {
  padding-bottom: 10px;
}

.img-md-block {
  display: block;
}

.img-sm-none {
  display: none;
}

/* team section */
#team {
  padding-top: 60px;
  padding-bottom: 100px;
}

#team h2 {
  border-left: 2px solid #0059B2;
  display: inline-block;
  padding: 10px 10px 10px 20px;
}

#team h4 {
  padding-bottom: 40px;
}

#team .col-md-12 {
  text-align: center;
  padding-bottom: 60px;
}

#team img {
  border: 1px solid #666;
  padding: 15px;
}

/* portfolio section */
#portfolio {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

#portfolio h2 {
  border-right: 2px solid #0059B2;
  display: inline-block;
  padding: 10px 20px 10px 10px;
}

/* FILTER CSS */
.filter-wrapper {
  width: 100%;
  margin: 0 0 24px 0;
  overflow: hidden;
  text-align: center;
}

.filter-wrapper li {
  display: inline-block;
  margin: 4px;
}

.filter-wrapper li a {
  color: #999999;
  font-size: 16px;
  font-family: 'lane_-_narrowregular', sans-serif;
  font-weight: bold;
  padding: 8px 17px;
  display: block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.filter-wrapper li a.selected,
.filter-wrapper li a:focus,
.filter-wrapper li a:hover {
  background: #0059B2;
  border-color: transparent;
  color: #ffffff;
}

/* ISOTOPE BOX CSS */
.iso-box-section {
  width: 100%;
}

.iso-box-wrapper {
  width: 100%;
  padding: 0;
  clear: both;
  position: relative;
}

.iso-box {
  position: relative;
  min-height: 50px;
  float: left;
  overflow: hidden;
  margin-bottom: 20px;
}

.iso-box>a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.iso-box>a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fluid-img {
  width: 100%;
  display: block;
}

/* pricing section */
#pricing {
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  width: 100%;
}

.pricing-title {
  margin-bottom: 50px; 
}

#pricing h2 {
  border-left: 2px solid #0059B2;
  display: inline-block;
  padding: 10px 10px 10px 20px;
}

#pricing .plan {
  border: 2px solid #444;
  padding: 20px 20px 40px 20px;
  margin-top: 60px;
}

#pricing .plan .plan-title {
  border-bottom: 2px solid #444;
  padding: 20px 10px 20px 10px;
  margin-bottom: 20px;
}

#pricing .plan small,
#pricing .plan ul li {
  font-family: 'Raleway', sans-serif;
}

#pricing .plan ul {
  padding: 0;
}

#pricing .plan ul li {
  display: block;
  padding: 16px 0px 16px 0px;
}

#pricing .plan .btn {
  background: transparent;
  border: 2px solid #444;
  border-radius: 0px;
  color: #000;
  font-weight: bold;
  width: 140px;
  height: 50px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

#pricing .plan .btn:hover {
  background: #0059B2;
  border-color: transparent;
}

/* contact section */
#contact {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}

#contact h2 {
  border-right: 2px solid #0059B2;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  margin-bottom: 60px;
}

#contact .form-control {
  border: 2px solid #444;
  border-radius: 0px;
  box-shadow: none;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
}

#contact .form-control:focus {
  opacity: 0.8;
  position: relative;
  bottom: 10px;
}

#contact input {
  height: 50px;
}

#contact input[type="submit"] {
  background: #444;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

#contact input[type="submit"]:hover {
  background: #0059B2;
  border-color: transparent;
}

#contact p {
  padding-top: 10px;
}

.form-control::-moz-placeholder {
  color: #202020;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #202020;
}

.form-control::-webkit-input-placeholder {
  color: #202020;
}

/* footer section */
footer {
  padding-top: 60px;
  padding-bottom: 60px;
}

footer h2 {
  border-bottom: 2px solid #444;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

footer p {
  line-height: 20px;
}

footer span {
  font-weight: bold;
  padding-left: 20px;
}

.social-icons {
  padding: 0;
  margin: 0;
}

.social-icons li {
  display: inline-block;
  list-style: none;
}

.social-icons li a {
  background: #444;
  color: #ffffff;
  text-decoration: none;
  font-size: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.social-icons li a:hover {
  background: #0059B2;
}

/* copyright section */
.copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

/* scrolltop section */
.go-top {
  /* background-color: #f2af00; */
  background-color: #0059B2;
  font-size: 26px;
  bottom: 2em;
  right: 2em;
  color: #FFF;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.go-top:hover {
  /* background-color: #444; */
  background-color: #444;
  /* color: #fff; */
  color: #fff;
}

/* MODAL */
.modal .close {
  margin-top: -25px;
  margin-right: 5px;
  font-weight: 600;
  font-size: 2.5rem;
}

.modal-body ul {
  margin-left: -50px;
}

.modal-body ul li{
  list-style: none;
}

.modal-footer {
  border: none;
}

/* media 1199 */
@media only screen and (max-width: 1199px) {
  .navbar-default .navbar-nav li a {
    padding-right: 20px;
    padding-left: 40px;
    line-height: 60px;
  }
}

/* media 991 */
@media only screen and (max-width: 991px) {
  .navbar-nav {
    float: right;
  }

  .navbar-default .navbar-nav li a {
    padding-right: 10px;
    padding-left: 30px;
    line-height: 57px;
    font-size: 13px;
  }

  .logo img {
    width: 180px;
  }

  .menu-nav {
    width: 700px;
    right: 0;
  }
}

/* media 360 */
@media only screen and (max-width: 360px) {
  #team h4 {
    padding-bottom: 30px;
  }
}

/* media 393px (iPhone 14 Pro) */
@media only screen and (max-width: 393px) {
  #about img {
    max-width: 100%;
  }

  #about h2, h3, h4, p {
    text-align: center;
  }
}

/* media 430px (iPhone 14 Pro Max) */
@media only screen and (max-width: 430px) {
  #about img {
    max-width: 100%;
  }

  #about h2, h3, h4, p {
    text-align: center;
  }

  .go-top {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
  }

  
}

/* 480px (Pixel 7 Pro 14 Pro) */
@media only screen and (max-width: 480px) {
  #about img {
    max-width: 100%;    
    margin-bottom: 20px;
    margin-top: -40px;
  }

  .left-image {
    max-width: 100% !important;
  }

  #about h2, h3, h4, p {
    text-align: center;
  }

  /* Service */
  #service img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* media - min-windth:480px and max-width: 820px*/
@media only screen and (min-width: 480px) and (max-width: 820px) {
  .col-md-7 {
    width: 100%;
  }

  .col-md-7 h3 {
    margin-top: 0px;
  }

  .img-sm-none {
    display: none;
  }

  #about .left-image {
    max-width: 40%;
    float: left;
    margin-right: 20px;
  }

  .go-top {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
  }

  /* Service */
  #service img {
    max-width: 100%;
    margin-bottom: 30px;
    float: none;
    margin: 0 auto;
  }
}

/* media 980 */
@media only screen and (max-width: 980px) {
  .navbar-default .navbar-nav li a {
    padding-right: 15px;
    padding-left: 15px;
    line-height: 60px;
  }
}

/* media 1559px (Macbook Air) */
@media only screen and (max-width: 1559px) {
  .col-md-7 {
    width: 100%;
    /* border: 1px solid green !important; */
  }

  #about .left-image {
    max-width: 40%;
    float: left;
    margin-right: 20px;
  }
}



/*:::::::::::::::::::::::::::::::::::::::::::*/
/* CLASSES PARA DEBUGs */
.borda {
  border: 1px solid red;
}
/*:::::::::::::::::::::::::::::::::::::::::::*/