/* Reset básico e fonte */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f0f3f2, #dfe5e3);
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #1e4d37, #2c664d);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar-brand img.logo {
  height: 40px;
}

.nav-link, .navbar-text {
  color: #fff !important;
}

.btn-acesso {
  background-color: #fff;
  color: #2c4d40;
  font-weight: 600;
  border-radius: 5px;
  padding: 8px 16px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-acesso:hover {
  background-color: #c2e8da;
  color: #2c4d40;
}

/* Container dos planos */
.planos-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
}

/* Header dos planos */
.planos-header {
  margin-bottom: 50px;
}

/* Cartão do plano */
.plano-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(13, 173, 119, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(13, 173, 119, 0.4);
}

.plano-card h3 {
  color: #0dad77;
  font-weight: 700;
  margin-bottom: 20px;
}

.plano-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.plano-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Botões */
.btn-success {
  background: linear-gradient(45deg, #0dad77, #27c67f);
  border: none;
  transition: background 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(45deg, #27c67f, #0dad77);
}

.btn-outline-success {
  border-color: #0dad77;
  color: #0dad77;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #0dad77;
  color: #fff;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #1a3d2b, #2e5d3e);
  color: #ccc;
  padding: 40px 60px 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo img {
  height: 50px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  color: #ccc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  color: #ccc;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 767.98px) {
  /* Espaçamento e centralização geral */
  .planos-container {
    padding: 20px 16px;
    margin: 40px auto;
  }

  .planos-header h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
        margin-top: 40px;
  }

  .planos-header p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Cartões empilhados */
  .row > article.col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  .plano-card {
    padding: 24px;
    text-align: center;
  }

  .plano-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .plano-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .plano-card ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .plano-card .btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px;
    margin-top: 15px;
  }

  /* Footer mobile */
  footer {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-logo img {
    height: 45px;
  }

  .footer-menu ul {
    align-items: center;
    gap: 8px;
  }

  .footer-menu a {
    font-size: 0.95rem;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
  }

  .footer-copy {
    font-size: 0.85rem;
    margin-top: 25px;
  }
}


