* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  height: 100px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #004684, #0554F2);
  color: white;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  margin: 20px 0;
}

.hero-text p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.tag {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Botões */
.btn-primary {
  background: #0554F2;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary {
  margin-left: 10px;
  border: 1px solid white;
  padding: 12px 22px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

/* Seções */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  padding: 30px;
  border-radius: 10px;
  background: #f8f9fc;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Highlight */
.highlight {
  background: #f2f2f2;
}

.highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.highlight img {
  width: 100%;
  border-radius: 10px;
}

/* CTA */
.cta {
  background: #004684;
  color: white;
  text-align: center;
  padding: 80px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-highlight {
  margin: 20px 0;
}

.contact-form {
  background: #f8f9fc;
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.full {
  width: 100%;
}