/* Fonts */
:root {
  --font-default: "Inter", sans-serif;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #0B6BC0;
  --color-secondary: #0e1d34;
  --color-green: #0AA605;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

.btn_red {
  border-radius: 10px;
  background: #F13938;
  padding: 15px 20px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: block;
  width: fit-content;
  border: 1px solid #F13938;
  transition: all 0.5s;
}

.btn_red:hover, .btn_red:active, .btn_red:focus {
  background: #FFF;
  color: #F13938;
}

.btn_blue {
  border-radius: 10px;
  background: #0B6BC0;
  padding: 15px 20px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: block;
  width: fit-content;
  transition: all 0.5s;
  border: unset;
}

.btn_blue:hover, .btn_blue:active, .btn_blue:focus {
  background: #092F61;
  color: #FFF !important;
}

.mobile { display: none; }

@media (max-width: 778px) {
  .mobile { display: block; }
  .desktop { display: none; }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Header interno
--------------------------------------------------------------*/
.header-interno {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #000D31;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
}

.header-interno .logo img {
  max-height: 40px; 
}

.pad_menu { padding-top: 100px; }

/*--------------------------------------------------------------
# MENU
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li a {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}

.navbar li a:hover, .navbar li a:active, .navbar li a:focus {
  text-decoration: underline;
}

.navbar .get-a-quote {
  color: #fff;
  border-radius: 10px;
  background: #0AA605;
  border: 1px solid #0AA605;
  padding: 10px 15px;
  transition: all 0.5s;
}

.navbar .get-a-quote:focus,
.navbar .get-a-quote:hover,
.navbar .get-a-quote:focus:hover {
  border-radius: 10px;
  border: 1px solid #86BF05;
  background: #86BF05;
  box-shadow: 0px 0px 15px 0px #0AA605;
  text-decoration: unset;
}


/*--------------------------------------------------------------
# Section ícones
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}

.featured-services .service-item img {
  margin-bottom: 15px;
  width: 100px;
}

.featured-services .service-item .title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}

.featured-services .service-item .description {
  color: rgba(0, 9, 20, 0.48);
  font-size: 15px;
  font-weight: 500;
}


@media (max-width: 778px) {
.featured-services .service-item {
    text-align: center;
  }
}

.azul { color: #069EDF; }
.laranja { color: #F98E3A; }
.roxo { color: #7F5EC4; }
.verde { color: #41AD13; }


/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action {
  background: url("../img/IMG_background.png") center center;
  background-size: cover;
  padding: 100px 0;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin: 30px 0;
}

@media (max-width: 778px) {
  .call-to-action {
    background-position: left;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 0px;
}

.features .features-item h3 {
  color: #092F61;
  font-size: 30px;
  font-weight: 800;
}

.features .features-item p {
  color: rgba(0, 9, 20, 0.48);
  font-size: 20px;
  font-weight: 500;
}

.color_box .box-content {
  border-radius: 15px;
  padding: 40px 35px;
  margin-bottom: 20px;
}

.color_box .box-content h3 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

.color_box .box-content p {
  color: rgba(0, 9, 20, 0.48);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.color_box .box-content img {
  width: 100%;
}

.color_box .box-blue {
  background: rgba(11, 107, 192, 0.15);
}

.color_box .box-blue h3 {
  color: #0B6BC0;
}

.color_box .box-blue img {
  padding-top: 25px;
}

.color_box .box-red {
  background: rgba(241, 57, 56, 0.15);
}

.color_box .box-red h3 {
  color: #F13938;
  margin-top: 23px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contato {
  padding: 80px 0;
}

.contato-info {
  padding-right: 40px;
}

.contato-info h3 {
  color: #0B6BC0;
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
}

.contato-info h2 {
 color: #092F61;
  font-size: 30px;
  font-weight: 800;
  margin: 25px 0;
}

.contato-info p {
 color: rgba(0, 9, 20, 0.48);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

.contato-box {
  border-radius: 15px;  
  background: #FFF;
  box-shadow: 0px 0px 27px 0px rgba(9, 47, 97, 0.43);
  padding: 45px;
}

.contato input,
.contato textarea {
  border-radius: 10px;
  background: rgba(9, 47, 97, 0.10);
  display: block;
  border: unset;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
}

.contato label {
  color: #092F61;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

::placeholder {
  color: rgba(128, 132, 137, 0.35);
  font-size: 20px;
  font-weight: 400;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: rgba(128, 132, 137, 0.35);
  font-size: 20px;
  font-weight: 400;
}


@media (max-width: 778px) {
  .contato {
    padding-top: 30px;
  }

  .contato-box {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  
  .header .logo img {
    max-height: 50px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-image: url("../img/topo.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 15% 0 10% 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .hero {
    min-height: 100vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero p {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

.div_note {
  position: relative;
  z-index: 10;
}

.div_note h2 {
  color: #092F61;
  font-size: 30px;
  font-weight: 800;
}

.div_note img {
  margin-top: -50%;
  width: 100%;
}


@media (max-width: 991px) {
  .div_note img {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: rgba(0, 13, 49, 0.10);
  padding: 50px 0 0;
  color: #808489;
}

.footer .footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  color: #092F61;
  font-size: 18px;
  font-weight: 800;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  line-height: 167.023%;
}

.footer .footer-links ul a:hover {
  color: #092F61;
}

.footer .footer-contact p {
  color: #808489;
  font-size: 14px;
  font-weight: 600;
  line-height: 167.023%;
}

.footer .copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 13, 49, 0.25);
  padding: 20px 0;
  color: #000D31;
  font-size: 14px;
  font-weight: 600;
}