body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.navbar {
  background: linear-gradient(90deg, #0a3d62, #3c6382);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo span {
  color: #38ada9;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* espaço entre logo e texto */
}

.logo-container img {
  height: 50px; 
  width: auto;
}

.logo-container span {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.logos-embaixo {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  top: 90px; 
}

.logo-pequena {
  height: 60px; 
  width: auto;
  object-fit: contain;
}
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  color: white;
}

.login-btn {
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0a3d62, #38ada9);
  color: white;
  padding: 60px 80px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-btn {
  background: #f39c12;
  border: none;
  padding: 12px 24px;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.badge-card {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.explore-btn {
  background: #38ada9;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
}

.categorias {
  background: white;
  padding: 40px 80px;
  text-align: center;
}

.categorias-grid {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
}

.categoria-item {
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stats div h3 {
  font-size: 2rem;
  margin: 0;
}