#planos {
  padding: 100px 4%;
  text-align: center;
  background: linear-gradient(135deg, #eaecee 0%, #c8c8c9 100%);
}

#planos h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #080b0f;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.planos-subtitle {
  font-size: 1.25rem;
  color: #080b0f;
  max-width: 600px;
  margin: 0 auto 50px;
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  border-color: #86bff8;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #117be8;
}

.plan-card img {
  width: 140px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.plan-card h3 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
}

.price-new {
  font-weight: 800;
  color: #117be8;
  margin: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pvalor {
  font-size: 2rem;
}

.price-new::before {
  content: "R$";
  font-size: 1.75rem;
  font-weight: 600;
  color: #64748b;
}

.plan-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 60px; 
}

.descrição {
  white-space: pre-line; /* Isso faz com que o 'Enter' digitado no Admin vire uma quebra de linha real */
  line-height: 1.6;      /* Melhora o espaçamento entre as linhas */
  text-align: center;
  margin-bottom: auto;
  font-weight: 500;
}

.featured {
  border: 2px solid #117be8;
  background: linear-gradient(to bottom, #ffffff, #f0f7ff);
}

.featured::after {
  content: "MAIS POPULAR";
  position: absolute;
  top: 20px;
  right: -35px;
  background: #117be8;
  color: white;
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(17, 123, 232, 0.3);
}

.btn-contratar {
  background: #117be8;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(17, 123, 232, 0.4);
}

.btn-contratar:hover {
  background: #0056b3;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(17, 123, 232, 0.5);
}

/* Estilo para Serviços Avulsos */
.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.servico-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.servico-card:hover {
  border-color: #117be8;
  background: #f8fafc;
}

.servico-card i {
  font-size: 2.5rem;
  color: #117be8;
  margin-bottom: 20px;
}

.servico-preco {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 15px 0;
}


.promo-featured {
  border: 2px solid #f57c00;
  background: linear-gradient(to bottom, #ffffff, #fffdfa);
}

.promo-featured::after {
  content: "OFERTA"; /* Texto da segunda faixa */
  position: absolute;
  top: 20px;
  right: -35px;
  background: #f57c00;
  color: white;
  padding: 8px 50px;
  font-size: 0.80rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.promo-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f57c00;
}