* {
  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{
  background: linear-gradient(to bottom, white, #f8f8f8);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

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

.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: 5%;
  height: 24rem;
  max-width: 400px;
}

.btn-solucoes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -85px;
  margin-bottom: 60px;
}
.btn-saibamais {
  display: inline-block;
  background: linear-gradient(90deg, #0077b5, #00aaff); 
  padding: 16px 40px;
  width: 450px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 30px; 
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.btn-saibamais:hover {
  background: linear-gradient(90deg, #005f91, #008ecc);
  transform: translateY(-3px);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.25);
}

@media (max-width: 1000px) {   /* telefone  */
  .cabecalho {
    flex-direction: column;
    gap: 40px;
    padding: 80px;
    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;
  }
    .btn-solucoes {
    margin-top: -200px;
  }

  .btn-saibamais {
    width: 350px;
  }
}
@media (min-width: 1800px) {
  .container-principal {
    padding: 110px;
  }
  .cabecalho-texto h1 {
    font-size: 2.2rem;
    display: flex;
  }
  .cabecalho-texto p {
    font-size: 1.2rem;
    max-width: 1800px;
  }
  .cabecalho-imagem {
    height: 25rem;
    margin-left: 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .container-principal {   
    height: 90vh;       
  }
}
@media (min-width: 2500px) {
  .cabecalho{
    padding: 100px;
  }
  .cabecalho-texto h1 {
    font-size: 3.3rem;
  }
  .cabecalho-texto p {
    font-size: 1.5rem;
  }

  .btn-saibamais {
    font-size: 1.3rem;
  }
}



.card-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.cards-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(9, 49, 158, 0.6);
  cursor: default;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease !important;
}

.card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 0 15px rgba(9, 49, 158, 1);
}

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

.card-conteudo {
  padding: 20px;
}

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

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

.card-conteudo li {
  padding-left: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-conteudo li::before {
  content: "✔";
  color: #004aad !important;
}

@media (min-width: 1800px) {
.main-container {
  margin-top: 10vh;
}
}

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

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

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}



/* TOPO */
.solucoes-topo {
  background: linear-gradient(135deg, #004aad, #007bff);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.solucoes-topo h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.solucoes-topo p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.9;
}



/* GRID de cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 10px;
}

.card2 {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-left: 3px solid #0056b3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,1);
}

.card2 h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #004aad;
}

.card2 p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.card2 i {
  font-size: 30px;
  color: #004aad;
  margin-bottom: 10px;
  display: block;
}
@media (min-width: 2500px) {
  .card h3 {
    font-size: 1.7rem;
  }
  .card2 p,
  .card2 strong {
    font-size: 1.2rem;
  }
}

/* SEÇÃO CONTATO */
.solucoes-contato {
  padding: 60px 0 80px 0;
  text-align: center;
}


.solucoes-contato p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1;
}


.container2 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10%;
}

/* Seção de texto */
.text-section {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.text-section h2 {
  font-size: 1.8rem;
  color: #004080;
}

.text-section p {
  color: #333;
}

/* Formulário */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


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

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

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, transform 0.3s ease;
}

button[type="submit"]:hover {
  background: #0056b3;
  transform: scale(1.02);
}

.image-container {
  flex: 1 1 400px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.image-container img {
  max-width: 100%;
  height: 20rem;
  object-fit: contain;
}

@media (max-width: 768px) {
  .container2 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }

  .text-section {
    width: 100%;
    max-width: 95%; 
  }

  form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    font-size: 1rem;
  }

  button[type="submit"] {
    width: 100%;
  }

  .image-container {
    justify-content: center;
  }

  .image-container img {
    max-width: 250px;
    height: auto;
  }
}

@media (min-width:2500px) {
  .text-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .text-section p {
    font-size: 1.2rem;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 20px;
  }
  button[type="submit"] {
    font-size: 1.3rem;
  }
}

.solucoes-etapas {
  background: linear-gradient(to bottom, white, #F5F5F5);
}

.solucoes-servicos {
  background: linear-gradient(to bottom, white, #F5F5F5);
}

.solucoes-etapas h2 {
  font-size: 2rem;
  color: #005fa3;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-bottom: 3px solid #007bff;
  padding-bottom: 8px;
}

/* Ícones dos títulos */
.solucoes-etapas h2 i {
  color: #005fa3;
  font-size: 1.5rem;
}


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


.container-pag4 {
  background-color: white;
  padding: 40px 0;
  flex-wrap: wrap;
}

.content-pag4 {
  display: flex;
  align-items: center;      
  justify-content: center; 
  gap: 40px;                
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;       
}

.text-section4-1 {
  flex: 1;                 
  min-width: 320px;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  cursor: default;
  flex-wrap: wrap;
}

.image-section4-1 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section4-1 img {
  max-width: 100%;
  height: 30rem;
  border-radius: 20px;
}
 

.titulo-pag4-1 i {
  color: #00aee0;
  margin-top: 8%;
  font-size: 2rem;
}

.titulo-pag4-1 {
  text-align: center;
  color: #00aee0;
  margin-top: 8%;
  font-size: 2rem;
  border-bottom: 3px solid ;
}

.p-pag4-1 {
  font-size: 1rem;
  max-width: 990px;
  text-align: left;
}

.explicacao-item {
  margin-top: 20px;
  width: 100%;
  max-width: 90%;
}

.explicacao-item strong {
  display: block;
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 5px;
  text-align: center;
}

.explicacao-item p {
  margin-left: 15px; 
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .content-pag4 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
    width: 100%;
  }
  .text-section4-1{
    padding: 15px;
    gap: 20px;
  }
  .titulo-pag4-1 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .titulo-pag4-1 i{
    font-size: 1.5rem;
    margin-top: 0;
  }
  .p-pag4-1 {
    text-align: justify;
    font-size: 0.98rem;
  }
  .image-section4-1 img {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    object-fit: contain;
  }

  .explicacao-item {
    margin-top: 15px;
    max-width: 100%;
  }

  .explicacao-item strong {
    font-size: 1rem;
  }

  .explicacao-item p {
    font-size: 0.98rem;
    margin-left: 0;
  }

}

@media (min-width: 2500px) {
  .text-section4-1 h2 {
    font-size: 2rem;
  }
  .text-section4-1 p {
    font-size: 1.2rem;
  }

  .text-section4-1 strong {
    font-size: 1.5rem;
  }
}

.segmentos {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f8f8f8, white);
}

.segmentos h2 {
  font-size: 1rem;
  color: #0095D6;
  margin-bottom: 30px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.segmento-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.segmento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}

.segmento-card i {
  font-size: 40px;
  color: #00aee0;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.segmento-card i:hover {
  transform: translateY(-8px);
}

.segmento-card p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {

  .segmentos-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    width: 90%;
    justify-content: center;
  }
  .segmento-card {
    padding: 20px;
  }
}

.solucoes-servicos {
  padding: 60px 0 80px 0;
  text-align: center;
  /* background: linear-gradient(to bottom, white, #f8f8f8); */
  
}

.container-servicos {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;

}

.solucoes-servicos h2,
.container-segmentos h2,
.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;
}

.solucoes-servicos p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.4;
}
.card3 {
   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;
  border-left: 3px solid #0056b3;

}

.card3 h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #004aad;
}

.card3 p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.card3:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.9);
}

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


.card3 i {
  font-size: 30px;
  color: #004aad;
  margin-bottom: 10px;
  display: block;
}
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%;
  }
}

@media (min-width: 2500px) {
  .card3 h3 {
    font-size: 1.5rem;
  }
  .card3 p {
    font-size: 1.2rem;
  }

  .card3 i {
    font-size: 40px;
  }
}

/* ETAPAS DE IMPLANTAÇÃO */

.container-desenvolvimento {
  display: flex;
  align-items: center;   
  justify-content: center; 
  gap: 40px;
  flex-wrap: wrap;
  margin: 5% auto; 
  padding: 60px 40px;
  max-width: 1200px; 
  border-radius: 12px; 
  width: 90%;
}

.image-container { 
  flex: 1 1 400px;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: 20rem;
  object-fit: contain;
}

.etapas-desenvolvimento h2 {
  font-size: 2rem;
  color: #111827;
  text-align: center;
  margin-bottom: 30px;
}

.etapas-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.etapa {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-left: 3px solid #0056b3;
}

.etapa:hover {
  transform: translateY(-5px);
}

.etapa i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.etapa h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin-bottom: 20px;
  border-bottom: 3px solid #007bff;
}

.etapa p {
  color: #4b5563;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 768px) {
  .container-desenvolvimento {
    margin-left: 1rem;
  }
  .etapas-desenvolvimento h2 {
    margin-top: 50%;
  }
}

@media (min-width: 2500px) {
  .etapas-desenvolvimento h2 {
    font-size: 2rem;
  }
  .image-container img {
    height: 25rem;
  }
  .etapa h3 {
    font-size: 1.3rem;
  }
  .etapa p {
    font-size: 17.5px;
  }
}

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

.container-imagem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-imagem img {
  max-width: 100%; 
  height: auto;
  z-index: 2;
}

.container-titulosolucoes {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
  margin: 0 auto;
}

.container-titulosolucoes h3 {
  font-size: 45px;
  color: #333;
}

.container-titulosolucoes h3 span {
  font-size: 49px;
  color: #00aee0;
}

.container-titulosolucoes p {
  font-size: 25px;
  color: #555;
}

.meia-lua {
  margin-top: -30px;      
  width: 100%;           
  height: 180px;            
  border-radius: 50% 50% 0 0; 
  display: flex;
  justify-content: center; 
  align-items: center;   
  padding-bottom: 20px;     
  text-align: center;
  background-color: #0776BB;
  flex-direction: column;
  gap: 35px;
  max-width: 1300px;
}

@media (max-width: 1000px) {
  
  .container-titulosolucoes {
    align-items: center;
    text-align: center;
  }
  .meia-lua {
    border-radius: 35% 35% 0 0;
    gap: 10px;
    width: 105%;
  }
}

.meia-lua p {
  margin: 0;
  font-size: 26px;
  color: white;
  margin-top: 70px;
}

.meia-lua a {
  background-color: #00aee0;
  padding: 12px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.meia-lua a:hover {
  transform: translateY(-4px);
  background-color: #08a7d3;
}

@media (min-width:2500px) {
  .meia-lua p {
    font-size: 1.5rem;
  }
  .meia-lua a {
    font-size: 1.25rem;
  }
}

.lista-funcionalidades {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  flex-wrap: wrap;
}

.lista-funcionalidades h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #333;
}

.container-funcionalidades {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 10px; 
}

@media (min-width: 200px) and (max-width: 355px) {
  .container-funcionalidades {
    grid-template-columns: repeat(1, 170px);
    gap: 5px; 
    justify-content: center;
  }
}

@media (min-width: 370px) and (max-width: 560px) {
  .container-funcionalidades {
    grid-template-columns: repeat(2, 170px);
    gap: 5px; 
    justify-content: center;
  }
}

@media (min-width: 570px) and (max-width: 785px) {
  .container-funcionalidades {
    grid-template-columns: repeat(3, 170px);
    gap: 5px; 
    justify-content: center;
  }
}

@media (min-width: 2500px) {
  .lista-funcionalidades h3 {
    font-size: 2rem;
  }
  .lista-funcionalidades a {
    font-size: 1.3rem;
  }
}


.lista2 {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
}

.lista-image { 
  flex-shrink: 0;
}

.lista-image img {
  width: 18px; 
  height: auto;
}

.lista2 a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  flex: 1;
  text-align: left;
  transition: color 0.2s ease;
}

.lista2 a:hover {
  color: #007bff;
}

.btn-funcionalidades {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.btn-funcionalidades a {
  background-color: #0077b5;
  padding: 12px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-funcionalidades a:hover {
  transform: translateY(-4px);
  background-color: #026499;
}

@media (min-width: 2500px) {
  .lista2 a {
    font-size: 18px;
  }
}

.faixa-lista {
  background-color: #0776BB;
  display: flex;
  justify-content: center;
  align-items: center; 
  padding: 40px 20px;  
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 12px;
}

.faixa-texto {
  color: white;
  max-width: 900px; 
}

.faixa-texto h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.faixa-texto h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 2500px) {
  .faixa-texto h2 {
    font-size: 2rem;
  }

  .faixa-texto h3 {
    font-size: 1.5rem;
  }
}

.container-aplicativo {
  display: flex;
  flex-direction: column; 
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.aplicativo-texto {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.aplicativo-numero h2 {
  font-size: 50px;
  font-weight: bold;
  color: #0077b5;
  margin: 0;
}

.aplicativo-titulo h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.aplicativo-titulo h2 span {
  color: #00aee0;
  font-weight: 600;
  font-size: 34px;
}

.aplicativo-titulo p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.aplicativo-titulo p span {
  color: #00aee0;
  font-weight: 600;
  font-size: 20px;
}

.aplicativo-image-blocos {
  display: flex; 
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.aplicativo-image img {
  max-width: 400px;
  height: auto;
  display: block;
}

@media (max-width: 1000px) {
  .aplicativo-image-blocos img {
    justify-content: center;
    align-self: center;
  }
}

@media (min-width: 2500px) {
  .aplicativo-titulo h2,
  .aplicativo-titulo h2 span {
    font-size: 1.9rem;
  }
  .aplicativo-titulo p,
  .aplicativo-titulo p span {
    font-size: 1.3rem;
  }

  .aplicativo-image img {
    height: 20rem;
  }
}

.aplicativo-textos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.bloco-texto {
  background-color: #e0e0e0;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bloco-texto:hover {
  transform: translateY(-4px);
}

.bloco-texto strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (min-width: 2500px) {
  .bloco-texto strong {
    font-size: 1.4rem;
  }
  .bloco-texto p {
    font-size: 1.2rem;
  }
}

.container-totem {
  display: flex;
  flex-direction: column; 
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.totem-texto {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.totem-numero h2 {
  font-size: 50px;
  font-weight: bold;
  color: #0077b5;
  margin: 0;
}

.totem-titulo h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.totem-titulo p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 2500px) {
  .totem-numero h2 {
    font-size: 50px;
  }

  .totem-titulo h2 {
    font-size: 1.8rem;
  }

  .totem-titulo p {
    font-size: 1.3rem;
  }
}

.faixa-azul {
  background-color: #0077b5; 
  color: #ffffff; 
  padding: 30px 40px;
  text-align: center;
  margin-top: -70px;
  position: relative; 
  z-index: 999;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
}


.faixa-azul h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faixa-azul p {
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 2500px) {
  .faixa-azul h3 {
    font-size: 2rem;
  }

  .faixa-azul p {
    font-size: 1.5rem;
  }
}

.totem-image-blocos {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.totem-image img{
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.totem-image img:hover {
  transform: translateY(-4px);
}

@media (max-width: 1000px) {
  .totem-image img{
    justify-content: center;
    align-self: center;
  }
}

.aplicativo-textos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.bloco-duplo {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.bloco-texto2 {
  flex: 1;
  background-color: #e0e0e0;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bloco-texto2 strong {
  font-size: 18px;
  color: rgb(37, 36, 36);
}

.bloco-texto2:hover {
  transform: translateY(-4px);
}

.image-marcas {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-marcas img {
  transition: all 0.3s ease;
  align-items: center;
  height: 20rem;
  background-color: 0 0 10px #151a24;
}

@media (max-width: 1000px) {
  .image-marcas img {
    height: 11rem;
    object-fit: contain;
  }
}

@media (min-width: 2500px) {
  .image-marcas img {
    height: 30rem;
  }

  .bloco-texto2 strong {
    font-size: 1.3rem;
  }

  .bloco-texto2 img {
    height: 12rem;
  }
}

.image-marcas img:hover {
  transform: translateY(-4px);
}

.confira-texto {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.confira-numero h2 {
  font-size: 50px;
  font-weight: bold;
  color: #0077b5;
  margin: 0;
}

.confira-titulo h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.confira-titulo p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.btn-confira {
  display: flex;
  justify-content: center;
  margin-top: 20px; 
}

.btn-confira a {
  background-color: #0077b5; 
  padding: 12px 25px;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-confira a:hover {
  transform: translateY(-4px);
  background-color: #026499;
}

@media (min-width: 2500px) {
  .confira-titulo h2 {
    font-size: 1.8rem;
  }
  .confira-titulo p {
    font-size: 1.3rem;
  }

  .btn-confira a {
    font-size: 20px;
  }
}

.container-aplicativo2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.aplicativo-texto2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.aplicativo-numero2 h2 {
  font-size: 50px;
  font-weight: bold;
  color: #0077b5;
  margin: 0;
}

.aplicativo-imagem2 img {
  max-width: 280px;
  height: auto;
  transition: all 0.3s ease;
}

.aplicativo-imagem2:hover {
  transform: translateY(-2px);
}

.aplicativo-titulo2 {
  flex: 1 1 300px;
  max-width: 600px;
}

.aplicativo-titulo2 h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.aplicativo-titulo2 p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.image-marcas2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-marcas2 img {
  height: 18rem;
  transition: all 0.3s ease;
}

.image-marcas2 img:hover {
  transform: translateY(-4px);
}

/* Responsivo */
@media (max-width: 1000px) {
  .aplicativo-texto {
    flex-direction: column;
    text-align: center;
  }

  .aplicativo-titulo h2 {
    font-size: 24px;
  }

  .aplicativo-titulo p {
    font-size: 16px;
  }

  .image-marcas2 img {
    height: 11rem;
    max-width: 95vw;
    object-fit: contain;
  }
}

@media (min-width: 2500px) {
  .aplicativo-numero2 h2 {
    font-size: 60px;
  }
  .aplicativo-titulo2 h2 {
    font-size: 1.8rem;
  }
  .aplicativo-titulo2 p {
    font-size: 1.3rem;
  }
}

.faixa-azul2 {
  background-color: #0077b5; 
  color: #ffffff; 
  padding: 30px 40px;
  text-align: center;
  border-radius: 8px;
  margin-top: -50px;
  position: relative; 
  z-index: 999;
}

.faixa-azul2 h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faixa-azul2 p {
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 2500px) {
  .faixa-azul2 h3{
    font-size: 1.6rem;
  }

  .faixa-azul2 p {
    font-size: 1.2rem;
  }
}