* {
  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 {
  display: block;
  padding: 60px;
  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;
}
 @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;
    margin-left: 0 auto;
    width: 100%;
  }
  .btn-saibamais {
    padding: 10px 20px;
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .container-principal {   
    height: 90vh;       
  }
}

.container-parceiro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 4%;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.parceria-texto {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parceria-imagem {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.parceria-imagem img {
  max-width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  justify-content: center;
  align-items: center;
  margin-top: 15%;
}

.parceria-intro, .parceria-beneficios {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 30px;
  text-align: left;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.parceria-intro:hover, .parceria-beneficios:hover{
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.lista-beneficios {
  margin-top: 15px;
 
}

.lista-beneficios li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}
.parceria-intro h2, .parceria-beneficios h2 {
  color: #0095D6;
  margin-bottom: 15px;
  margin-top: 5%;
}

.btn-parceiro {
  margin-top: 20px;
  display: inline-block;
  background-color: #00aee0;
  color: #fff;
  padding: 5px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-parceiro:hover {
  background-color: #0095D6;
  transform: translateY(-3px);
}
@media (max-width: 1000px) {
  .parceria-imagem img {
    background-color: transparent;
    height: 16rem;
    object-fit: contain;
  }
}

.modelo-parceiro {
  display: grid;
  padding: 1rem 7rem 0 7rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.modelo-parceiro h2 {
  margin-bottom: 2rem;
  color: #0056b3;
  margin-top: 9rem;
  font-size: 2rem;
  text-align: center;
}

.parceria-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .parceria-grid {
    flex-wrap: wrap;
  }
}


.modelo-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  margin-bottom: 7rem;
  transition:  transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  width: 350px;
}
.modelo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
.modelo-box h3 {
  margin-bottom: 20px;
  color: #0077b5;
  font-size: 32px;
  margin-bottom: 20px;
}

.parceiros-2 {
  padding: 40px;
  color: #333;
  max-width: 1200px;

  margin-left: auto;
  margin-right: auto;
}

.parceiros-2 h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  color:  #2c3e50;
}

.parceiros-bloco {
  margin-bottom: 50px;
  margin-top: 10%;
}

.parceiros-tipo,
.parceiros-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.tipo i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0066cc;
}
.numero {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.numero span {
  font-size: 36px;
  font-weight: bold;
  color: #27ae60;
}

.tipo {
  margin-bottom: 80px;
}

.parceiros-numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 10%;
}



.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;
  }


  
}
.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);
}