/* Seção de planos */
.planos {
  padding: 72px 40px;
  background: var(--paper);
}

.planos-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.planos-head {
  text-align: center;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.planos-head .eyebrow-line { justify-content: center; }
.planos-head h2 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -1.8px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
}
.planos-head h2 em { color: var(--green); font-style: italic; font-weight: 700; }
.planos-head p {
  font-size: 14.5px;
  color: var(--ink2);
  margin: 12px auto 0;
  max-width: 520px;
  line-height: 1.5;
}
.planos-head p b { color: var(--ink); }

.planos-base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}

.plan-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(0,60,30,.2);
}
.plan-card > .rainbow { position: absolute; top: 0; left: 0; right: 0; height: 4px; }

.plan-card .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 8px;
}

.plan-card .tagline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 6px;
}

.plan-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 22px;
  border-top: 1px dashed var(--line);
  padding-top: 22px;
}
.plan-card .price .rs { font-size: 13px; color: var(--ink2); }
.plan-card .price .v {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2.5px;
  color: var(--ink);
}
.plan-card .price .suffix { font-size: 13px; color: var(--ink2); }

.plan-card .benefits {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.plan-card .benefits .bi {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.45;
  align-items: flex-start;
}
.plan-card .benefits .bi svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan-card .benefits .bi > span { flex: 1; }
.plan-card .benefits .bi strong { color: var(--ink); font-weight: 700; }
.plan-card.hl .benefits .bi strong { color: white; font-weight: 700; }

/* Estilo comum dos botões dos planos (exceto Tier 1 amarelo) — verde sólido sticker pill */
.plan-card .cta,
.pc2 .cta {
  width: 100%;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  border: 2px solid var(--green-700);
  box-shadow: 0 5px 0 0 var(--green-700);
  transition: background .15s ease, box-shadow .12s ease, transform .12s ease;
}
.plan-card .cta { margin-top: 22px; padding: 14px 20px; font-size: 13.5px; }

.plan-card .cta:hover,
.pc2 .cta:hover {
  background: var(--green-hover);
  box-shadow: 0 2px 0 0 var(--green-700);
  transform: translateY(3px);
}
.plan-card .cta:active,
.pc2 .cta:active {
  box-shadow: 0 0 0 0 var(--green-700);
  transform: translateY(5px);
}

/* Tier 1 amarelo dentro do card destacado — full-width, mesma altura visual do .cta */
.plan-card .btn-white {
  margin-top: 22px;
  width: 100%;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: .8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-card.hl { background: var(--green); color: white; }
.plan-card.hl .eyebrow { color: white; opacity: .85; }
.plan-card.hl .tagline,
.plan-card.hl .price .v { color: white; }
.plan-card.hl .price { border-top: 1px dashed rgba(255,255,255,.25); }
.plan-card.hl .price .rs,
.plan-card.hl .price .suffix { color: rgba(255,255,255,.7); }
.plan-card.hl .benefits .bi { color: white; opacity: .95; }
.plan-card.hl .benefits .bi svg { color: white; }
.plan-card.hl .popular-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: white;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
}

.planos-premium {
  max-width: 900px;
  margin: 36px auto 0;
}
.planos-premium .sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.planos-premium .sec-head .e {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.planos-premium .sec-head .hr {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.planos-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pc2 {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.pc2:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.2);
}
.pc2 > .rainbow { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.pc2.dark { background: var(--ink); color: white; border: 0; }

.pc2 .row1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
}
.pc2 .name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
}
.pc2.dark .name { color: white; }
.pc2 .tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  opacity: .6;
}
.pc2 .tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.pc2 .price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.pc2.dark .price { border-top: 1px dashed rgba(255,255,255,.2); }
.pc2 .price .rs { font-size: 12px; opacity: .6; }
.pc2 .price .v {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
.pc2 .price .s { font-size: 11px; opacity: .55; }
.pc2 .feats {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  flex: 1;
}
.pc2 .f-main { font-size: 12px; font-weight: 600; color: var(--green); }
.pc2.dark .f-main { color: white; }
.pc2 .f-limit { font-size: 12px; font-weight: 600; opacity: .9; }
.pc2 .f-limit strong { font-weight: 800; }
.pc2.dark .f-limit strong { color: white; }
.pc2 .fi {
  display: flex;
  gap: 8px;
  font-size: 11.5px;
  opacity: .75;
  line-height: 1.4;
}
.pc2 .fi svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pc2.dark .fi svg { color: white; }

.pc2 .cta { margin-top: 16px; padding: 13px 20px; font-size: 12.5px; }

.planos .fine {
  font-size: 12px;
  color: var(--ink2);
  margin-top: 18px;
  text-align: center;
  line-height: 1.5;
}

.planos-foot-cta {
  margin-top: 36px;
  text-align: center;
}
