* {
  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;
 }
}

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

}
.container-principal {
  display: flex;
  min-height: 400px;  
  justify-content: center;
  align-items: center;
  width: 100%;
  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: 130px;
  margin-top: 70px;
  margin-bottom: 50px;
}

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

.cabecalho-texto h1 {
  font-size: 2rem;
  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: center;
  max-width: 1300px;
  height: 30rem;
  width: 100%;
  max-height: none;
  position: relative;
  object-fit: contain;
}


.cabecalho-imagem img {
  max-width: 100%;
  height: 25rem;
  object-fit: contain;
}

.btn-saibamais {
  display: inline-block;
  background-color: #00aee0;
  color: white;
  border-radius: 10px;
  margin-top: 10%;
  cursor: pointer;
  padding: 10px 10px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.btn-saibamais:hover {
  background-color: #0095D6;
}

/* .cabecalho-imagem video {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  border-radius: 10px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  } */



/* FAIXA AZUL DE QUALIDADES */
/* .faixa-qualidades {
  position: absolute;
  bottom: -1px;
  right: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  width: 670px;
  background-color: #0077b5;
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 14px;
  font-size: 1rem;
  z-index: 2;
  flex-wrap: wrap;
  cursor: default;
  overflow: hidden;
}
.faixa-qualidades .qualidade {
  flex: 1 1 20%;
  text-align: center;
}
.faixa-qualidades .qualidade {
  position: relative;
  padding: 0 10px;
  font-size: 1rem;
  color: white;
}

.faixa-qualidades .qualidade::after {
  content: "/";
  position: absolute;
  right: -3%;
  top: 25%;
  color: white;
}

/* Remove a barra do último item 
.faixa-qualidades .qualidade:last-child::after {
  content: "";
} */

/* media queries pagina 1 */

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

@media (min-width: 1900px) {
  .main-container {
    padding: 115px;
  }
  .cabecalho {
    max-width: 1500px;
    gap: 150px;
  }

  .cabecalho-texto h1 {
    font-size: 2.5rem;
    display: flex;
  }
  .cabecalho-texto p {
    font-size: 1.5rem;
    max-width: 1800px;
  }
  .cabecalho-imagem {
    width: 100%;
    object-fit: contain;
  }

  .cabecalho-imagem img {
    height: 30rem;
  }

  .btn-saibamais {
    padding: 10px 20px;
    font-size: 25px;
  }
}



.container-pag2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px; 
  width: 100%;
  box-sizing: border-box;
}

.text-section3 {
  width: 100%;
  display: flex;
  align-items: center;   

  justify-content: center; 
  gap: 80px;                 
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

.text-section3 img {
  width: 100%;           
  max-width: 550px;        
  height: auto;          
  object-fit: contain;  
  border-radius: 20px;     
}

.text-section3 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  max-width: 700px;
  color: #333;
}

.text-section3 p {
  max-width: 700px;
  font-size: 1rem;
  color: #555;
}

.btn-pag2 {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00aee0;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}

.btn-pag2:hover {
  background-color: #0095D6;
}

@media (max-width: 1000px) {
  .text-section3 {
    flex-direction: column;
    margin-top: 20px;
  }
  .text-section3 img {
    display: none;
  }
  .text-section3 h2 {
    font-size: 1.8rem;
  }
  .text-section3 p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .text-section3 {
    gap: 130px; 
  }

  .text-section3 h2 {
    font-size: 2.2rem; 
  }

  .text-section3 p {
    font-size: 1rem; 
    line-height: 1.6;  
  }

  .text-section3 img {
    max-width: 650px; 
  }
}

@media (min-width: 1700px) {
  .text-section3 {
    justify-content: flex-start; 
  }

  .coluna-imagem {
    margin-right: 450px; 
  }
}

@media (min-width: 2500px) {
  .text-section3 p {
    font-size: 1.3rem;
  }
  .btn-pag2 {
    font-size: 1.3rem;
  }
}

.carrosel-grid {
  width: 100%;                           
  display: grid;               
  gap: 70px; 
  justify-content: center;
  align-items: center;
  align-self: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.card2:nth-child(odd) {
  flex-direction: row;
}
.card2:nth-child(even) {
  flex-direction: row-reverse;
}
.card2 {
  display: flex;              
  width: 80rem;               
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 80px rgba(0,0,0,0.6);
  overflow: hidden;      
  max-width: 1300px;
  height: 20rem;
  object-fit: contain;  
  margin-top: 10%;
}


.card2 img {
  width: 40%;
  border-radius: 12px 0 0 12px;
  height: 100%;
  object-fit: cover;
}

.card2:nth-child(even) img {
  border-radius: 0 12px 12px 0;
}


.card-conteudo2 {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.card-conteudo2 h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #00aee0;
  border-bottom: 3px solid #0095D6;
}

.card-conteudo2 p {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}

.btn-facaparte {
  display: inline-block;
  background-color:#00aee0;
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.btn-facaparte:hover {
  background-color: #0095D6;
}

 @media (min-width: 268px) and (max-width: 1093px) {
  .card2  {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .card2  img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    height: 550px;
  }

  .carrosel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    max-width: 100%;
  }

  .card2, 
  .card2:nth-child(odd), 
  .card2:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .card2, 
  .card2:nth-child(odd), 
  .card2:nth-child(even) {
    flex-direction: column;
  }

  .card2 img {
    width: 100%;
    border-radius: 12px 12px 0 0; 
    height: auto; 
  }

  .carrosel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


.cards-group2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card2 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(9, 49, 158, 0.4);
  transition: transform 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.card2:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgb(5, 18, 87);
}

.card2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-conteudo2 {
  padding: 20px;
}

.card-conteudo2 h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #00aee0;
  border-bottom: 3px solid #0095D6;
}

.card-conteudo2 p {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}
}

@media (min-width: 1400px) {
  .card2 {
    width: 90rem;   
    height: 24rem;  
  }

  .card2 img {
    width: 45%;     
    height: 100%;
  }
}


@media (min-width: 2500px) {
  .carrosel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
  }
  .card2 {
    width: 60rem;  
    height: 25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);     
  }

  .card2 img {
    width: 50%;     
    height: 100%;
  }

  .card2 h2 {
    font-size: 1.6rem;
  }

  .card2 p {
    font-size: 1.25rem;
  }
}



/* DIFERENCIAIS */

.diferenciais {
  padding: 60px 20px;
  text-align: center;
}
.diferenciais h2{
  font-size: 2.5rem;
  color: #005fa3;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.diferenciais .subtitulo {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.diferenciais-lista {
  display: grid;
  max-width: 1300px;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0 auto;
  margin-bottom: 100px;
}  

.diferenciais-lista .item {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferenciais-lista .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.diferenciais-lista .item i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #005fa3;
}

.diferenciais-lista .item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #005fa3;
  color: #003366;
}

.diferenciais-lista .item p {
  font-size: 1rem;
  color: #333;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .diferenciais h2 {
    font-size: 1rem; 
    margin-left: 1rem;
    width: 90%;
  }

  .diferenciais-lista {
    margin-left: 1rem;
    width: 90%;
  }
}

@media (min-width: 2500px) {
  .diferenciais h2 {
    font-size: 2.5rem;
  }
  .diferenciais i {
    font-size: 2rem;
  }
  .diferenciais .subtitulo {
    font-size: 1.5rem;
  }
    .diferenciais-lista {
    padding: 30px;
  }
  .diferenciais-lista .item h3 {
    font-size: 1.3rem;
  }
  .diferenciais-lista .item p {
    font-size: 1.3rem;
  }
}

/* VOCÊ SABIA */


.voce-sabia {
  padding: 60px 20px;
  text-align: center;
  margin-top: 150px;
}

.voce-sabia h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #004aad;
}

.voce-sabia h1 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 40px;
}

.curiosidades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.curiosidade {
  width: 300px;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curiosidade:hover{
  transform: translateY(-6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.curiosidade p {
  color: #333;
}

@media (max-width: 768px) {
  .voce-sabia {
    padding: 70px;
  }
}

@media (min-width: 2500px) {
  .voce-sabia h2 {
    font-size: 2.5rem;
  }
  .curiosidade {
    padding: 25px;
  }
  .curiosidade p,
  .curiosidade p strong {
    font-size: 1.5rem;
  }
}

/* CONTADORES */
.numeros {
  padding: 60px 20px;
}

.numeros h2{
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.contador-box {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contador {
  font-size: 28px;
  color: #222;
}

.contador span {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #0073e6;
}

.numero2 {
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

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

.tipo {
  margin-bottom: 80px;
}


.diferenciais h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-bottom: 3px solid #007bff;
  padding-bottom: 8px;
  padding: 0 20px;
}




h2 i {
  color: #007bff;
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .cards-group {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .solucoes-servicos {
    margin-left: 1rem;
    width: 90%;
  }
}

.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: 1.5rem;
  }
  .footer-links ul li a,
  .footer-solucoes ul li a,
  .footer-parcerias ul li a {
    font-size: 1.15rem;
  }
.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;
  }

  
}

@media (min-width: 2500px) {
  .footer p {
    font-size: 1.15rem;
  }
  .footer-social .social-icons i {
    font-size: 1.15rem;
  }
}

button:hover {
  transform: scale(1.02);
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 14px 18px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.4);
}

select {
  cursor: pointer;
  background-color: white;
}

/* Botão */
button[type="submit"] {
  background: #007bff;
  color: white;
  border: none;
  padding: 16px 0;
  font-size: 1.15rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background: #0056b3;
}

button:hover {
  transform: scale(1.02);
}

/* Parceiros */
.solucoes-contato {
  padding: 60px 0 80px 0;
  text-align: center;
}

.solucoes-contato h2 {
  color: #004aad;
  margin-bottom: 15px;
  border-bottom: none;
  justify-content: center;
  font-size: 2.5rem;
}

.solucoes-contato p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.4;
}


.solucoes-grid {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.container  h2 {
  display: flex;
  justify-content: center;
}

.parceiros {
  flex: 1 1 300px;
  justify-content: center;
}

.parceiros-bloco {
  background-color: #F9F9F9;
}

.parceiros-bloco h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

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

.numero2 {
  font-size: 1rem;
}

.numero2 .contador {
  font-size: 2rem;
  font-weight: bold;
  color: #27ae60;
}


/* Formulário */
.formulario-contato {
  flex: 1 1 400px; 
}
.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 768px) {
  .solucoes-grid {
    flex-direction: column;
    align-items: center;
  }

  .parceiros, .formulario-contato {
    flex: 1 1 100%;
    width: 90%;
  }

  .parceiros-numeros {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .formulario-contato h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 2500px) {
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: 1.15rem;
  }
  .parceiros {
    background-color: #fff;
    gap: 40px;
  }
  .solucoes-contato p {
    font-size: 1.3rem;
  }

  button[type="submit"] {
    font-size: 1.3rem;
  }
  
  .parceiros-bloco h2 {
    font-size: 2.5rem;
  }
}

.container-quemsomos{
  max-width: 1100px;
  text-align: left;
  flex-direction: column;
  margin: auto;
  cursor: default;
}

.quem-somos h2{
  margin-top: 20%;
  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;
  margin-bottom: 200px;
}

@media (max-width: 768px) {
  .quem-somos {
    width: 100%;
    align-self: center;
    justify-content: center;
    margin-left: 1rem;
    max-width: 390px;
  }
}
@media (min-width: 2500px) {
  .quem-somos h2 {
    font-size: 2.5rem;
  }

  .quem-somos p {
    font-size: 1.5rem;
  }
}

/* MENTORIAS */
.carrosel-grid2 {
  display: flex;         
  width: 98%;
  text-align: left;                
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box; 
}

@media (max-width: 1024px) {
  .carrosel-grid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Tablets e telas médias */
@media (min-width: 768px) {
  .card4 {
    flex-direction: column;  
    width: 100%;               
    max-width: 600px;         
    margin: 0 auto;           
  }

  .card4 img {
    width: 100%;
    border-radius: 12px 12px 0 0; 
    height: auto; 
    max-height: 250px;        
    object-fit: cover;
  }

  .card-conteudo4 {
    padding: 20px;           
    text-align: center;  
    width: 100%;   
  }

  .card-conteudo4 h2 {
    font-size: 1.3rem;        
  }

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

  .carrosel-grid2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-left: 1rem;
  }
}



/* PARCERIAS */

.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;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}


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

@media (min-width: 1800px) {
  .modelo-box {
    width: 550px;
  }
}

@media (min-width: 2500px) {
  .modelo-parceiro h2 {
    font-size: 2.5rem;
  }

  .modelo-box h3 {
    font-size: 2rem;
  }

  .modelo-box p {
    font-size: 1.3rem;
  }
}

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

.problematicas {
  background-image: url('../assets/img/PAPEL\ DE\ PAREDE\ 02.png'); 
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px;
}

.hero {
  max-width: 500px;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #005fa3;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #00457a;
}


@media screen and (max-width: 768px) {
  .problematicas {
    justify-content: center;
    padding: 0 20px;
  }

  .hero {
    max-width: 300px;
    text-align: left;
    font-size: 10px;
    margin-top: -12px;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}

@media (min-width: 2500px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.6rem;
  }
  .btn-primary {
    font-size: 1.3rem;
  }
}

.texto-problematica {
  padding: 80px 20px;          
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1300px;          
  margin: 0 auto;             
  background: #f8f9fc;       
  border-radius: 12px;        
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
}

.texto-problematica h2 {
  font-size: 2rem;            
  color: #004aad;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1000px;  
}

.texto-problematica p {
  font-size: 1.15rem;        
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  max-width: 1000px;
}

.texto-problematica span {
  font-size: 1.15rem;
  color: #00aee0;
}

@media (min-width: 2500px) {
  .texto-problematica h2 {
    font-size: 2.5rem;
  }
  .texto-problematica p,
  .texto-problematica p span {
    font-size: 1.5rem;
  }
}

.curiosidade-solucao {
  width: 280px;
  background-color: #0776bb98;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curiosidade-problema {
  width: 280px;
  background-color: #0776bb98;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curiosidade-solucao:hover,
.curiosidade-problema:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.curiosidade-solucao h3,
.curiosidade-problema h3 {
  color: #0056b3;
  margin-bottom: 20px;
}

.curiosidade-solucao p,
.curiosidade-problema p {
  color: #333;
}

@media (min-width: 1800px) {
  .curiosidade-problema {
    width: 550px;
  }
  .curiosidade-solucao {
    width: 550px;
  }
}
@media (min-width: 2500px) {
  .curiosidade-problema,
  .curiosidade-solucao {
    padding: 25px;
  }

  .curiosidade-problema h3,
  .curiosidade-solucao h3 {
    font-size: 1.5rem;
  }

  .curiosidade-problema p, 
  .curiosidade-solucao p {
    font-size: 1.5rem;
  }
}

.container-etapas-beneficios {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.etapas-jornada {
  padding: 80px 60px;
  text-align: center;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.etapas-jornada h2 {
  font-size: 30px;
  color: #0073e6;
  margin-bottom: 30px;
}


.step {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(22, 22, 22, 0.1);
}

.step span {
  display: inline-block;
  background-color: #00aaff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.beneficios {
  padding: 60px;
  text-align: center;
}

.beneficios h2 {
  font-size: 2rem;
  color: #0073e6;
  margin-bottom: 30px;
}

.beneficios ul {
  list-style: none;
  margin-top: 20px;
}

.beneficios li {
  font-size: 1.1rem;
  margin: 10px 0;
}

.beneficios i {
  color: #00aaff;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .beneficios ul {
    text-align: left;
  }
}

@media (min-width: 2500px) {
  .etapas-jornada h2 {
    font-size: 2.2rem;
  }
  .timeline h3,
  .timeline p{
    font-size: 1.4rem;
  }
  .beneficios h2 {
    font-size: 2.2rem;
  }

  .beneficios li {
    font-size: 1.5rem;
  }

  .beneficios i {
    font-size: 1.2rem;
  }
}

.main-container {
  background: linear-gradient(to bottom, white, #f8f8f8);
}