/* HERO */
.hero{
    background-image: url("img/ban.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    height: 70vh;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-text {
  max-width: 600px;
}

.hero h1{
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p{
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.btn-principal {
  background: #1c2c75;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-principal:hover{
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* SOLUÇÕES */
.solucoes {
  padding: 80px;
  text-align: center;
}

.solucoes h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.solucoes span {
  color: #2e47b4;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
}

.card {
  background: white;
  padding: 25px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
  transform: scale(1.07);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-icon{
  width: 60px;
  margin-bottom: 15px;
}

/* PORQUE */

.porque {
  padding: 80px;
  background: #eef2fb;
  text-align: center;
}

.porque span {
  color: #2e47b4;
}

.porque h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* CTA */

.cta{
  padding: 80px 10%;
  text-align: left;
  color: #000000;
  background-color: #f8f8f8;
}

.cta-conteudo{
text-align: center;
margin: auto;
max-width: 600px;
}

.cta-conteudo{
  margin-left:170px;
}

.cta-conteudo h2{
  font-size:40px;
  margin-bottom:20px;
}

.cta-conteudo p{
  font-size:18px;
  margin-bottom:25px;
  line-height:1.6;
}

.cta{
position: relative;
padding: 96px 0;
overflow:hidden;
}

.camaleaocta{
  position: absolute;
  right: 170px;
  bottom: 0;
  width: 350px;
}

.cta span {
  color: #2e47b4;
}

.cta h2 {
  margin-bottom: 25px;
}

@media (max-width:1024px){

.camaleaocta{
position: relative;
right: auto;
bottom: auto;
display:block;
margin:30px auto 0;
width:260px;
}

.cta{
text-align:center;
}

.cta-conteudo{
margin:0 auto;
}

}

@media (max-width:768px){

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

/* TEXTO */
.cta-conteudo{
  margin:0 auto;
}

/* TITULO */
.cta-conteudo h2{
  font-size:32px;
}

/* IMAGEM */
.camaleaocta{
  position:relative;
  right:auto;
  bottom:auto;
  width:200px;
  margin-top:30px;
}

}

/* FUNCIONAMENTO */
.processo{
  background: #17235a;
  padding:90px 0;
  color:white;
  text-align:center;
}

.processo h2{
  font-size:34px;
  margin-bottom:60px;
}

.passos{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.passo{
  max-width:200px;
  text-align:left;
}

.numero{
  font-size:60px;
  font-weight:bold;
  color:#265eb3;
  display:block;
  margin-bottom:10px;
}

.passo h3{
  font-size:20px;
  margin-bottom:10px;
}

.passo p{
  color:#b8c7e0;
}

.passos{
flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #1c2c75;
  color: white;
  text-align: center;
  padding: 40px;
  font-size: 14px;
}

@media (max-width:768px){

.passos{
  flex-direction: column;
  align-items: center;
  gap:40px;
}

.passo{
  max-width:90%;
  text-align:center;
}

.numero{
  font-size:50px;
}

}

.btn-principal,
.btn-topo{
text-decoration:none;
}