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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #100e35;
  color: white;
  text-align: center;
}

/* Navbar */
.navbar {
  background-color: #100e35;
  padding: 10px 20px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.img-logo {
  width: 250px;
  height: 250px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px;
  font-weight: 600;
}

.nav-links a:hover {
  color: #92136c;
}

/* Título */
.pricing h2 {
  font-size: 1.8rem;
  margin: 30px 20px;
}

/* Container dos Planos */
.planos-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Estilo Geral dos Planos */
.plano {
  background-color: white;
  border-radius: 20px;
  padding: 25px;
  width: 240px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.plano h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.preco {
  font-size: 1rem;
  margin: 15px 0;
}

.preco strong {
  font-size: 1.8rem;
  color: #06f33d;
}

ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0;
}

ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

ul li i {
  margin-right: 8px;
  color: #0cf041;
  min-width: 20px;
  text-align: center;
}

.gratis {
  font-weight: bold;
  color: #06f33d;
  font-size: 12px;
  margin-left: auto;
}

.pago {
  font-weight: bold;
  color: #ec0b21;
  font-size: 12px;
  margin-left: auto;
}

button {
  background-color: #92136c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #08dd1a;
}

/* Cores de Fundo por Plano */

.mei {
  background-color: #727a62; /* verde escuro */
}

.empreendedor {
  background-color: #2e8b57;
}

.controle {
  background-color: #e70ed5;
}

.premium {
  background-color: #d3ab28;
}

.exclusivo {
  background-color: #01010e;
}

/* Responsivo */
@media (max-width: 768px) {
  .planos-container {
    flex-direction: column;
    align-items: center;
  }

  .plano {
    width: 90%;
    max-width: 500px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .navbar-container {
    flex-direction: column;
  }

  .img-logo {
    width: 220px;
    height: 220px;
  }

  h2 {
    font-size: 1.3rem;
  }

  .preco {
    font-size: 1rem;
  }

  .preco strong {
    font-size: 1.8rem;
  }

  ul li {
    font-size: 13px;
  }

  button {
    width: 100%;
  }
}
