body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #07306a;
  color: #222;
}

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

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px 0;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: #0077b6;
}
.hero {
  background: #07306a;
  color: #fff;
  padding: 0;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  padding: 40px 0 0 0;
}
.hero-left {
  flex: 1;
}
.logo-hero {
  height: 70px;
  margin-bottom: 30px;
}
.hero-left h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}
.btn-hero {
  display: inline-block;
  background: #fff;
  color: #07306a;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-hero:hover {
  background: #00e0ff;
  color: #07306a;
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.grafico-img {
  max-width: 320px;
  width: 100%;
}

.sobre {
  background: #fff;
  color: #07306a;
  margin: 0;
  padding: 60px 0 40px 0;
  border-radius: 0;
  box-shadow: none;
}
.sobre h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.sobre p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px auto;
}

.servicos {
  background: #07306a;
  color: #fff;
  padding: 50px 0 60px 0;
  border-radius: 0;
  box-shadow: none;
}
.servicos h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.servicos-lista {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.servico-item {
  background: #fff;
  color: #07306a;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px 18px 18px 18px;
  width: 290px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servico-item img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.servico-item h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #07306a;
}
.servico-item p {
  font-size: 1rem;
  color: #07306a;
}

.cta-contato {
  background: #fff;
  color: #07306a;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 0 40px 0;
}
.cta-box {
  flex: 1;
  max-width: 400px;
  text-align: left;
}
.cta-box h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.btn-cta {
  display: inline-block;
  background: #07306a;
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
  background: #00e0ff;
  color: #07306a;
}
.contato-info {
  flex: 1;
  max-width: 300px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 18px;
}
.contato-info p {
  margin-bottom: 18px;
}
.contato-info .icon {
  font-size: 2rem;
}

footer {
  background: #07306a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 0;
  border-radius: 0;
  font-size: 1rem;
}

.social-links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-icon {
  width: 32px;
  height: 32px;
  transition: filter 0.2s, transform 0.2s;
}
.social-icon:hover {
  filter: brightness(1.2) drop-shadow(0 2px 6px #00e0ff);
  transform: scale(1.08);
}

@media (max-width: 1000px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .hero-right {
    justify-content: center;
    width: 100%;
  }
  .cta-contato {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .servicos-lista {
    flex-direction: column;
    gap: 20px;
  }
  .servico-item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .hero-left h1 {
    font-size: 1.5rem;
  }
  .sobre h2, .servicos h2 {
    font-size: 1.3rem;
  }
  .cta-box h2 {
    font-size: 1.2rem;
  }
} 