/* ═══════════════════════════════════════════════════
   plans.css — Página pública de planos (SÓCAMINHÕES)
   ═══════════════════════════════════════════════════ */

:root {
  --sc-green:       #1B7A3E;
  --sc-green-dark:  #145C2E;
  --sc-green-mid:   #239950;
  --sc-green-light: #E8F5EE;
  --sc-ink:         #1E2A22;
  --sc-gray:        #6B7280;
  --sc-border:      #D1D5DB;
  --sc-off-white:   #F9FAFB;
}

/* ── Plans grid ── */
.sc-plans-grid { display: grid; gap: 22px; align-items: start; isolation: isolate; }
.sc-plans-grid--1col { grid-template-columns: minmax(0,480px); justify-content: center; }
.sc-plans-grid--2col { grid-template-columns: repeat(2,1fr); max-width: 860px; margin-inline: auto; }
.sc-plans-grid--3col { grid-template-columns: repeat(3,1fr); }
@media (max-width: 1023px) {
  .sc-plans-grid--3col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 639px) {
  .sc-plans-grid--2col,
  .sc-plans-grid--3col { grid-template-columns: 1fr; }
}

/* ── Plan card ── */
.sc-plan-card {
  background: #fff;
  border: 1.5px solid var(--sc-border);
  border-radius: 14px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.sc-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.09);
}
.sc-plan-card.is-featured {
  background: var(--sc-green);
  border-color: var(--sc-green);
  box-shadow: 0 8px 24px rgba(27,122,62,.30);
}
.sc-plan-card.is-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27,122,62,.40);
}

/* badge */
.sc-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--sc-ink);
  color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 18px; border-radius: 100px;
  white-space: nowrap; font-family: 'Barlow', sans-serif;
}

/* tag */
.sc-plan-tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sc-green); margin-bottom: 8px;
}
.is-featured .sc-plan-tag { color: rgba(255,255,255,.65); }

/* name */
.sc-plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 2px;
  color: var(--sc-ink); line-height: 1.05;
}
.is-featured .sc-plan-name { color: #fff; }

/* desc */
.sc-plan-desc {
  font-size: 13px; color: var(--sc-gray);
  line-height: 1.65; margin: 10px 0 22px;
}
.is-featured .sc-plan-desc { color: rgba(255,255,255,.72); }

/* price */
.sc-plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1;
  color: var(--sc-ink); letter-spacing: 1px;
}
.is-featured .sc-plan-price { color: #fff; }
.sc-plan-currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; line-height: 1;
  color: var(--sc-ink); vertical-align: top; margin-top: 8px; display: inline-block;
}
.is-featured .sc-plan-currency { color: rgba(255,255,255,.85); }
.sc-plan-period {
  font-size: 12px; font-weight: 600;
  color: var(--sc-gray); margin-top: 3px; margin-bottom: 24px;
}
.is-featured .sc-plan-period { color: rgba(255,255,255,.6); }
.sc-plan-consult {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--sc-ink); margin-bottom: 24px; letter-spacing: 1px;
}
.is-featured .sc-plan-consult { color: #fff; }

/* divider */
.sc-plan-divider { height: 1px; background: var(--sc-border); margin: 0 0 22px; }
.is-featured .sc-plan-divider { background: rgba(255,255,255,.2); }

/* features list */
.sc-plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.sc-plan-features li {
  font-size: 13.5px; color: var(--sc-gray);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.is-featured .sc-plan-features li { color: rgba(255,255,255,.85); }
.sc-plan-features .sc-feat-icon {
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px; display: inline-flex;
  align-items: center; justify-content: center;
}
.sc-feat-check  { color: var(--sc-green); font-size: 14px; }
.sc-feat-cross  { color: #C4C9CF; font-size: 12px; }
.is-featured .sc-feat-check { color: rgba(255,255,255,.9); }
.sc-feat-val { font-weight: 700; color: var(--sc-ink); margin-left: 2px; }
.is-featured .sc-feat-val { color: #fff; }
.sc-feat-missing { opacity: .45; }

/* cta button */
.sc-plan-btn {
  display: block; width: 100%; margin-top: 28px;
  padding: 14px 16px; text-align: center;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all .2s;
  font-family: 'Barlow', sans-serif; cursor: pointer; border: none;
}
.sc-plan-btn-green {
  background: var(--sc-green); border: 1.5px solid var(--sc-green);
  color: #fff;
}
.sc-plan-btn-green:hover { background: var(--sc-green-dark); border-color: var(--sc-green-dark); }
.sc-plan-btn-white {
  background: #fff; border: 1.5px solid #fff;
  color: var(--sc-green-dark);
}
.sc-plan-btn-white:hover { background: rgba(255,255,255,.88); }

/* ── Trust bar ── */
.sc-trust-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--sc-ink); border-radius: 12px;
  overflow: hidden; margin: 0 auto 72px;
  max-width: 900px;
}
.sc-trust-item {
  flex: 1 1 200px; padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.sc-trust-item:last-child { border-right: none; }
.sc-trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; letter-spacing: 1px;
  color: var(--sc-green-mid); line-height: 1;
}
.sc-trust-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* ── Billing toggle ── */
.sc-billing-toggle-wrap {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--sc-off-white); border: 1.5px solid var(--sc-border);
  border-radius: 100px; padding: 6px 18px;
}
.sc-billing-label { font-size: 13px; font-weight: 700; color: var(--sc-gray); letter-spacing: .3px; }
.sc-billing-label.is-active { color: var(--sc-ink); }
.sc-toggle-track {
  position: relative; width: 44px; height: 24px;
  border-radius: 100px; background: #D1D5DB;
  cursor: pointer; border: none; padding: 0;
  transition: background .2s; flex-shrink: 0;
}
.sc-toggle-track.is-on { background: var(--sc-green); }
.sc-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .2s;
}
.sc-toggle-track.is-on .sc-toggle-thumb { transform: translateX(20px); }
.sc-annual-save {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sc-green-light); color: var(--sc-green-dark);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 100px;
}

/* ── FAQ ── */
.sc-faq-item { border-bottom: 1px solid var(--sc-border); }
.sc-faq-btn {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 20px 0; background: none; border: none;
  cursor: pointer; text-align: left; gap: 16px;
}
.sc-faq-question {
  font-size: 15px; font-weight: 700; color: var(--sc-ink);
}
.sc-faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--sc-green-light); color: var(--sc-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform .25s, background .2s;
}
.sc-faq-item.is-open .sc-faq-icon {
  background: var(--sc-green); color: #fff; transform: rotate(45deg);
}
.sc-faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.sc-faq-item.is-open .sc-faq-body { max-height: 200px; }
.sc-faq-answer {
  font-size: 14px; color: var(--sc-gray);
  line-height: 1.7; padding-bottom: 20px;
}

/* ── CTA banner ── */
.sc-cta-banner {
  background: var(--sc-green); border-radius: 14px;
  padding: 60px 72px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.sc-cta-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.sc-cta-banner::after {
  content: ''; position: absolute; right: 120px; bottom: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.sc-cta-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.sc-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 2px;
  color: #fff; line-height: 1; position: relative;
}
.sc-cta-sub {
  font-size: 15px; color: rgba(255,255,255,.7);
  margin-top: 10px; position: relative;
}
.sc-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.sc-btn-white {
  padding: 14px 28px; background: #fff;
  border-radius: 7px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--sc-green-dark); text-decoration: none;
  transition: background .2s; font-family: 'Barlow', sans-serif;
}
.sc-btn-white:hover { background: var(--sc-off-white); }
.sc-btn-ghost {
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 7px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #fff; text-decoration: none;
  transition: all .2s; font-family: 'Barlow', sans-serif;
}
.sc-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

@media (max-width: 767px) {
  .sc-cta-banner { padding: 40px 28px; }
  .sc-cta-title { font-size: 38px; }
}
