/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    scroll-behavior: smooth;

    --primary: #e9b453;
    --primary-light: #e9b453;
    --secondary: #ad7a19;
    --secondary-light: #009dde;
    --medium: #68a7d1;
    --dark: #313131;
    --light: #ffffff;

}
  

body {
    background: url('../img/fundo-cf.png') no-repeat left;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #012970;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {

  margin-bottom: 20px;
  padding: 20px 10px;
  background-color: #F7F7F7;
  font-weight: 500;

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--primary) transparent var(--primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }

/*--------------------------------------------------------------
# Slide
--------------------------------------------------------------*/
.logo {
  max-width: 200px;
}

.slide img {
  width: 100%;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.5s;
}

.slide img:hover {
  transform: scale(1.05);
}

.slide .slogan {
  margin-top: 30px;
}

.slide .slogan p {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: -30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .slide .slogan p {
    margin-top: -10px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: url('../img/footer-cf.png') no-repeat center;
  background-size: cover;
  padding: 30px 0;
  color: white;
  margin-top: 30px;
}

.footer .logo-footer {
  max-width: 150px;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 10px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 22px;
  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 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  background-color: var(--dark);
}

/*--------------------------------------------------------------
  # cookies
--------------------------------------------------------------*/

  .cookieConsentContainer{
    z-index:999;width:350px;min-height:20px;box-sizing:border-box;padding:30px 30px 30px 30px;background:var(--light);overflow:hidden;position:fixed;bottom:30px;left:30px;display:none
  }
  
  .cookieConsentContainer .cookieTitle a{
    font-family:OpenSans,arial,sans-serif;color:var(--dark);font-size:22px;line-height:20px;display:block}.cookieConsentContainer .cookieDesc p{margin:0;padding:0;font-family:OpenSans,arial,sans-serif;color:var(--dark);font-size:13px;line-height:20px;display:block;margin-top:10px
  }
  
  .cookieConsentContainer .cookieDesc a{
    font-family:OpenSans,arial,sans-serif;color:var(--primary);text-decoration:underline
  }  
  
  .cookieConsentContainer .cookieButton a{
    display:inline-block;font-family:OpenSans,arial,sans-serif;color:var(--light);font-size:14px;font-weight:700;margin-top:14px;background:var(--dark);box-sizing:border-box;padding:15px 24px;text-align:center;transition:background .3s; border: 1px solid var(--dark);
  }  
  
  .cookieConsentContainer .cookieButton a:hover{
    cursor:pointer;
    background:var(--secondary-dark);
    color: var(--dark);
    border: 1px solid var(--dark);
  }
  
  @media (max-width:980px){
    .cookieConsentContainer{bottom:0!important;left:0!important;width:100%!important
    }
  
  }

  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background-color: var(--light);
    transition: all 0.5s;
    z-index: 997;
    padding: 30px 0;
  }

  .header .logo img {
    height: 60px;
    margin-right: 6px;
    transition: all 0.5s;
  }
  
  .header.header-scrolled {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  }

  .header.header-scrolled .logo img {
    height: 40px;
    margin-right: 6px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--primary);
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--secondary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--secondary-light);
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    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;
  }
  
  .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: #4154f1;
  }
  
  .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;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #4154f1;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    background: url('../img/slider/slider-gp3.jpg') top right no-repeat;
    background-size: cover;
}

.hero h1 {
  color: var(--light);
  margin: 0 0 0 8px;
  font-size: 3.6rem;
  font-weight: 900;
  text-shadow: 2px 2px #545454;
}

.hero h3 {
    color: var(--dark);
    margin: 0 0 0 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 1px 1px #f8f8f8;
}

.hero .logo {
    width: 80%;
}

.hero .btn-get-started {
    margin-top: 10px;
    line-height: 0;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.5s;
    color: var(--light);
    background: var(--secondary);
    box-shadow: 0px 5px 30px rgba(30, 31, 43, 0.4);
}

.hero .btn-get-started span {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-weight: bold;
    font-size: 1.6rem;
    transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: var(--secondary-light);
}

.hero .btn-get-started:hover i {
    transform: translateY(3px);
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .hero {
        height: 60vh;
        padding: 120px 0 60px 0;
    }

    .hero h3 {
      color: var(--light);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        text-align: center;   
    }

    .hero h3 {
        color: var(--light);
        font-weight: 500;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
	padding: 80px 0;
  }

  #about .about-content {
	padding-top: 40px;
  }

  #about .about-content h2 {
	color: var(--dark);
	font-weight: 700;
  }

  #about p {
    font-size: 1.2rem;
  }
 
  #about .about-content img {
	width: 70%;
    margin-left: 15%;
    float: center;
  }

  #about .about-img {
	position: relative;
	margin: 30px 30px 30px 30px;
  }
  #about .about-img img {
	width: 100%;
	border: 8px solid var(--light);
	transition: 0.5s;
  }
  #about .about-img img:hover {
	width: 100%;
	transform: scale(1.03);
  }
  #about .about-img::before {
	position: absolute;
	left: -31px;
	top: -30px;
	width: 90%;
	height: 92%;
	z-index: -1;
	content: "";
	background-color: var(--medium);
	transition: 0.5s;
  }
  #about .about-img::after {
	position: absolute;
	right: -31px;
	bottom: -30px;
	width: 90%;
	height: 92%;
	z-index: -1;
	content: "";
	background-color: var(--medium);
	transition: 0.5s;
  }

/*--------------------------------------------------------------
# SERVICE
--------------------------------------------------------------*/
#service {
  background: var(--primary);
	padding: 100px 0;
  color: var(--light);
  }

  #service h2 {
    color: var(--light);
	  font-weight: 700;
    margin: 0;
  }

  #service p {
    font-size: 1.2rem;
    margin-top: 0;
  }

  #service .card {
    background-color: rgba(255, 255, 255, 0.658);
    padding: 5px 15px;
    text-align: center;
    transition: 0.5s;
  }

  #service .card:hover {
    background-color: var(--primary);
    opacity: 90%;
    border: solid 1px var(--light);
  }

  #service .card h3 {
    color: var(--dark);
    font-weight: 600;
  }

  #service .card p {
    color: var(--dark);
    font-size: 1rem;
  }

  #service .card i {
    color: var(--primary);
    font-size: 2.4rem;
  }

  #service .card i span {
    color: var(--dark);
    font-size: 1.8rem;
    margin-left: 20px;
    font-weight: 700;
  }

  #service .card:hover h3 {
    color: var(--light);
  }

  #service .card:hover p {
    color: var(--light);
  }

  #service .card:hover i {
    color: var(--light);
  }

  #service .card:hover i span {
    color: var(--light);
  }

/*--------------------------------------------------------------
# benefits
--------------------------------------------------------------*/
#benefits {
  width: 100%;
  padding: 100px 0;
}

#benefits h2 {
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

#benefits img {
  width: 30%;
  margin-left: 35%;
}

#benefits .benefits {
  transition: 0.5s;
}

#benefits .benefits h4{
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 15px;
  font-weight: 700;
}

#benefits .benefits P{
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: var(--dark);
}

#benefits .benefits:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# simulator
--------------------------------------------------------------*/
#simulator {
  width: 100%;
  padding: 100px 0;
  background-color: var(--secondary);
}

#simulator h2 {
  color: var(--light);
  font-weight: 700;
  margin-bottom: 5px;
}

#simulator p {
  color: var(--light);
  font-size: 1.2rem;
  line-height: 1.4rem;
}

#simulator form {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
}

#simulator form .form-control {
  padding: 12px 15px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

#simulator form .form-control:hover,
#simulator form .form-control:focus {
  outline: none;
  box-shadow: none;
}

#simulator form .btn-primary {
  width: 60%;
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 10px;
}

#simulator form .btn-primary:hover {
  background-color: var(--primary-light);
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
#faq {
  width: 100%;
  padding: 100px 0px 100px 0px;
  background-color: #f6f9ff;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 2rem;
}

.faq .content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 1.2rem;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials {
 padding: 100px 0;
 background-color: var(--primary);
}

#testimonials .title h2 {
  color: var(--light);
  font-weight: 700;
  margin-bottom: 5px;
}

#testimonials .title p {
  color: var(--light);
  font-size: 1.2rem;
  line-height: 1.4rem;
}


.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--dark);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--secondary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-light);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--light);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# galeria
--------------------------------------------------------------*/
#gallery {
    width: 100%;
    padding: 80px 0;
}

#gallery h2 {
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}

#gallery img {
    margin: 0;
}

#gallery img:hover {
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
	filter: grayscale(100);
}
