/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
header {
  background: #003366;
  padding: 20px 0;
}

header .logo img {
  height: 50px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 5px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header .btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* Hero Section */
#hero {
  background: url('hero-bg.webp') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#hero .btn {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Sobre a Solução */
#solucao {
  padding: 60px 0;
  text-align: center;
}

#solucao h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#solucao p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

#solucao img {
  max-width: 100%;
  border-radius: 10px;
}

/* Benefícios */
#beneficios {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

#beneficios h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.beneficio {
  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.beneficio img {
  height: 50px;
  margin-bottom: 15px;
}

.beneficio h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.beneficio p {
  font-size: 1rem;
}

/* CTA */
#cta {
  background: #003366;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

#cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

#cta .btn {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Rodapé */
footer {
  background: #002244;
  color: #fff;
  padding: 40px 0;
}

footer .footer-info,
footer .footer-social {
  text-align: center;
  margin-bottom: 20px;
}

footer .footer-social img {
  height: 30px;
  margin: 0 10px;
}
