* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	font-family: Arial, sans-serif;
  font-size: 18px;
}


html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(17, 17, 17); 
  position: fixed;
  z-index: 1000;
  height: 60px;          
  padding: 0 1.5rem;     
  gap: 10px; 
  width: 100%;   
}
.entrar-botao {
  display: flex;
  padding: 5px 15px;
  background-color: #00aee0;
  color: #fff;
  border: none;
  font-weight: bold;
  transition: color 0.3 ease;
  cursor: pointer;
}
.entrar-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 999;
}
.entrar-botao:hover {
  background-color: #0095D6;
}

.entrar-menu p {
  font-size: 15px;
}
.entrar-menu {
  position: absolute;
  top: 180%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  display: none;
  min-width: 150px;
  z-index: 999;
}
.entrar-menu a {
  display: inline-block;
  padding: 5px 0;
  color: #333;
}
.entrar-menu a:hover {
  background-color: #f2f2f2;
  color: #0095D6;
}

.mobile-entrar2 {
    display: none;
  }
.entrar-botao2 {
  display: flex;
  padding: 5px 15px;
  background-color: #00aee0;
  color: #fff;
  border: none;
  font-weight: bold;
  transition: color 0.3 ease;
  cursor: pointer;
}
.entrar-wrapper2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 999;
}
.entrar-botao2:hover {
  background-color: #0095D6;
}

.entrar-menu2 p {
  font-size: 12px;
}
.entrar-menu2 {
  position: absolute;
  top: 180%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  display: none;
  min-width: 150px;
  z-index: 999;
}
.entrar-menu2 a {
  display: inline-block;
  padding: 5px 0;
  color: #333;
}
.entrar-menu2 a:hover {
  background-color: #f2f2f2;
  color: #0095D6;
}

.navbar {
  display: flex;
  align-items: center;
  flex: 1;
}
/* Ajusta lista de navegação */
.navbar .lista {
  gap: 15px;            
  font-size: 16px;      
}
.entrar-wrapper li {
  list-style: none;
}

.lista {
  display: flex;
  gap: 20px;
	justify-content: center;
  flex: 1;
	margin: 0;
  padding: 0;
	font-size: 90%;
  flex-wrap: wrap;
  align-items: center;
}

/* Botão hamburguer */
.hamburguer {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

.lista-group {
  color: white;
  transition: color 1.0 ease;
 }

.lista-group:hover {
  color:#0095D6;
 }

 .logo img {
  width: 110px;        
  height: 3rem;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

 
a {
  text-decoration: none;
}

ul {
  list-style: none;
  justify-content: center;
   
}
a, button, input, .form-group2 input {
  transition: all 0.3s ease-in-out;
}

.lista span {
  color: #00aee0;
}

@media (max-width: 768px) {
  header {         
    width: 100%;             
    max-width: none;         
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
  }

 .lista span {
    background-color: #00aee0;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 0;
  }


  .lista {
    display: none;
    position: absolute;
    top: 100%;       
    width: 100vw;    
    max-width: 100%; 
    flex-direction: column;
    border-radius: 0 0 12px 12px;
    padding: 15px 0;
    gap: 12px;
    z-index: 999;
    background-color: black;
  }

  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
 
  .lista li {
    width: 100%;
    list-style: none;
  }

 
  .lista a{
    display: block;
    width: 100%;           
    padding: 10px 18px;
    text-decoration: none;
    box-sizing: border-box;
  }

  .lista a.active,
  .lista a span {
    display: block;
    width: 100%;
    padding: 10px 18px;      
    background: #00aee0;
    color: #fff;
    box-sizing: border-box;
  }
 
  .mobile-entrar {
    display: none;
  }
  
  .hamburguer-wrapper {
    display: flex;
    margin-left: auto;   
  }

  .hamburguer { 
    display: flex;       
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }

  .mobile-entrar2 {
    width: 100%;
    display: flex;
    justify-content: flex-start; 
    padding: 0 18px;
  }

  .entrar-wrapper2 {
    width: 100%;
  }

  .entrar-botao2 {
    width: 100%;            
    text-align: left;         
    padding: 10px 18px;
    background-color: #00aee0;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    align-items: flex-start;
  }

  .entrar-botao2:hover {
    background-color: #0095D6;
  }


  .entrar-menu2 p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #00aee0;
  }

  .entrar-menu2 a {
    display: block;
    padding: 0;
    font-size: 14px;
    color: #333;
  }

  .entrar-menu2 a:hover {
    color: #00aee0;
    background: none;
  }

  .entrar-menu2 a {
    display: inline-block;
    padding: 0;
    font-size: 16px;
    color: #333;
  }
}

@media (max-width: 1100px) {
  header {         
    width: 100%;             
    max-width: none;         
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
    padding: 0 1rem;
  }

  .lista {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 95%;
    flex-direction: column;
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    gap: 10px;
    z-index: 999;
    background-color: black;
  }
  
 .mobile-entrar {
    display: none;
  }
  
  .hamburguer-wrapper {
    display: flex;
    margin-left: auto;   
  }

  .hamburguer { 
    display: flex;       
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }

  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
 
  .mobile-entrar2 {
  width: 100%;              
  display: flex;            
  justify-content: center;  
}

.entrar-wrapper2 {
  justify-content: center;  
  width: 100%;
}

.mobile-entrar2 .entrar-botao2 {
  width: auto;              
  max-width: 300px;
  text-align: center;
}
  
}
@media (min-width: 1600px) {
  .lista-group {
    font-size: 1.1rem;
  }
  .logo img {
  width: 210px;        
  height: 4rem;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .entrar-botao {
  font-size: 20px;
 }

 .lista span {
  font-size: 1.1rem;
 }
}


.main-container{
  padding: 40px 20px;
  padding-top: 100px;
  background: linear-gradient(to bottom, white, #f8f8f8);
}

.container-principal {
  display: flex;
  min-height: 400px;  
  justify-content: center;
  align-items: center;
  padding: 20px;   
}

.cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 100px;
  margin-top: 100px; 
}

.cabecalho-texto {
  flex: 1 1 400px;
}

.cabecalho-texto h1 {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 20px;
}

.cabecalho-texto p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.cabecalho-imagem {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: flex;
  margin-right: 10%;
  height: 24rem;
  max-width: 500px;
  gap: 5px;
}
 @media (max-width: 1000px) {   /* telefone  */
  .cabecalho {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    text-align: center;
  }
  .cabecalho h1 {
    font-size: 2rem;
    max-width: 350px;
  }

  .cabecalho-texto p {
    font-size: 1.2rem;
    max-width: 350px;
  }
  .cabecalho-imagem {
    height: 0.5rem;
    object-fit: contain;
    width: 10%;
    margin: 0 auto;
  }
  .cabecalho-imagem img {
    height: 14rem;
  }
  .main-container {
    padding: 20px 10px;
  }
}

@media (min-width: 1800px) {
  .container-principal {
    padding: 115px;
  }

  .cabecalho-texto h1 {
    font-size: 2.5rem;
    display: flex;
  }
  .cabecalho-texto p {
    font-size: 1.5rem;
    max-width: 1800px;
  }
  .cabecalho-imagem {
    height: 25rem;
    width: 100%;
    object-fit: contain;
    gap: 5px;
  }
  .btn-saibamais {
    padding: 10px 20px;
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .container-principal {   
    height: 90vh;       
  }
}



.container {
  max-width: 1300px;
  margin: 0 auto; 
  padding: 20px;  
  box-sizing: border-box;
}


.empresa-texto{
  background: linear-gradient(135deg, #00aee0, #0056b3);
  color: white;
  border-radius: 10px;
  padding: 40px 60px;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.empresa-texto h2{
  font-size: 2rem;
  margin-bottom: 10px;
}

.empresa-texto p{
  font-size: 1.2rem;
}

/* QUEM SOMOS */
.container-quemsomos{
  max-width: 900px;
  text-align: left;
  flex-direction: column;
  margin: auto;
  margin-top: 5%;
  cursor: default;
}

.quem-somos h2{
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0056b3;
  border-bottom: 3px solid #007bff;
}
.quem-somos p{
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  text-align: left;
}

.container-diferencial{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px;
 
  gap: 20px;
}

.card{
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #00c8ff, #0056b3);
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px  #023a5f;
  margin-top: 10%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 0 20px  #023353;
}
.card i{
  font-size: 2rem;
  margin-bottom: 15px;
}
.card h3{
  font-size: 2rem;
  margin-bottom: 10px;
}
.card p{
  font-size: 1rem;
}


 
/*LINHA DO TEMPO */
.linha-do-tempo{
  padding: 60px 20px;
  text-align: center;
  position: relative;
}
.linha-do-tempo h2{
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0056b3;
}
.timeline{
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
  margin: auto;
  border-left: 4px solid #0077cc;
  cursor: default;
}
.timeline::before{
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom,#167eee, #0077cc);
}

.evento{
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
  text-align: left;
}
.evento::before{
  content: "";
  position: absolute;
  top: 5px;
  left: -12px;
  width: 10px;
  height: 10px;
  background: linear-gradient(#096bd3,#0077cc);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #023150;
}

.ano{
  font-weight: bold;
  font-size: 1.2rem;
  color: #023150;
  margin-bottom: 5px;
}
.descricao{
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.evento:hover{
  background-color: #e6f3ff50;
  border-radius: 8px;
  padding: 10px;
  transition: background-color 0.3s ease ;
}

/* Rodapé */
.footer{
  /* background-color: #074b79; */
  color: #888;
  padding: 40px 20px 20px;  
  background-color: white;
}

.footer-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  
}

.footer-logo img{
  width: 100%;
  max-width: 145px;
  height: 2rem;
  object-fit: contain;
}

.footer-logo p{
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

.footer-links h4,
.footer-social h4{
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

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

.footer-links ul li{
  margin-bottom: 8px;
}

.footer-links ul li a{
  color: #333;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover{
  color: #00aee0;
}

.footer-propaganda{
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}



.footer-solucoes h4{
  margin-bottom: 10px;
  color: #333;
}

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

.footer-solucoes ul li a{
  display: flex;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px; 
}

.footer-solucoes ul li{
  margin-bottom: 8px;
}

.footer-solucoes ul li a:hover{
  color: #00aee0;
}

.footer-parcerias h4{
  margin-bottom: 10px;
  color: #333;
}

.footer-parcerias ul{
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.footer-parcerias ul li a{
  display: flex;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px; 
  margin-bottom: 8px;
}

.footer-parcerias ul li{
  margin-bottom: 8px;
}

.footer-parcerias ul li a:hover{
  color:#00aee0;
}

.footer-social .social-icons a{
  color: #333;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-social .social-icons a:hover i.fa-instagram{
  color:  #cc2366;
}

.footer-social .social-icons a:hover i.fa-facebook-f{
  color:  #1877f2;
}

.footer-social .social-icons a:hover i.fa-linkedin-in{
  color:  #0077b5;
}

.footer-social .social-icons a:hover i.fa-youtube{
  color:  #ff0000;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: white;
  background: radial-gradient(circle at center, #005fa3,#2A3D50);
  padding: 15px;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .footer-logo img{
    height: 3rem;
  }

  .footer-propaganda h4 {
    font-size: 90px;
  }
  .footer-links ul li a,
  .footer-solucoes ul li a,
  .footer-parcerias ul li a {
    font-size: 20px;
  }
.footer-bottom p{
  font-size: 22px;
}

.footer-social .social-icons a,
.footer-social h4 {
  font-size: 25px;  
}

}

@media (max-width: 768px) {
  .footer{
    width: 100%;
   }
  .footer-propaganda {
    text-align: center;
  }

  
}


.diferenciais {
  padding: 60px 20px;
  /* background-color: #fff; */
  text-align: center;
}

.diferenciais h2 {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 40px;
}

.diferenciais-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.card-diferencial {
  flex: 1 1 280px;
  max-width: 300px;
  background: linear-gradient(135deg, #00c8ff, #0056b3);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card-diferencial i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card-diferencial h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card-diferencial p {
  font-size: 1rem;
  line-height: 1.5;
}

.card-diferencial:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.transicao-esfumada{
  height: 80px;
  background: linear-gradient(to bottom, #f8f8f8, white);
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.out {
  opacity: 0;
  transform: translateY(-30px);
}