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

/* Conteúdo principal */
.main-container {
  padding-top: 100px; 
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, white, #f8f8f8);
}
.container-desenvolvimento {
  display: flex;
  gap: 220px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 30px;
  text-align: left;
}

.img-desenvolvimento {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  justify-content: center;

}

.img-desenvolvimento img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.blocos-texto {
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 300px;
}

.desenvolvimento-pag1,
.desenvolvimento-pag2 {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desenvolvimento-pag1:hover,
.desenvolvimento-pag2:hover {
  transform: translateY(-6px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.8);
}

/* Bloco 3 - formulário */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  margin-top: 5rem;
}

.titulo {
  padding: 40px 20px;
  width: 100%;
  max-width: 500px;
  color: #0056b3;
  box-shadow: 0px 0px 30px #023a5f;
  border-radius: 5px;
  text-align: center;
  background-color: rgb(238, 233, 233);
}

.text-section {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  cursor: default;
}

.form-projeto {
  flex: 1.2;
  min-width: 360px;
  max-width: 600px;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  cursor: default;
}


.form-projeto h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: black;
  text-align: center;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
}

.formulario label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #374151;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border 0.3s;
}

.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.4);
}


.formulario textarea {
  resize: vertical;
  min-height: 120px;
}

.formulario button {
  background-color: #00aee0;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.formulario button:hover {
  background-color: #008dc7;
}


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

  
}
.separator {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #00aee0, #007bb8);
  border: none;
  margin: 40px 0;
}

/* === Etapas do Desenvolvimento === */
.etapas {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  cursor: default;
  border-radius: 10px;
  margin-top: 10%;
}

.etapas h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 40px;
}

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

.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: 10px;
  border-bottom: 3px solid #007bff;
}

.etapa p {
  color: #4b5563;
  font-size: 0.95rem;
}


/* === Depoimentos === */
.depoimentos {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  border-radius: 10px;
  margin-top: 10%;
}

.depoimentos:hover {
  transform: translateY(-6px);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.4);
}

.depoimentos h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 40px;
  border-bottom: 3px solid #007bff;
}

.depoimento {
  max-width: 1100px;
  margin: 0 auto 30px;
  font-style: italic;
  color: #374151;
  position: relative;
}
.depoimentos i {
  font-size: 30px;
  color: #004aad;
  margin-bottom: 10px;
  display: block;
}


.depoimento p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.container2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  text-align: left;
}


@media (min-width: 1400px) {
  .etapas {
    padding: 20px;
  }
  .depoimentos {
    padding: 20px;
  }
  .container2 {
    gap: 10px;
  }
}

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

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