

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --main: #003056;
  --header-scroll3: rgba(0, 48, 86, 0.9);
  --header-scroll: rgba(25, 28, 32, 0.9);
  --secundary2: #0d8c5f;
  --secundary: #f2b705;
  --other-color1: #f2b705;
  --blue-5: rgba(52, 58, 64);

  --header-scroll2: rgba(0, 95, 159, 0.9);
  --blue-52: rgba(0, 95, 159);
  --degrade-first: var(--gray);
  --degrade-second: rgba(25, 28, 32);
}

body {
  color: #444444;
}

h1, h2, h3{
  font-family: "Poppins", sans-serif;
}

p,h4, h5, h6  {
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

a {
  font-family: "Poppins", sans-serif;
}

a:hover {
  color: var(--other-color1);
  text-decoration: none;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--other-color1);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: var(--other-color1);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: var(--header-scroll);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: var(--header-scroll);
}

#header .teste{
  justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
} 

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  /*filter:drop-shadow(0 0 0.75rem lightblue)*/
}

.nav-menu .logo-mobile
{
  display:none;
  text-align: center;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

#access {
  background: var(--secundary);
  color: black;
  font-weight: 600;
}

#access:hover {
  color: #fff;
  background: var(--other-color1);
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 5px 15px 5px 15px;
  margin-left: 5px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: var(--other-color1);
  text-decoration: none;
}

@media (max-width: 1199px) and (min-width:990px) {
  .logo {
    margin-right: 0 !important;
  }  

  #header
  {
    height:90px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: var(--header-scroll);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav .logo-mobile
{
  display:block;
  text-align: center;
}

.mobile-nav #access {
  background: var(--header-scroll);
  color: #fff;
  font-weight: 600;
}

.mobile-nav #access:hover {
  color: var(--other-color1);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--other-color1);
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(20, 21, 28, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--degrade-first) 0%, var(--degrade-second) 100%);
  padding: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}

#hero h2 {
  color: var(--secundary);
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero i {
  color: var(--other-color1);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--other-color1);
}

#hero .btn-get-started:hover {
  background: var(--other-color1);
  color: #fff;
  text-decoration: none;
}

#hero .img-fluid {
  max-width: 600px;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 28px;
  }

  #hero .img-fluid {
    max-width: 100%;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--other-color1);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2a2c39;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 22px;
  /*color: var(--other-color1);*/
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: var(--other-color1);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--other-color1);
}

.about .content .btn-learn-more:hover {
  background: var(--other-color1);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# techs
--------------------------------------------------------------*/
.techs .nav-tabs {
  border: 0;
}

.techs .nav-link {
  border: 1px solid #d4d6df;
  padding: 5px 15px 5px 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.techs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.techs .nav-link:hover {
  color: var(--other-color1);
}

.techs .nav-link.active {
  background: var(--other-color1);
  color: #fff;
  border-color: var(--other-color1);
}

@media (max-width: 768px) {
  .techs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }

  /* .tab-content .content, #about .content {
    padding: 0 40px;
  } */
}

@media (max-width: 575px) {
  .techs .nav-link {
    padding: 15px;
  }
  .techs .nav-link i {
    font-size: 24px;
  }
}

.techs .tab-content {
  margin-top: 30px;
}

.techs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.techs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.techs .tab-pane ul li {
  padding-bottom: 10px;
}

.techs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  /*color: var(--other-color1);*/
}

.techs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 0;
  background: url(../img/home/portal-gensafe.webp);
  background-size: auto;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.cta-inner {
  background: rgba(42, 44, 57, 0.9) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAD0lEQVQIW2NkQABjRmQOAAM+AGkQsDBSAAAAAElFTkSuQmCC) repeat;
  padding: 70px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  position: relative;
  color: #fff;
  padding: 5px 15px 5px 15px;
  margin-left: 5px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  color: black;
  background: var(--secundary);
}

.cta .cta-btn:hover {
  color: #fff;
  background: var(--other-color1);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# apps
--------------------------------------------------------------*/
.apps .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.apps .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.apps .icon {
  position: absolute;
  left: 5px;
  /* top: calc(50% - 30px); */
}

.apps .icon i {
  font-size: 50px;
  line-height: 1;
  transition: 0.5s;
}

.apps .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid var(--other-color1);

}

.apps .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.apps .title a:hover {
  color: var(--other-color1);
}

.apps .description {
  font-size: 14px;
  /*margin-left: 40px;*/
  line-height: 24px;
  margin-bottom: 0; 
}

#apps .icon{
  display:none;
}

.apps ul{
  list-style: none;
  padding: 0;
}

.apps ul li {
  font-size: 14px;
  padding-right: 4px;
}

.apps ul i {
  font-size: 20px;
  padding-right: 4px;
  /*color: var(--other-color1);*/
}

/*--------------------------------------------------------------
# Differential
--------------------------------------------------------------*/
.diff .icon-box{
  display: flex;
  align-content: center;
  align-items: flex-start;
}

.diff .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.diff i {
  font-size: 30px;
  color: var(--other-color1);
}

.diff i:hover{
  color: var(--other-color1);
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  /*color: var(--other-color1);*/
  float: left;
  width: 44px;
  height: 44px;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .email a, .contact .phone a {
  color: #2a2c39;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .address, .contact .info .email, .contact .info .phone {
  margin-bottom: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--other-color1);
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--blue-5);
  color: #fff;
  font-size: 14px;
  display: flex;
}

#footer img {
  margin-top: 1em;
}

#footer .logo
{
  /*filter:drop-shadow(0 0 0.75rem lightblue);*/
}

#footer .social-links{
  text-align: right;
  margin-top: 20px;
  margin-right: 0px;
}

#footer .social-links a {
  font-size: 16px;
  display: inline-block;
  background: var(--other-color1);
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 0px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--other-color1);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin-bottom: 10px;
}

#footer .policy{
  text-align: right;
  margin-bottom: 10px;
}

#footer .policy a{
  color: #fff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 771px) {
  #footer .logo {
    display:block;
  }

  #footer .policy {
    text-align: right;
    float:right;
  }
  #footer .social-links {
    text-align: right;
  }
  #footer .copyright {
    text-align: left;
    
  }
}

@media (max-width: 770px) {
  #footer .logo {
    display:none;
  }

  #footer .policy {
    text-align: center;
  }
  #footer .social-links {
    text-align: center;
  }
  #footer .copyright {
    text-align: center;
  }
}


/* 
Política de Privacidade
*/
.termos-politica{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: var(--blue-5);
  padding: 20px;
  line-height: 24px;
  font-size: 14px;
  color: #ffffff;
  z-index: 999;
}

.termos-politica a{
  color: var(--yellow);
  width:25px;
}

.termos-politica p{
  font-size: 13px;
  line-height: 1;
  font-weight: normal; 
}

#acceptPolicy{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: black;
  background: var(--secundary);
}

#acceptPolicy:hover {
  color: #fff;
  background: var(--other-color1);
}

#configPolicy{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: black;
  background: var(--secundary);
}

#configPolicy:hover {
  color: #fff;
  background: var(--other-color1);
}

.contentPolicy {
  opacity : 0.3;
}

.dp-slider-text {
  padding-top: 2px;
  text-align: right;
  font-weight: bold;
}
.cookie-description {
  height: 100%;
  display: block;
  max-height: max-content;
  min-height: auto;
  line-height: 1.3;
  font-size: 13px;
  padding: 5px 0;
  margin: 0 auto 0 0;
  width: 90% !important;
  text-align: left;
}
.dp-cookie-list {
  font-size: 1em;
}

.dp-cookie-list .cookie-description {
  font-size: 0.8em;
}

.dp-cookie-action {
  display: flex;
  height: 22px;
  margin-bottom: 10px;
  border-top: 1px solid #E8E7E7;
  padding-top: 15px;
}

.dp-cookie-action .cookie-name {
  display: flex;
  flex: 1;
}

.dp-cookie-action .dp-switch {
  width: 62px;
}

.modal-policy p{
  font-size: 13px;
  line-height: 1;
  font-weight: normal; 
  text-align: left;
}

#modal_policy .button
{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: black;
  background: var(--secundary);
}

#modal_policy .button:hover {
  color: #fff;
  background: var(--other-color1);
}


