* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #003049;
  line-height: 1.6;
}

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

.navbar {
  background-color: #112B3C;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  z-index: 1030;
}

.navbar-brand {
  font-family: 'Pancetta Pro', sans-serif;
  font-size: 1.8rem;
  color: #ffffff !important;
}

.navbar-brand img {
  max-height: 80px;

}

.navbar .nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
  font-weight: 500;
  margin-left: 15px;
}

.navbar .nav-link:hover {
  color: #00B270 !important;
}


.hero {
  background: linear-gradient(135deg, #00c994, #003049);
  color: white;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
  gap: 40px;
}


.text-block {
  flex: 1;
  min-width: 300px;
}

.image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  object-fit: contain;

}



.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.hero p {
  margin-bottom: 25px;
  font-size: 1.25rem;
  max-width: 500px;
}

.btn-primary {
  background: white;
  color: #003049;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e5f9f4;
}

.selo {
  margin-top: 20px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
}

.destaque {
  color: #00fcd1;
}

#porque .container,
#planos .container {

  margin-top: 100px;
}

.btn-primary {
  background: #003049;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.vantagens,
.features,
.plans,
.contact {
  padding: 60px 0;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  background: linear-gradient(135deg, #00c994, #003049);
  color: #fff;
}

.card h3 {
  color: #003049;
}

.price {
  color: #00c994;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 16px 0;
}

.btn-secondary {
  background: #003049;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.card ul {
  text-align: left;
  margin-top: 10px;
}

.card ul li {
  margin-bottom: 8px;
}

.card.destaque {
  border: 2px solid #00c994;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {

  .hero {
    padding: 60px 0;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
}