/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --font-default: 'Montserrat', sans-serif, Arial;
    --color-default: #000;
    --color-primary: #fff;
    --color-secondary: #fff;
    --color-semi-black: #2B2523;
    --color-off-white: #fffef3;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding: var(--scroll-padding, 103px);
}

/* General */
body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color: var(--color-primary);
}
a {
    color: var(--color-secondary);
    text-decoration: none;
}
a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-default);
}

/* Buttons */
.btn-default,
.btn-default:focus {
    padding: 12px 50px;
    color: var(--color-default);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-default:hover,
.btn-default:focus:hover {
    color: var(--color-primary);
    background: var(--color-default);
    border-color: var(--color-secondary);
}

.btn-default-2,
.btn-default-2:focus {
    padding: 12px 50px;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 16px;
}
.btn-default-2:hover,
.btn-default-2:focus:hover {
    color: var(--color-primary);
    background: var(--color-default);
    border-color: var(--color-secondary);
}

/* Sections */
section {
    overflow: hidden;
    background-color: var(--color-default);
}

/* Sub Header */
#sub-header {
    height: 103px;
    display: flex;
    align-items: center;
    background-color: #043477;
}
#sub-header .lado-direito {
    display: flex;
    justify-content: space-between;
}
#sub-header span {
    font-size: 24px;
    color: #fff;
    font-style: italic;
}
#sub-header .wpp-btn span {
    font-style: normal;
    margin-right: 30px;
}
#sub-header .fa {
    font-size: 28px;
}
#sub-header .fa.fa-facebook {
    margin-right: 10px;
}

/* Header */
#header {
    background-color: #fff;
    /*transition: all 0.5s; */
    z-index: 997;
}
#header .logo img {
    max-height: 98px;
}
#header.header-scrolled {
    background: #fff;
    margin-top: 0;
}
.nav {
    height: 103px;
}

/* Navbar */
.navbar .social {
    margin-left: 30px;
}
.navbar .social .styled-icons ul {
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
}
.navbar .social .styled-icons li {
    list-style: none;
    margin: 0 5px;
}
.navbar .social .styled-icons li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    text-align: center;
    transition: .6s;
}
.navbar .social .styled-icons li .fa {
    font-size: 15px;
    line-height: 30px;
    transition: .3s;
    color: var(--color-primary);
}
.navbar .social .styled-icons li a:hover,
.navbar .social .styled-icons li .fa:hover {
    color: var(--color-secondary);
}

.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar>ul>li {
    white-space: nowrap;
    padding: 0 0 0 28px;
}
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 400;
    color: #043477;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
}
.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 4px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before,
.navbar .current-menu-item a:before,
.navbar.page .current-menu-item a:before {
    visibility: visible;
    width: 17px;
}
.navbar .current-menu-item a,
.navbar.page .current-menu-item a{
    color: var(--color-default);
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--color-default);
}
.navbar>ul>li>a.button:before {
    visibility: hidden;
}
.navbar.scrolled a,
.navbar.scolled a:focus {
    color: #043477;
}
.navbar.scrolled a:hover,
.navbar.scolled a:hover:focus {
    color: var(--color-primary);
}
.navbar.scolled>ul>li>a:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 4px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}
.navbar.page a,
.navbar.page a:focus {
    color: var(--color-primary);
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-default);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-default);
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
}
.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.navbar.navbar-mobile>ul>li>a:before,
.navbar.navbar-mobile .current-menu-item a:before,
.navbar.navbar-mobile .current-menu-item a:before {
    visibility: hidden;
    height: 0;
    width: 0;
    background-color: transparent;
}
.navbar.navbar-mobile>ul>li>a:focus,
.navbar.navbar-mobile>ul>li>a:hover,
.navbar.navbar-mobile>ul>li>a:hover:focus {
    color: var(--color-primary);
}
.navbar.navbar-mobile .button, .navbar.navbar-mobile .button:focus {
    margin: 10px 20px;
}
.navbar .menu-item-has-children ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 1px;
}
.navbar .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    margin-right: 10px;
}
.mobile-nav-hide {
    color: var(--color-primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
}
.mobile-nav-active {
    overflow: hidden;
}
i.mobile-nav-toggle.mobile-nav-show.fa.fa-bars,
i.mobile-nav-toggle.mobile-nav-hide.fa.fa-times {
    color: var(--color-primary);
}
.mobile-nav-active .navbar {
    right: 0;
}
.mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
}

/* Section */
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

/* Hero */
section#hero {
    padding: 0;
}
#hero .col-md-12{
    padding: 0;
}
#hero .swiper-container{
    position: relative;
    background: transparent;
    height: 100vh;
}
#hero .banner {
    width: 100%;
    min-height: 80vh;
    background-color: var(--color-default);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10.5%;
    margin-top: 180px;
}
/* #hero .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
} */
#hero .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.7;
}
#hero .banner p {
    color: var(--color-default);
    font-size: 64px;
    font-weight: 400;
    line-height: normal;
	position: relative;
    z-index: 1;
}
#hero h1 {
    font-size: 64px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Hero Pages */
section#hero-page {
    padding: 0;
    margin-top: 70px;
}
#hero-page .col-md-12{
    padding: 0;
}
#hero-page .swiper-slide{
    width: 100%;
    min-height: 400px;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0 60px 0;
    color: var(--color-secondary);
}
#hero-page .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 44, 76, 0.50);
    mix-blend-mode: multiply;
    z-index: 0;
}
#hero-page .swiper-slide h2 {
    padding: 0;
    font-size: 44px;
    font-weight: 700;
    color: var(--color-primary);
    z-index: 1;
}
#hero-page .swiper-slide p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    z-index: 1;
}
#hero-page iframe{
    width: 100%;
}

/*
    * Homepage
*/
/* Sobre */
#sobre {
    padding: 70px 30px;
    background-color: #fff;
    color: blue;
}
#sobre h2 {
    color: var(--color-primary);
    font-size: 48px;
    font-weight: 700;
}
#sobre .left {
    background-color: #1AA0D9;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#sobre .left h2 {
    font-size: 48px;
}
#sobre .left h5 {
    font-size: 37px;
    color: #043477;
}
#sobre .left p {
    font-size: 20px;
    color: #fff;
}
#sobre .btn-default, .btn-default:focus {
    color: #043477;
    font-size: 18px;
    font-weight: 600;
}

/* Menu */
#quick-menu {
    background-color: #043477;
    padding: 80px 120px;
}
#quick-menu .text {
    color: #fff;
}
#quick-menu .text h2 {
    font-size: 64px;
}
#quick-menu .text p {
    font-size: 34px;
}
#quick-menu .the-menu {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
}
#quick-menu .btn-default-2, .btn-default-2:focus {
    width: 550px;
    font-size: 28px;
    margin-bottom: 15px;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    font-weight: 400;
}

/* Servicos */
#servicos {
    color: #fff;
    padding: 70px 30px;
    background-color: #fff;
}
#servicos h2 {
    color: #043477;
    font-size: 48px;
}
#servicos h5 {
    font-size: 37px;
}
#servicos p {
    font-size: 24px;
}
#servicos .text {
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
#servicos .text.txt-1 {
    background-color: #1AA0D9;
}
#servicos .text.txt-2 {
    background-color: #043477;
}
#servicos .txt-2 h2 {
    color: #fff;
}
#servicos .btn-fale-conosco {
    margin: 55px 0;
}
#servicos .items {
    margin-bottom: 40px;
}
#servicos .items img {
    width: 100%;
}

/* Contato */
section#contact-us {
    background-color: var(--color-default);
    text-align: center;
}
#contact-us h4{
    font-family: var(--font-default);
    color: var(--color-primary);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    letter-spacing: 16.8px;
    margin: 90px 0;
}
#contact-us svg {
    display: block;
    margin: 0 auto;
    text-align: center;
}
#contact-us .wpcf7{
    margin-top: 50px;
}
#contact-us input.wpcf7-form-control.wpcf7-submit {
  display: block;
  margin: 0 auto;
}
#contact-us .btn-default,
#contact-us .btn-default:focus {
    color: var(--color-primary);
    background: transparent;
    border-color: var(--color-secondary);
}
#contact-us .btn-default:hover,
#contact-us .btn-default:focus:hover {
    color: var(--color-default);
    background: var(--color-primary);
    border-color: var(--color-semi-black);
}

/*
    * Footer
*/
footer {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
}
footer img{
    margin-bottom: 45px;
}
footer p{
    color: #043477;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
}
footer h6 {
    color: #043477;
    font-size: 24px;
    font-weight: 800;
}
footer .social {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
footer .social .styled-icons ul {
    padding: 0;
    margin: 0;
}
footer .social ul.styled-icons {
    display: flex;
    margin: 0;
    padding: 0;
}
footer .social .styled-icons li {
    list-style: none;
    margin: 0 5px;
}
footer .social .styled-icons li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    transition: .6s;
}
footer .social .styled-icons li .fa {
    font-size: 35px;
    line-height: 50px;
    transition: .3s;
    color: #1AA0D9;
}
footer .social .styled-icons li a:hover {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-primary); /* Change border color on hover */
}

footer .social .styled-icons li a:hover .fa {
    color: var(--color-primary);
}
footer a.btn-default,
footer a.btn-default:focus {
    color: var(--color-primary);
    background: transparent;
    border-color: var(--color-secondary);
    font-weight: 400;
    cursor: pointer;
    border-radius: 27px;
    margin: 0 5px;
}
footer a.btn-default:hover,
footer a.btn-default:focus:hover {
    color: var(--color-default);
    background: var(--color-primary);
    border-color: var(--color-semi-black);
}
.sub-footer {
    background-color: #043477;
    padding: 0;
    margin: 0;
    color: #fff;
}
.sub-footer .sub {
    padding: 30px 0;
}
.sub-footer p {
    margin: 0;
    text-align: center;
    font-size: 22px;
}
.sub-footer p strong {
    font-size: 28px;
}

/* Voltar ao topo */
.back-to-top {
    visibility: hidden;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    width: 72px;
    height: 72px;
    text-align: center;
    line-height: 72px;
    position: fixed;
    bottom: 110px;
    right: 15px;
    z-index: 90;
    cursor: pointer;
    opacity: 0;
    border-radius: 3px;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    transition: all .4s
  }
.back-to-top .fa {
    font-size: 22px;
    vertical-align: middle
}
.back-to-top:hover {
    background-color: var(--color-default);
    color: var(--color-primary);
    opacity: 1;
}
.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

/*
  * Botao Flutuante Whatsapp
*/
#wa_button {
  bottom: 0px;
  right: -35px;
  position: fixed;
  z-index: 999;
}
.img-circle {
  background-color: #25d366;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
.circlephone {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border: 2px solid #25d366;
  width: 150px;
  height: 150px;
  bottom: -25px;
  right: 10px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: 0.5;
  -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
  -o-animation: circle-anim 2.4s infinite ease-in-out !important;
  animation: circle-anim 2.4s infinite ease-in-out !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-fill {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  background-color: #25d366;
  width: 100px;
  height: 100px;
  bottom: 0px;
  right: 35px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
  animation: circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.img-circle {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  bottom: 14px;
  right: 49px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.9;
}
.img-circleblock {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  background-image: url("../assets/images/wp.png");
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.img-circle:hover {
  opacity: 1;
}
@keyframes pulse {
  0% {
      transform: scale(0.9);
      opacity: 1;
  }
  50% {
      transform: scale(1);
      opacity: 1;
  }
  100% {
      transform: scale(0.9);
      opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(0.95);
      opacity: 1;
  }
  50% {
      -webkit-transform: scale(1);
      opacity: 1;
  }
  100% {
      -webkit-transform: scale(0.95);
      opacity: 1;
  }
}
@keyframes tossing {
  0% {
      transform: rotate(-8deg);
  }
  50% {
      transform: rotate(8deg);
  }
  100% {
      transform: rotate(-8deg);
  }
}
@-webkit-keyframes tossing {
  0% {
      -webkit-transform: rotate(-8deg);
  }
  50% {
      -webkit-transform: rotate(8deg);
  }
  100% {
      -webkit-transform: rotate(-8deg);
  }
}
@-moz-keyframes circle-fill-anim {
  0% {
      -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
  50% {
      -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
      opacity: 0.2;
  }
  100% {
      -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
}
@-webkit-keyframes circle-fill-anim {
  0% {
      -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
  50% {
      -webkit-transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
  }
  100% {
      -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
}
@-o-keyframes circle-fill-anim {
  0% {
      -o-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
  50% {
      -o-transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
  }
  100% {
      -o-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
}
@keyframes circle-fill-anim {
  0% {
      transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
  50% {
      transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
  }
  100% {
      transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
  }
}