/* PLANOS */
#planos {
  background: var(--white);
}

.plan-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.plan-header .sec-sub {
  margin: 0 auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(43, 91, 255, 0.1);
}

.plan-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(43, 91, 255, 0.3);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.plan-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.plan-card.featured .plan-name {
  color: rgba(255, 255, 255, 0.6);
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
}

.plan-card.featured .plan-price {
  color: #fff;
}

.plan-price sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 600;
}

.plan-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.plan-card.featured .plan-per {
  color: rgba(255, 255, 255, 0.5);
}

.plan-div {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.plan-card.featured .plan-div {
  border-color: rgba(255, 255, 255, 0.15);
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.plan-feats li {
  font-size: 0.87rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.plan-feats li::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-card.featured .plan-feats li {
  color: rgba(255, 255, 255, 0.8);
}

.plan-card.featured .plan-feats li::before {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-plan {
  width: 100%;
  padding: 0.85rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-plan:hover {
  background: var(--blue-light);
  border-color: #C4D1FF;
  color: var(--blue);
}

.plan-card.featured .btn-plan {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(198, 241, 53, 0.35);
}

.plan-card.featured .btn-plan:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
}
