.plano-section {
  background-color: #f8f8f8;
  padding: 3rem 1rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
}

.plano-box {
  max-width: 520px; /* Aumentado de 400px */
  background-color: #ffff;
  width: 100%;
  border-radius: 16px;
  padding: 2.5rem; /* Aumentado */
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}

.plano-titulo {
  font-size: 1.6rem;
  background-color: #c89b42;
  display: inline-block;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.4rem 1rem;
}

.divisoria-plano {
  height: 2px;
  width: 100%;
  background-color: #e0e0e0;
  margin: 1rem 0;
}

.plano-subtitulo {
  background-color: #d1e5c6;
  color: #2e4e24;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.6rem 0;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}

.plano-beneficios {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  font-size: 1.1rem;
  color: #333;
  text-align: left;
}

.plano-beneficios li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.check-icone {
  color: #6fbf4b;
  margin-right: 0.6rem;
  font-size: 1.4rem;
}

.plano-preco p {
  margin: 0.5rem 0;
  color: #555;
}

.valor-grande {
  font-size: 3rem;
  font-weight: bold;
  color: #3d3d3d;
}

.preco-avista {
  font-size: 1.2rem;
  color: #7a7a7a;
}

.botao-mentoria {
  display: inline-block;
  background: linear-gradient(to right, #07b45b, #07b45b);
  color: #fff;
  padding: 1.2rem 1.8rem;
  margin-top: 1.8rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.botao-mentoria:hover {
  background: linear-gradient(to right, #2ac773, #2ac773);
}

/* ÍCONES DE PAGAMENTO */
.plano-pagamentos {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.icone-pagamento i {
  font-size: 2.4rem;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icone-pagamento i:hover {
  transform: scale(1.2);
  color: #caa64d;
}

/* RESPONSIVO ATÉ 1024PX */
@media (max-width: 1024px) {
  .plano-box {
    max-width: 460px;
    padding: 2.2rem;
  }

  .valor-grande {
    font-size: 2.6rem;
  }

  .botao-mentoria {
    font-size: 1.1rem;
  }
}

/* RESPONSIVO ATÉ 768PX */
@media (max-width: 768px) {
  .plano-box {
    max-width: 100%;
    padding: 2rem;
  }

  .valor-grande {
    font-size: 2.2rem;
  }

  .botao-mentoria {
    font-size: 1rem;
  }

  .icone-pagamento i {
    font-size: 1.8rem;
  }
}

/* RESPONSIVO ATÉ 480PX */
@media (max-width: 480px) {
  .plano-box {
    padding: 1.5rem;
  }

  .valor-grande {
    font-size: 1.9rem;
  }

  .botao-mentoria {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }

  .icone-pagamento i {
    font-size: 1.5rem;
  }
}
