/* RESET E BASE */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#1e293b;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* HEADER */
header{
  background:#ff7a00;
  padding:15px 0; /* levemente reduzido */
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO AJUSTADA DEFINITIVAMENTE */
.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:42px;      /* tamanho ideal */
  width:auto;
  display:block;
}

/* MENU */
nav a{
  color:#fff;
  text-decoration:none;
  margin-left:25px;
  font-weight:600;
  transition:0.2s;
}

nav a:hover{
  opacity:0.8;
}

.btn-header{
  border:2px solid #fff;
  padding:8px 16px;
  border-radius:8px;
}

/* HERO */
.hero{
  width:100%;
  background:linear-gradient(135deg,#1e3a8a,#2563eb);
  padding:100px 0 160px 0;
  text-align:center;
  color:#fff;
}

.hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.hero p{
  opacity:0.9;
  margin-bottom:60px;
  font-size:18px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#f3f4f6;
  padding:25px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 35px rgba(0,0,0,0.2);
}

.icon{
  font-size:36px;
}

.info h3{
  margin-bottom:10px;
  font-weight:700;
  color:#1e3a8a;
  font-size:17px;
}

.btn{
  padding:7px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition:0.2s;
}

.btn:hover{
  opacity:0.85;
}

.laranja{
  background:#ff7a00;
  color:#fff;
}

.verde{
  background:#22c55e;
  color:#fff;
}

/* CTA */
.cta{
  background:linear-gradient(135deg,#ff7a00,#ff5a00);
  margin:-100px auto 100px auto;
  max-width:1000px;
  padding:70px 40px;
  border-radius:18px;
  text-align:center;
  color:#fff;
  box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.cta h2{
  font-size:32px;
  margin-bottom:15px;
  font-weight:800;
}

.cta p{
  margin-bottom:35px;
  font-size:17px;
}

.btn-cta{
  background:#16a34a;
  padding:16px 40px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  display:inline-block;
  transition:0.3s;
}

.btn-cta:hover{
  transform:scale(1.05);
}

/* RESPONSIVO */
@media(max-width:600px){

  .header-flex{
    flex-direction:column;
    gap:15px;
  }

  nav{
    display:none;
  }

  .logo img{
    height:40px;
  }

  .hero h1{
    font-size:28px;
  }

  .hero{
    padding:70px 0 130px 0;
  }

  .cta{
    margin:-80px 20px 80px 20px;
    padding:40px 20px;
  }

}