/* ════════════════════════════
   HERO
════════════════════════════ */
.pricing-hero {
    padding: 64px 32px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.pricing-hero-inner { max-width: 600px; margin: 0 auto; }

.pricing-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pricing-sub {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ── Toggle ── */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
}

.toggle-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    cursor: default;
}

.toggle-label.active { color: var(--gray-900); }

.badge-save {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.toggle-btn {
    width: 40px; height: 22px;
    background: var(--gray-300);
    border: none; border-radius: 100px;
    cursor: pointer; position: relative;
    transition: background 0.2s;
    padding: 0;
}

.toggle-btn.active { background: var(--navy); }

.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-btn.active .toggle-thumb { transform: translateX(18px); }

/* ════════════════════════════
   PLANOS
════════════════════════════ */
.plans-section {
    padding: 56px 32px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.plans-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.2s;
}

.plan-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.plan-featured {
    border-color: var(--navy);
    box-shadow: 0 8px 32px rgba(30,58,95,0.12);
    transform: translateY(-6px);
}

.plan-featured:hover { transform: translateY(-8px); }

.plan-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--navy); color: var(--white);
    font-size: 0.62rem; font-weight: 700;
    padding: 4px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }

.plan-name {
    font-size: 1.1rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: 5px;
}

.plan-desc { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

.plan-price-wrap { margin-bottom: 22px; }

.plan-price {
    display: flex; align-items: baseline; gap: 2px;
}

.price-currency {
    font-size: 1rem; font-weight: 700;
    color: var(--gray-900); margin-right: 2px;
}

.price-val {
    font-size: 2.2rem; font-weight: 800;
    color: var(--gray-900); line-height: 1;
    transition: all 0.3s;
}

.price-unit { font-size: 0.78rem; color: var(--gray-500); margin-left: 4px; }

.price-annual-note {
    font-size: 0.74rem; color: var(--gray-500);
    margin-top: 5px; display: none;
}

.price-annual-note.visible { display: block; }

.plan-features {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 9px; margin-bottom: 24px;
}

.plan-features li {
    display: flex; align-items: center;
    gap: 9px; font-size: 0.82rem; color: var(--gray-600);
}

.plan-features li i { font-size: 0.8rem; flex-shrink: 0; }
.plan-features li i.bi-check-circle-fill { color: #16a34a; }
.feature-no { opacity: 0.4; }
.feature-no i.bi-x-circle { color: var(--gray-400); }

.plan-cta {
    display: block; text-align: center;
    padding: 11px; border-radius: 10px;
    font-size: 0.86rem; font-weight: 700;
    text-decoration: none; font-family: var(--font);
    transition: all 0.2s; margin-bottom: 10px;
}

.plan-cta-navy {
    background: var(--navy); color: var(--white);
    border: 1.5px solid var(--navy);
}
.plan-cta-navy:hover {
    background: var(--navy-dark);
    box-shadow: 0 4px 14px rgba(30,58,95,0.25);
}

.plan-cta-outline {
    background: transparent; color: var(--navy);
    border: 1.5px solid var(--gray-200);
}
.plan-cta-outline:hover { background: var(--gray-50); border-color: var(--navy-light); }

.plan-trial {
    text-align: center; font-size: 0.72rem;
    color: var(--gray-400);
}

/* ════════════════════════════
   COMPARATIVO
════════════════════════════ */
.compare-section { padding: 64px 32px; background: var(--white); }
.compare-inner { max-width: 1100px; margin: 0 auto; }

.compare-title {
    font-size: 1.5rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: 28px;
    text-align: center;
}

.compare-wrap { overflow-x: auto; }

.compare-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.84rem;
}

.compare-table th {
    padding: 12px 16px; text-align: center;
    font-size: 0.78rem; font-weight: 700;
    color: var(--gray-500); text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-200);
}

.compare-table th:first-child { text-align: left; }
.th-featured { color: var(--navy) !important; }

.compare-table td {
    padding: 12px 16px; text-align: center;
    color: var(--gray-600); border-bottom: 1px solid var(--gray-100);
}

.compare-table td:first-child { text-align: left; color: var(--gray-900); font-weight: 500; }
.compare-table tr:hover td { background: var(--gray-50); }
.td-featured { background: #f0f4fc; }
.compare-table tr:hover .td-featured { background: #e8eef7; }

.text-green { color: #16a34a; font-size: 1rem; }
.text-gray  { color: var(--gray-300); font-size: 1rem; }

/* ════════════════════════════
   BITCOIN
════════════════════════════ */
.btc-section {
    background: #0f172a;
    padding: 56px 32px;
    border-top: 1px solid #1e293b;
}

.btc-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr;
    gap: 40px; align-items: center;
}

.btc-icon {
    font-size: 4rem; line-height: 1;
    color: #f7931a;
    width: 100px; height: 100px;
    background: rgba(247,147,26,0.1);
    border: 1px solid rgba(247,147,26,0.2);
    border-radius: 24px;
    display: flex; align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btc-title {
    font-size: 1.5rem; font-weight: 800;
    color: var(--white); margin-bottom: 10px;
}

.btc-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 20px; max-width: 540px;
}

.btc-features {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 24px;
}

.btc-feature {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 6px 14px; border-radius: 8px;
    font-size: 0.78rem; color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.btc-feature i { color: #f7931a; font-size: 0.85rem; }

.btc-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    background: #f7931a; color: #0f172a;
    border-radius: 10px; font-weight: 700;
    font-size: 0.86rem; text-decoration: none;
    font-family: var(--font); transition: all 0.2s;
}

.btc-cta:hover {
    background: #e8841a;
    box-shadow: 0 4px 16px rgba(247,147,26,0.3);
    transform: translateY(-1px);
}

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-section {
    padding: 64px 32px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-title {
    font-size: 1.5rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: 32px;
    text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px; overflow: hidden;
}

.faq-btn {
    width: 100%; padding: 16px 20px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    background: transparent; border: none;
    cursor: pointer; text-align: left;
    font-family: var(--font); font-size: 0.88rem;
    font-weight: 600; color: var(--gray-900);
    transition: background 0.15s;
}

.faq-btn:hover { background: var(--gray-50); }
.faq-btn i { font-size: 0.8rem; color: var(--gray-400); flex-shrink: 0; transition: transform 0.2s; }
.faq-btn.open i { transform: rotate(45deg); }

.faq-answer {
    padding: 0 20px; max-height: 0;
    overflow: hidden; font-size: 0.84rem;
    color: var(--gray-500); line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 200px; padding: 0 20px 16px; }

/* ════════════════════════════
   CTA FINAL
════════════════════════════ */
.cta-final {
    padding: 72px 32px; text-align: center;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.cta-final-inner { max-width: 520px; margin: 0 auto; }

.cta-final-title {
    font-size: 1.8rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: 10px;
}

.cta-final-sub {
    font-size: 0.93rem; color: var(--gray-500);
    margin-bottom: 28px; line-height: 1.7;
}

.cta-final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta-btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; background: var(--navy); color: var(--white);
    border-radius: var(--radius); font-weight: 700;
    font-size: 0.88rem; text-decoration: none;
    font-family: var(--font); transition: all 0.2s;
}
.cta-btn-navy:hover { background: var(--navy-dark); box-shadow: 0 6px 20px rgba(30,58,95,0.2); transform: translateY(-1px); }

.cta-btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; background: #25d366; color: var(--white);
    border-radius: var(--radius); font-weight: 700;
    font-size: 0.88rem; text-decoration: none;
    font-family: var(--font); transition: all 0.2s;
}
.cta-btn-whatsapp:hover { background: #1fb855; box-shadow: 0 6px 20px rgba(37,211,102,0.2); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .plans-inner { grid-template-columns: 1fr; }
    .plan-featured { transform: none; }
    .btc-inner { grid-template-columns: 1fr; text-align: center; }
    .btc-icon { margin: 0 auto; }
    .btc-features { justify-content: center; }
    .btc-desc { margin: 0 auto 20px; }
}