/* ================================================================
   TE CONTO CASOS · Página de Assinatura
   Depende de tcc.css (tokens + base)
   ================================================================ */

/* ── Page wrapper ─────────────────────────────────────────────── */
.assinar-body { background: var(--bg-abyss); }

/* ── Hero ─────────────────────────────────────────────────────── */
.assinar-hero {
    position:   relative; padding: 100px 0 5rem; overflow: hidden;
    min-height: 100vh; display: flex; align-items: center;
}

.ah-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 10% 60%, rgba(30,10,35,.4) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(50,30,5,.35) 0%, transparent 50%),
        linear-gradient(180deg, #080808 0%, #0b0b08 100%);
}
.ah-grid {
    position:   absolute; inset: 0; pointer-events: none;
    background:
        repeating-linear-gradient(0deg,  rgba(201,168,76,.013) 0, rgba(201,168,76,.013) 1px, transparent 1px, transparent 72px),
        repeating-linear-gradient(90deg, rgba(201,168,76,.013) 0, rgba(201,168,76,.013) 1px, transparent 1px, transparent 72px);
}

.ah-inner {
    position:  relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display:   grid; grid-template-columns: 1fr 460px; gap: 5rem; align-items: center;
}

/* ── Left copy ────────────────────────────────────────────────── */
.ah-left {}

.ah-eyebrow {
    display:        inline-flex; align-items: center; gap: .5rem;
    font-size:      .62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}

.ah-title {
    font-family:   var(--font-display);
    font-size:     clamp(2rem, 4.5vw, 3.6rem);
    font-weight:   700; line-height: 1.05; letter-spacing: .03em;
    margin-bottom: 1.25rem;
}
.ah-title span { color: var(--gold); }

.ah-sub {
    font-size:     1rem; color: var(--text-secondary); line-height: 1.8;
    max-width:     480px; margin-bottom: 2.5rem;
}

/* Feature list on left */
.ah-features {
    display:  flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem;
}
.ah-feat {
    display:  flex; align-items: center; gap: .75rem;
    font-size: .85rem; color: var(--text-secondary);
}
.ah-feat i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }

/* Trust strip below features */
.ah-trust {
    display:  flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
}
.ah-trust-item {
    display:  flex; align-items: center; gap: .4rem;
    font-size: .72rem; color: var(--text-muted);
}
.ah-trust-item i { font-size: .75rem; }

/* ── Plan Card ────────────────────────────────────────────────── */
.plan-card {
    position:      relative;
    background:    rgba(14,14,10,.92);
    border:        1px solid var(--border-gold);
    border-radius: var(--r-2xl);
    padding:       2.25rem;
    box-shadow:    0 0 60px rgba(201,168,76,.1), 0 24px 60px rgba(0,0,0,.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow:      hidden;
}
.plan-card::before {
    content:    '';
    position:   absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.plan-card-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% -10%, rgba(201,168,76,.1) 0%, transparent 60%);
}

.pc-badge {
    display:        inline-flex; align-items: center; gap: .4rem;
    font-size:      .6rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold);
    border:         1px solid var(--border-gold); padding: 4px 12px;
    border-radius:  var(--r-xs); background: var(--gold-glow-sm);
    margin-bottom:  1.5rem;
}

.pc-price-block { margin-bottom: 1.5rem; }
.pc-from       { font-size: .7rem; color: var(--text-muted); margin-bottom: .25rem; }
.pc-price      {
    font-family:  var(--font-display); line-height: 1;
    display:      flex; align-items: flex-start; gap: .35rem;
}
.pc-currency   { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-top: .5rem; }
.pc-amount     { font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; text-shadow: 0 0 30px rgba(201,168,76,.25); }
.pc-period     { font-size: .9rem; color: var(--text-muted); align-self: flex-end; margin-bottom: .5rem; }
.pc-pix-hint  {
    display:      flex; align-items: center; gap: .4rem;
    font-size:    .72rem; color: var(--text-muted); margin-top: .5rem;
    padding:      .375rem .625rem; background: rgba(50,188,173,.06);
    border:       1px solid rgba(50,188,173,.15); border-radius: var(--r-sm);
    width:        fit-content;
}

/* Checkout form */
.pc-form { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }

.form-field {
    display:  flex; flex-direction: column; gap: .35rem;
}
.form-label {
    font-size: .68rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--text-muted);
}
.form-input {
    background:    var(--bg-elevated); color: var(--text-primary);
    border:        1px solid var(--border); border-radius: var(--r-md);
    padding:       .7rem .875rem; font-size: .88rem; font-family: var(--font-body);
    outline:       none; width: 100%;
    transition:    border-color var(--ease), box-shadow var(--ease);
}
.form-input:focus {
    border-color: var(--border-gold);
    box-shadow:   0 0 0 3px rgba(201,168,76,.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input.is-invalid { border-color: var(--cat-crime); }
.form-error { font-size: .68rem; color: var(--cat-crime); }

/* Flash messages */
.flash-error {
    padding:       .75rem 1rem; margin-bottom: 1rem;
    background:    rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25);
    border-radius: var(--r-md); font-size: .8rem; color: #e74c3c;
    display:       flex; align-items: flex-start; gap: .5rem;
}

/* MP Button */
.btn-mp {
    display:        flex; align-items: center; justify-content: center; gap: .5rem;
    width:          100%; padding: .875rem;
    background:     var(--gold); color: var(--bg-abyss);
    font-size:      .88rem; font-weight: 700; letter-spacing: .04em;
    border:         none; border-radius: var(--r-md); cursor: pointer;
    transition:     background var(--ease), box-shadow var(--ease), transform var(--ease);
    box-shadow:     0 4px 20px rgba(201,168,76,.25);
    text-decoration: none;
}
.btn-mp:hover {
    background:  var(--gold-light);
    box-shadow:  var(--shadow-gold);
    transform:   translateY(-1px);
}
.btn-mp:active { transform: translateY(0); }

.btn-mp-logo { font-size: 1.1rem; font-weight: 900; letter-spacing: -.02em; }

/* Tabs nova conta / já tenho conta */
.pc-tabs {
    display:    flex; margin-bottom: 1.25rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-md); overflow: hidden;
}
.pc-tab {
    flex: 1; padding: .6rem; background: none;
    font-size: .72rem; font-weight: 600; letter-spacing: .04em;
    color: var(--text-muted); cursor: pointer; border: none;
    transition: background var(--ease), color var(--ease);
}
.pc-tab.active { background: var(--bg-elevated); color: var(--gold); }

/* User pill - logado */
.pc-user-pill {
    display:    flex; align-items: center; gap: .75rem;
    padding:    .875rem 1rem; margin-bottom: 1rem;
    background: rgba(201,168,76,.04); border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
}
.pc-user-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-glow-sm); color: var(--gold);
    font-family: var(--font-display); font-size: .8rem; font-weight: 700;
    border: 1px solid var(--border-gold);
}
.pc-user-name  { font-size: .82rem; font-weight: 600; color: var(--text-primary); }
.pc-user-email { font-size: .68rem; color: var(--text-muted); }

/* Nota de criação de conta */
.pc-create-note {
    font-size: .68rem; color: var(--text-muted);
    display: flex; align-items: flex-start; gap: .35rem; line-height: 1.5;
    margin-bottom: .25rem;
}

/* Login tab */
.pc-login-tab { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.25rem; }
.pc-login-desc { font-size: .82rem; color: var(--text-secondary); line-height: 1.6; }

/* No commitment text */
.pc-no-commit {
    text-align: center; font-size: .68rem; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; gap: .35rem;
    padding-top: 1rem;
}

/* Payment icons strip */
.pc-payment-icons {
    display:  flex; align-items: center; justify-content: center;
    gap:      .625rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.05); margin-top: 1rem;
    flex-wrap: wrap;
}
.pc-pay-icon {
    padding:       3px 8px; background: rgba(255,255,255,.04);
    border:        1px solid rgba(255,255,255,.07); border-radius: var(--r-xs);
    font-size:     .6rem; font-weight: 700; color: var(--text-muted);
    letter-spacing: .04em;
}
.pc-pay-pix { color: #32BCAD; border-color: rgba(50,188,173,.2); background: rgba(50,188,173,.04); }

/* ── Social proof strip ───────────────────────────────────────── */
.social-proof {
    background:     rgba(255,255,255,.015);
    border-top:     1px solid rgba(255,255,255,.04);
    border-bottom:  1px solid rgba(255,255,255,.04);
    padding:        1.5rem 0;
}
.sp-inner {
    max-width:  1200px; margin: 0 auto; padding: 0 2rem;
    display:    flex; align-items: center; justify-content: center;
    gap:        4rem; flex-wrap: wrap;
}
.sp-item { display: flex; align-items: center; gap: .75rem; }
.sp-number {
    font-family:  var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.sp-label { font-size: .72rem; color: var(--text-muted); line-height: 1.4; }

/* ── Features full grid ───────────────────────────────────────── */
.features-section {
    padding:    5rem 0; background: var(--bg-abyss);
}
.feat-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.feat-head { text-align: center; margin-bottom: 3.5rem; }
.sect-eyebrow {
    display:        inline-block; font-size: .62rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.sect-title {
    font-family:   var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight:   700; letter-spacing: .04em;
}

.feat-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   1.25rem;
}
.feat-card {
    padding:       1.5rem; border-radius: var(--r-xl);
    background:    var(--bg-card); border: 1px solid var(--border);
    transition:    border-color var(--ease), box-shadow var(--ease);
    display:       flex; align-items: flex-start; gap: 1rem;
}
.feat-card:hover { border-color: var(--border-gold); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.feat-icon-wrap {
    width:  44px; height: 44px; flex-shrink: 0;
    display:    flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,.08); border-radius: var(--r-md);
    color:      var(--gold); font-size: 1rem;
}
.feat-text h4 { font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.feat-text p  { font-size: .78rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testi-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-abyss) 0%, #0c0b08 50%, var(--bg-abyss) 100%);
}
.testi-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.testi-head  { text-align: center; margin-bottom: 3rem; }

.testi-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   1.25rem;
}
.testi-card {
    padding:       1.75rem; border-radius: var(--r-xl);
    background:    var(--bg-card); border: 1px solid var(--border);
    display:       flex; flex-direction: column; gap: .875rem;
    transition:    border-color var(--ease);
}
.testi-card:hover { border-color: var(--border-gold); }

.testi-stars { display: flex; gap: .25rem; }
.testi-stars i { color: var(--gold); font-size: .75rem; }
.testi-text  { font-size: .85rem; color: var(--text-secondary); line-height: 1.75; flex: 1; font-style: italic; }
.testi-text::before { content: '"'; color: var(--gold); }
.testi-text::after  { content: '"'; color: var(--gold); }
.testi-user  { display: flex; align-items: center; gap: .625rem; margin-top: auto; }
.testi-ava   {
    width:  36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display:    flex; align-items: center; justify-content: center;
    background: var(--gold-glow-sm); color: var(--gold);
    font-family: var(--font-display); font-size: .7rem; font-weight: 700;
    border:     1px solid var(--border-gold);
}
.testi-nome   { font-size: .78rem; font-weight: 600; color: var(--text-primary); }
.testi-cidade { font-size: .65rem; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }
.faq-inner   { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.faq-head    { text-align: center; margin-bottom: 3rem; }

.faq-list    { display: flex; flex-direction: column; }
.faq-item    {
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.05); }

.faq-q {
    width:          100%; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    padding:        1.125rem 0; background: none;
    text-align:     left; cursor: pointer;
    font-size:      .88rem; font-weight: 600; color: var(--text-primary);
    transition:     color var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q i { font-size: .7rem; color: var(--text-muted); flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--gold); }

.faq-a {
    font-size:    .83rem; color: var(--text-secondary); line-height: 1.8;
    max-height:   0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.125rem; }

/* ── Bottom CTA ───────────────────────────────────────────────── */
.assinar-cta {
    padding:    6rem 0; text-align: center;
    background: linear-gradient(180deg, var(--bg-abyss) 0%, #0e0c05 50%, var(--bg-abyss) 100%);
    position:   relative; overflow: hidden;
}
.assinar-cta::before {
    content:    '';
    position:   absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width:      600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner  { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; padding: 0 2rem; }
.cta-title  { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: .04em; margin-bottom: .75rem; }
.cta-sub    { font-size: .9rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.cta-price  { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 1.75rem; }

/* ── Botões globais usados na página ──────────────────────────── */
.btn-gold {
    display:       inline-flex; align-items: center; gap: .625rem;
    font-family:   var(--font-display); font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color:         var(--bg-abyss); background: var(--gold);
    border:        none; border-radius: var(--r-md);
    padding:       .7rem 1.75rem; cursor: pointer;
    transition:    background var(--ease), box-shadow var(--ease);
    box-shadow:    0 0 16px rgba(201,168,76,.2);
}
.btn-gold:hover  { background: var(--gold-light); box-shadow: var(--shadow-gold); }
.btn-gold:active { transform: translateY(1px); }
.btn-lg          { padding: 1rem 2.5rem; font-size: .88rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ah-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .plan-card   { max-width: 460px; }
    .feat-grid   { grid-template-columns: repeat(2, 1fr); }
    .sp-inner    { gap: 2rem; }
}

@media (max-width: 768px) {
    .assinar-hero    { min-height: auto; padding: 100px 0 3rem; }
    .testi-grid      { grid-template-columns: 1fr; }
    .feat-grid       { grid-template-columns: 1fr; }
    .sp-item         { min-width: 120px; }
    .plan-card       { max-width: 100%; }
}

@media (max-width: 480px) {
    .ah-title        { font-size: 1.8rem; }
    .pc-amount       { font-size: 3rem; }
    .assinar-cta     { padding: 4rem 0; }
}
