/* RR Subscriptions – Frontend Dashboard CSS */

/* ── Reset for our scope ── */
.rr-layout *, .rr-layout *::before, .rr-layout *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --rr-orange:     #F5690F; /* Accent */
    --rr-orange-dk:  #d4560a;
    --rr-green:      #2e7d4f;
    --rr-green-dk:   #1e6e3e;
    --rr-bg:         #000000; /* Primary */
    --rr-sidebar:    #0a0a0a;
    --rr-topbar:     #0a0a0a;
    --rr-card:       #161616;
    --rr-border:     #2a2a2a;
    --rr-text:       #ffffff; /* Secondary */
    --rr-muted:      #9c8478; /* tom suave do Text */
    --rr-dim:        #E1BFB1; /* Text */
    --rr-font-h:     'Space Grotesk', sans-serif;
    --rr-font-b:     'Manrope', sans-serif;
}

/* ── Full-viewport layout ── */
.rr-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--rr-bg);
    color: var(--rr-text);
    font-family: var(--rr-font-b);
    font-size: 14px;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9000;
}

/* ── Sidebar ── */
.rr-sidebar {
    width: 228px;
    flex-shrink: 0;
    background: var(--rr-sidebar);
    display: flex;
    flex-direction: column;
    padding: 26px 0 20px;
    border-right: 1px solid var(--rr-border);
    transition: transform .28s ease;
    z-index: 200;
}
.rr-brand { padding: 0 22px 36px; }
.rr-brand__name { font-family: var(--rr-font-h); font-weight: 700; font-size: 17px; letter-spacing: -.3px; text-transform: uppercase; color: var(--rr-orange); }
.rr-brand__sub  { font-family: var(--rr-font-b); font-weight: 500; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rr-muted); margin-top: 3px; }
.rr-nav { list-style: none; }
.rr-nav li a {
    display: flex; align-items: center; gap: 11px;
    padding: 13px 22px;
    color: var(--rr-muted);
    text-decoration: none;
    font-family: var(--rr-font-b); font-weight: 700; font-size: 12px; letter-spacing: .3px; text-transform: uppercase;
    transition: color .15s, background .15s;
}
.rr-nav li a:hover { color: #fff; background: rgba(255,255,255,.04); }
.rr-nav--active a {
    color: var(--rr-orange) !important;
    background: rgba(245,105,15,.08) !important;
    border-left: 3px solid var(--rr-orange);
    padding-left: 19px !important;
}
.rr-nav li a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Overlay */
.rr-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 199; }
.rr-sidebar-overlay.open { display: block; }

/* ── Main ── */
.rr-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }

/* ── Topbar ── */
.rr-topbar {
    display: flex; align-items: center; gap: 12px;
    padding: 0 24px; height: 64px;
    background: var(--rr-topbar); border-bottom: 1px solid var(--rr-border);
    flex-shrink: 0;
}
.rr-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--rr-muted); padding: 4px; transition: color .15s; }
.rr-hamburger:hover { color: #fff; }
.rr-hamburger svg { width: 20px; height: 20px; display: block; }
.rr-user { display: flex; align-items: center; gap: 11px; }
.rr-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #2a2a2a; border: 2px solid var(--rr-orange);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rr-font-h); font-size: 12px; font-weight: 700; color: var(--rr-orange);
    overflow: hidden; flex-shrink: 0;
}
.rr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rr-user__name   { font-family: var(--rr-font-h); font-weight: 700; font-size: 13px; letter-spacing: -.2px; text-transform: uppercase; }
.rr-user__status { font-family: var(--rr-font-b); font-size: 10px; font-weight: 700; color: #3ecf5a; text-transform: uppercase; letter-spacing: .3px; margin-top: 1px; }
.rr-search { margin-left: auto; position: relative; flex-shrink: 1; }
.rr-search input {
    background: #1e1e1e; border: 1px solid var(--rr-border); border-radius: 4px;
    padding: 8px 14px 8px 34px; color: var(--rr-dim);
    font-family: var(--rr-font-b); font-size: 12px; width: 230px; outline: none;
    transition: border-color .2s;
}
.rr-search input::placeholder { color: var(--rr-muted); }
.rr-search input:focus { border-color: var(--rr-orange); }
.rr-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--rr-muted); width: 13px; height: 13px; }
.rr-topicons { display: flex; gap: 12px; margin-left: 10px; flex-shrink: 0; }
.rr-topicons button, .rr-topicons a { background: none; border: none; cursor: pointer; color: var(--rr-muted); padding: 3px; transition: color .15s; display: flex; align-items: center; }
.rr-topicons button:hover, .rr-topicons a:hover { color: #fff; }
.rr-topicons svg { width: 19px; height: 19px; display: block; }
.rr-topicons__search { display: none; }

/* ── Scroll ── */
.rr-scroll { flex: 1; overflow-y: auto; padding: 24px 24px 60px; }
.rr-scroll::-webkit-scrollbar { width: 4px; }
.rr-scroll::-webkit-scrollbar-thumb { background: #2e2e2e; }

/* ── Top row ── */
.rr-top-row { display: grid; grid-template-columns: 1fr 260px; gap: 16px; margin-bottom: 24px; }
.rr-hero {
    background: var(--rr-card); border: 1px solid var(--rr-border);
    padding: 32px 36px; position: relative; overflow: hidden; min-height: 190px;
}
.rr-hero h1 { font-family: var(--rr-font-h); font-weight: 700; font-size: 30px; line-height: 36px; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 14px; }
.rr-hero p  { font-family: var(--rr-font-b); font-size: 14px; line-height: 22px; color: var(--rr-dim); max-width: 380px; }
.rr-hero__arrow { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); opacity: .09; }
.rr-hero__arrow svg { width: 120px; height: 120px; }
.rr-hero__link { margin-top: 20px; font-family: var(--rr-font-b); font-size: 13px; color: var(--rr-dim); }
.rr-hero__link a { color: var(--rr-orange) !important; font-weight: 700; text-decoration: none !important; border-bottom: 1px solid var(--rr-orange); }
.rr-hero__link a:hover, .rr-hero__link a:focus, .rr-hero__link a:visited, .rr-hero__link a:active { color: var(--rr-orange) !important; text-decoration: none !important; border-bottom-color: var(--rr-orange) !important; }
.rr-premium { background: var(--rr-orange); padding: 24px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; position: relative; overflow: hidden; }
.rr-premium::after { content: ''; position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.09); }
.rr-premium__icon { background: rgba(0,0,0,.22); padding: 7px 8px; display: inline-flex; align-items: center; justify-content: center; z-index: 1; }
.rr-premium__icon svg { width: 13px; height: 13px; color: #fff; }
.rr-premium h2 { font-family: var(--rr-font-h); font-weight: 700; font-size: 20px; letter-spacing: -.6px; text-transform: uppercase; color: #fff; z-index: 1; }

/* ── Mid row ── */
.rr-mid-row { display: grid; grid-template-columns: 1fr 260px; gap: 16px; margin-bottom: 24px; align-items: start; }
.rr-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rr-sec-head h2 { font-family: var(--rr-font-h); font-weight: 700; font-size: 15px; letter-spacing: -.4px; text-transform: uppercase; }
.rr-sec-head a  { font-family: var(--rr-font-b); font-weight: 700; font-size: 11px; color: var(--rr-orange) !important; text-transform: uppercase; letter-spacing: .5px; text-decoration: none !important; }
.rr-sec-head a:hover, .rr-sec-head a:focus, .rr-sec-head a:visited, .rr-sec-head a:active { color: var(--rr-orange) !important; text-decoration: underline !important; }

/* Cards */
.rr-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rr-ccard { background: var(--rr-card); border: 1px solid var(--rr-border); overflow: hidden; cursor: pointer; transition: border-color .2s; text-decoration: none; display: block; }
.rr-ccard:hover { border-color: #3a3a3a; }
.rr-ccard__img { height: 145px; background: #1a1a1a; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.rr-ccard__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.rr-ccard__body { padding: 12px 14px 14px; }
.rr-ctag { font-family: var(--rr-font-b); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rr-orange); margin-bottom: 5px; }
.rr-ctitle { font-family: var(--rr-font-b); font-weight: 700; font-size: 13px; line-height: 18px; color: #fff; }

/* Biblioteca */
.rr-bib-list { display: flex; flex-direction: column; gap: 3px; }
.rr-bib-item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; background: var(--rr-card); border: 1px solid var(--rr-border); cursor: pointer; transition: border-color .2s; }
.rr-bib-item:hover { border-color: #3a3a3a; }
.rr-bib-ico { width: 32px; height: 32px; background: #2d2d2d; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rr-bib-ico svg { width: 14px; height: 14px; color: var(--rr-muted); }
.rr-bib-info { flex: 1; min-width: 0; }
.rr-bib-title { font-family: var(--rr-font-b); font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rr-bib-meta  { font-family: var(--rr-font-b); font-size: 10px; color: var(--rr-muted); margin-top: 1px; }
.rr-bib-dl { background: none; border: none; cursor: pointer; color: var(--rr-muted); padding: 3px; transition: color .15s; flex-shrink: 0; text-decoration: none; display: flex; }
.rr-bib-dl:hover { color: var(--rr-orange); }
.rr-bib-dl svg { width: 14px; height: 14px; display: block; }

/* Suporte */
.rr-suporte { margin-top: 12px; background: var(--rr-card); border: 1px solid var(--rr-border); border-left: 3px solid var(--rr-orange); padding: 18px 16px 18px 14px; }
.rr-suporte h3 { font-family: var(--rr-font-h); font-weight: 700; font-size: 13px; letter-spacing: -.2px; text-transform: uppercase; margin-bottom: 6px; }
.rr-suporte p  { font-family: var(--rr-font-b); font-size: 11px; color: var(--rr-muted); line-height: 16px; margin-bottom: 14px; }
.rr-btn-wa { display: inline-flex; align-items: center; gap: 7px; background: var(--rr-green); color: #fff; border: none; padding: 9px 14px; font-family: var(--rr-font-b); font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; transition: background .2s; text-decoration: none; }
.rr-btn-wa:hover { background: var(--rr-green-dk); color: #fff; }
.rr-btn-wa svg { width: 12px; height: 12px; }

/* Eco */
.rr-eco-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.rr-eco-btn { display: flex; align-items: center; gap: 8px; background: var(--rr-card); border: 1px solid var(--rr-border); padding: 11px 18px; color: var(--rr-dim); font-family: var(--rr-font-b); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap; text-decoration: none; }
.rr-eco-btn:hover { border-color: var(--rr-orange); color: #fff; }
.rr-eco-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Blocked ── */
.rr-blocked { text-align: center; padding: 60px 24px; max-width: 480px; margin: 0 auto; }
.rr-blocked__icon { color: var(--rr-orange); margin-bottom: 20px; }
.rr-blocked h2 { font-family: var(--rr-font-h); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.rr-blocked p  { color: var(--rr-dim); line-height: 1.7; }
.rr-blocked__plans { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.rr-blocked__plan { background: var(--rr-card); border: 1px solid var(--rr-border); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; text-align: left; }
.rr-blocked__plan strong { font-family: var(--rr-font-h); font-size: 14px; }
.rr-blocked__plan em { font-size: 11px; color: var(--rr-orange); font-style: normal; }
.rr-blocked__cta { display: inline-block; background: var(--rr-orange); color: #fff; padding: 12px 28px; font-family: var(--rr-font-b); font-weight: 700; font-size: 13px; text-decoration: none; transition: background .2s; }
.rr-blocked__cta:hover { background: var(--rr-orange-dk); color: #fff; }
.rr-blocked__sub { margin-top: 16px; font-size: 12px; }
.rr-blocked__sub a { color: var(--rr-orange); }

/* ── Pricing ── */
.rr-pricing { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; padding: 32px 0; }
.rr-pricing__card { background: var(--rr-card); border: 1px solid var(--rr-border); border-top: 3px solid var(--rr-orange); padding: 28px 24px; min-width: 260px; flex: 1; max-width: 320px; }
.rr-pricing__name { font-family: var(--rr-font-h); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.rr-pricing__desc { color: var(--rr-dim); font-size: 13px; margin-bottom: 20px; }
.rr-pricing__price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.rr-pricing__currency { font-size: 14px; font-weight: 700; color: var(--rr-dim); margin-bottom: 4px; }
.rr-pricing__amount { font-family: var(--rr-font-h); font-size: 36px; font-weight: 700; line-height: 1; }
.rr-pricing__cycle { font-size: 12px; color: var(--rr-dim); margin-bottom: 4px; }
.rr-pricing__trial { font-size: 11px; color: var(--rr-orange); font-weight: 700; margin-bottom: 20px; }
.rr-pricing__features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.rr-pricing__features li { font-size: 13px; color: var(--rr-dim); }
.rr-pricing__features li::before { content: '✓ '; color: var(--rr-green); font-weight: 700; }
.rr-pricing__cta { display: block; background: var(--rr-orange); color: #fff; padding: 12px; text-align: center; font-family: var(--rr-font-b); font-weight: 700; font-size: 13px; text-decoration: none; transition: background .2s; }
.rr-pricing__cta:hover { background: var(--rr-orange-dk); color: #fff; }

/* ── My Account ── */
.rr-account { max-width: 800px; margin: 0 auto; padding: 32px 24px; }
.rr-account h2 { font-family: var(--rr-font-h); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.rr-account__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rr-account__card { background: var(--rr-card); border: 1px solid var(--rr-border); padding: 20px; }
.rr-account__card h3 { font-family: var(--rr-font-h); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.rr-account__table { width: 100%; border-collapse: collapse; }
.rr-account__table th, .rr-account__table td { padding: 8px 4px; border-bottom: 1px solid var(--rr-border); font-size: 13px; text-align: left; }
.rr-account__table th { font-weight: 700; color: var(--rr-muted); width: 130px; }
.rr-btn-primary { display: inline-block; background: var(--rr-orange); color: #fff; padding: 10px 20px; font-weight: 700; font-size: 13px; text-decoration: none; }
.rr-btn-cancel  { color: #c0392b; font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rr-top-row { grid-template-columns: 1fr 220px; }
    .rr-mid-row { grid-template-columns: 1fr 220px; }
    .rr-search input { width: 180px; }
}
@media (max-width: 768px) {
    .rr-layout { position: fixed; }
    .rr-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 240px; transform: translateX(-100%); box-shadow: 4px 0 24px rgba(0,0,0,.5); }
    .rr-sidebar.open { transform: translateX(0); }
    .rr-hamburger { display: flex; }
    .rr-search { display: none; }
    .rr-search.open { display: block; position: fixed; top: 64px; left: 0; right: 0; padding: 12px 16px; background: var(--rr-topbar); border-bottom: 1px solid var(--rr-border); z-index: 150; margin-left: 0; }
    .rr-search.open input { width: 100%; }
    .rr-topicons__search { display: flex !important; }
    .rr-scroll { padding: 16px 16px 80px; }
    .rr-top-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
    .rr-hero { padding: 24px; min-height: auto; }
    .rr-hero h1 { font-size: 24px; line-height: 29px; letter-spacing: -1px; }
    .rr-hero__arrow { display: none; }
    .rr-mid-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    .rr-account__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .rr-cards-grid { grid-template-columns: 1fr; }
    .rr-hero h1 { font-size: 20px; }
    .rr-user__wrap { display: none; }
    .rr-eco-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .rr-eco-btn { justify-content: center; }
}

/* ── View loading state ── */
.rr-scroll--loading { opacity: .5; transition: opacity .15s; pointer-events: none; }

/* ── Checkout (página rr-assinar) ── */
.rr-checkout { max-width: 920px; margin: 40px auto; padding: 0 20px; color: var(--rr-text); font-family: var(--rr-font-b); }
.rr-checkout *, .rr-checkout *::before, .rr-checkout *::after { box-sizing: border-box; }
.rr-checkout__back { display: inline-block; color: var(--rr-muted); text-decoration: none; font-size: 13px; margin-bottom: 18px; }
.rr-checkout__back:hover { color: var(--rr-orange); }
.rr-checkout__grid { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
.rr-checkout__summary { background: var(--rr-card); border: 1px solid var(--rr-border); padding: 22px; }
.rr-checkout__summary h3 { font-family: var(--rr-font-h); font-size: 18px; color: var(--rr-text); margin-bottom: 8px; }
.rr-checkout__desc { font-size: 13px; color: var(--rr-muted); margin-bottom: 14px; line-height: 1.5; }
.rr-checkout__price { font-family: var(--rr-font-h); }
.rr-checkout__price span { font-size: 30px; font-weight: 700; color: var(--rr-orange); }
.rr-checkout__price small { color: var(--rr-muted); font-size: 13px; }
.rr-checkout__trial { margin-top: 10px; font-size: 12px; color: #6c63ff; font-weight: 600; }
.rr-checkout__features { list-style: none; padding: 0; margin: 16px 0 0; }
.rr-checkout__features li { font-size: 13px; color: var(--rr-dim); padding: 6px 0 6px 20px; position: relative; border-top: 1px solid var(--rr-border); }
.rr-checkout__features li::before { content: '✓'; position: absolute; left: 0; color: var(--rr-green); font-weight: 700; }
.rr-checkout__form-wrap { background: var(--rr-card); border: 1px solid var(--rr-border); padding: 26px; }
.rr-checkout__form-wrap h2 { font-family: var(--rr-font-h); font-size: 20px; margin-bottom: 20px; color: var(--rr-text); }
.rr-checkout__notice { background: #2a2200; border: 1px solid #c9a227; color: #f0d97a; padding: 14px; font-size: 13px; }
.rr-checkout__notice a { color: var(--rr-orange); font-weight: 700; }
.rr-field { display: block; margin-bottom: 16px; }
.rr-field > span { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--rr-muted); margin-bottom: 6px; }
.rr-field input[type=text], .rr-field input[type=tel] { width: 100%; background: #1a1a1a; border: 1px solid var(--rr-border); color: var(--rr-text); padding: 11px 12px; font-size: 14px; font-family: var(--rr-font-b); }
.rr-field input:focus { outline: none; border-color: var(--rr-orange); }
.rr-pay-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.rr-pay-method { flex: 1; min-width: 130px; display: flex; align-items: center; gap: 8px; background: #1a1a1a; border: 1px solid var(--rr-border); padding: 12px; cursor: pointer; font-size: 14px; }
.rr-pay-method:has(input:checked) { border-color: var(--rr-orange); background: #2a1c10; }
.rr-checkout__msg { font-size: 13px; min-height: 18px; margin: 4px 0 12px; }
.rr-checkout__msg--error { color: #ff6b6b; }
.rr-checkout__submit { width: 100%; background: var(--rr-orange); color: #fff; border: none; padding: 14px; font-family: var(--rr-font-b); font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; }
.rr-checkout__submit:hover:not(:disabled) { background: var(--rr-orange-dk); }
.rr-checkout__submit:disabled { opacity: .6; cursor: default; }
.rr-checkout__safe { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--rr-muted); margin-top: 14px; }
.rr-checkout__safe svg { flex-shrink: 0; opacity: .85; }
.rr-checkout__safe span { line-height: 1.2; }
@media (max-width: 720px) { .rr-checkout__grid { grid-template-columns: 1fr; } }

/* ── Admin bar do WP: não sobrepor o app em tela cheia ── */
body.admin-bar .rr-layout { top: 32px; height: calc(100vh - 32px); }
@media screen and (max-width: 782px) {
    body.admin-bar .rr-layout { top: 46px; height: calc(100vh - 46px); }
}
/* Canvas: sem margens herdadas do tema */
body.rr-canvas { margin: 0; padding: 0; }

/* ── Atalhos de administração na sidebar (só admins) ── */
.rr-admin-links { margin-top: auto; padding: 16px 18px; border-top: 1px solid var(--rr-border); display: flex; flex-direction: column; gap: 8px; }
.rr-admin-links__title { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rr-muted); margin-bottom: 2px; }
.rr-admin-links a { color: var(--rr-dim); font-size: 12px; text-decoration: none; transition: color .15s; }
.rr-admin-links a:hover { color: var(--rr-orange); }

/* ── Páginas públicas (assinar/checkout) no mesmo visual do sistema ── */
body.rr-canvas { background: var(--rr-bg); }
.rr-public { min-height: 100vh; display: flex; flex-direction: column; background: var(--rr-bg); color: var(--rr-text); font-family: var(--rr-font-b); }
.rr-public *, .rr-public *::before, .rr-public *::after { box-sizing: border-box; }
.rr-public__top { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; border-bottom: 1px solid var(--rr-border); background: var(--rr-sidebar); }
.rr-public__brand { font-family: var(--rr-font-h); font-weight: 700; font-size: 18px; letter-spacing: -.5px; text-transform: uppercase; color: var(--rr-text); text-decoration: none; }
.rr-public__brand span { display: block; font-size: 9px; font-weight: 500; letter-spacing: 3px; color: var(--rr-muted); }
.rr-public__login { color: var(--rr-text); text-decoration: none; font-size: 13px; font-weight: 700; border: 1px solid var(--rr-border); padding: 8px 18px; transition: border-color .2s, color .2s; }
.rr-public__login:hover { border-color: var(--rr-orange); color: var(--rr-orange); }
.rr-public__body { flex: 1; width: 100%; max-width: 1040px; margin: 0 auto; padding: 36px 20px 56px; }
.rr-public__intro { text-align: center; margin-bottom: 8px; }
.rr-public__intro h1 { font-family: var(--rr-font-h); font-size: 30px; font-weight: 700; letter-spacing: -1px; text-transform: uppercase; }
.rr-public__intro p { color: var(--rr-muted); font-size: 14px; margin-top: 6px; }
.rr-public__foot { text-align: center; color: var(--rr-muted); font-size: 12px; padding: 22px; border-top: 1px solid var(--rr-border); }

/* checkout: cadastro embutido */
.rr-checkout { margin: 0 auto; padding: 0; }
.rr-checkout__section { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--rr-border); }
.rr-checkout__section:last-of-type { border-bottom: none; margin-bottom: 6px; }
.rr-checkout__section > h3 { font-family: var(--rr-font-h); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--rr-muted); margin-bottom: 14px; }
.rr-checkout__alt { font-size: 12px; color: var(--rr-muted); margin-top: 4px; }
.rr-checkout__alt a { color: var(--rr-orange); font-weight: 700; text-decoration: none; }

/* ── Checkout transparente: cartão + PIX ── */
.rr-field-row { display: flex; gap: 12px; }
.rr-field-row .rr-field { flex: 1; }
.rr-checkout__form textarea { width: 100%; background: #1a1a1a; border: 1px solid var(--rr-border); color: var(--rr-text); padding: 10px 12px; font-family: var(--rr-font-b); font-size: 13px; resize: vertical; }
.rr-pix { text-align: center; }
.rr-pix h3 { font-family: var(--rr-font-h); font-size: 18px; margin-bottom: 6px; color: var(--rr-text); }
.rr-pix__value { font-size: 22px; font-weight: 700; color: var(--rr-orange); margin-bottom: 14px; }
.rr-pix__qr { background: #fff; display: inline-block; padding: 10px; margin-bottom: 14px; }
.rr-pix__qr img { display: block; width: 220px; height: 220px; }
.rr-pix textarea { text-align: left; }
.rr-pix__status { margin-top: 14px; font-size: 13px; color: var(--rr-dim); }

/* ── Blindagem dos botões/campos contra o tema e o Elementor (força nosso estilo) ── */
.rr-public a.rr-public__login,
.rr-pricing a.rr-pricing__cta,
.rr-checkout button.rr-checkout__submit,
.rr-layout a.rr-btn-wa,
.rr-blocked a.rr-blocked__cta {
    font-family: var(--rr-font-b) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    width: auto;
}
.rr-pricing a.rr-pricing__cta,
.rr-checkout button.rr-checkout__submit,
.rr-blocked a.rr-blocked__cta {
    display: block !important;
    background: var(--rr-orange) !important;
    color: #fff !important;
    border: 0 !important;
    padding: 13px 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}
.rr-pricing a.rr-pricing__cta:hover,
.rr-checkout button.rr-checkout__submit:hover,
.rr-blocked a.rr-blocked__cta:hover {
    background: var(--rr-orange-dk) !important;
    color: #fff !important;
}
.rr-public a.rr-public__login {
    background: transparent !important;
    color: var(--rr-text) !important;
    border: 1px solid var(--rr-border) !important;
    padding: 8px 18px !important;
}
.rr-public a.rr-public__login:hover { color: var(--rr-orange) !important; border-color: var(--rr-orange) !important; }
/* Campos não herdam estilo do Elementor */
.rr-checkout input[type=text], .rr-checkout input[type=email], .rr-checkout input[type=password],
.rr-checkout input[type=tel], .rr-checkout textarea {
    background: #1a1a1a !important;
    color: var(--rr-text) !important;
    border: 1px solid var(--rr-border) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
}

/* ── Retomar pagamento pendente ── */
.rr-resume__info { background: #1a1a1a; border: 1px solid var(--rr-border); padding: 16px; margin-bottom: 16px; }
.rr-resume__row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 14px; border-bottom: 1px solid var(--rr-border); }
.rr-resume__row:last-child { border-bottom: none; }
.rr-resume__row > span { color: var(--rr-muted); }
.rr-resume__hint { font-size: 13px; color: var(--rr-dim); line-height: 1.5; margin-bottom: 18px; }
.rr-resume__cancel { width: 100%; margin-top: 10px; background: transparent; color: var(--rr-muted); border: 1px solid var(--rr-border); padding: 11px; font-family: var(--rr-font-b); font-size: 13px; font-weight: 700; cursor: pointer; transition: color .2s, border-color .2s; }
.rr-resume__cancel:hover { color: #c0392b; border-color: #c0392b; }

/* ── Reforço anti-Elementor: botão "Cancelar" e neutralização geral ── */
.rr-resume button.rr-resume__cancel,
.rr-checkout button.rr-resume__cancel {
    background: transparent !important;
    color: var(--rr-muted) !important;
    border: 1px solid var(--rr-border) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    font-family: var(--rr-font-b) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    width: 100% !important;
    padding: 11px !important;
    margin-top: 10px !important;
    min-height: 0 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
}
.rr-resume button.rr-resume__cancel:hover {
    color: #c0392b !important;
    border-color: #c0392b !important;
    background: transparent !important;
}
/* Qualquer botão/campo dentro dos nossos containers não herda forma do tema */
.rr-public button, .rr-public input, .rr-public textarea, .rr-public select,
.rr-layout button, .rr-layout input, .rr-layout textarea, .rr-layout select {
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    min-height: 0 !important;
}

/* ── Aviso de pendência no checkout ── */
.rr-checkout__pending { background: #2a2200; border: 1px solid #c9a227; color: #f0d97a; padding: 12px 14px; font-size: 13px; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; justify-content: space-between; }
.rr-checkout__pending a { color: var(--rr-orange) !important; font-weight: 700; text-decoration: none !important; white-space: nowrap; }
.rr-checkout__pending a:hover { text-decoration: underline !important; }

/* ── Logout / rodapé da sidebar ── */
.rr-sidebar__bottom { margin-top: auto; }
.rr-admin-links { margin-top: 0 !important; }
.rr-logout {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    color: var(--rr-muted) !important;
    text-decoration: none !important;
    border-top: 1px solid var(--rr-border);
    font-family: var(--rr-font-b) !important;
    font-size: 13px;
    font-weight: 600;
    transition: color .15s, background .15s;
}
.rr-logout:hover { color: #fff !important; background: rgba(192,57,43,.18); }
.rr-logout svg { flex-shrink: 0; }

/* ── Blindagem da topbar (nome rosa do Elementor) e da busca ── */
.rr-topbar a.rr-user, .rr-topbar .rr-user, .rr-topbar .rr-user__name { color: #fff !important; text-decoration: none !important; }
.rr-topbar .rr-user__status { color: var(--rr-muted) !important; }
.rr-topbar .rr-search input {
    padding: 8px 14px 8px 34px !important;
    background: #1e1e1e !important;
    border: 1px solid var(--rr-border) !important;
    color: var(--rr-text) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    min-height: 0 !important;
}
.rr-topbar .rr-search input::placeholder { color: var(--rr-muted) !important; }
.rr-topbar .rr-search svg { z-index: 2; pointer-events: none; }

/* ── Ícones do topo: hover sem o rosa do Elementor ── */
.rr-topbar .rr-topicons button, .rr-topbar .rr-topicons a, .rr-topbar .rr-notif__btn {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--rr-muted) !important;
    padding: 3px !important;
    min-height: 0 !important;
    cursor: pointer;
}
.rr-topbar .rr-topicons button:hover, .rr-topbar .rr-topicons a:hover, .rr-topbar .rr-notif__btn:hover {
    background: transparent !important;
    color: var(--rr-orange) !important;
}

/* ── Sininho de notificações ── */
.rr-notif { position: relative; display: flex; }
.rr-notif__btn { position: relative; display: flex; align-items: center; }
.rr-notif__badge { position: absolute; top: -6px; right: -7px; background: var(--rr-orange); color: #fff !important; font-size: 9px; font-weight: 700; min-width: 15px; height: 15px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.rr-notif__panel { position: absolute; top: 36px; right: 0; width: 300px; max-height: 380px; overflow-y: auto; background: var(--rr-card); border: 1px solid var(--rr-border); box-shadow: 0 12px 32px rgba(0,0,0,.5); z-index: 200; }
.rr-notif__head { padding: 12px 14px; font-family: var(--rr-font-h); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--rr-border); color: #fff; }
.rr-notif__empty { padding: 22px 14px; color: var(--rr-muted); font-size: 13px; text-align: center; }
.rr-notif__item { padding: 12px 14px; border-bottom: 1px solid var(--rr-border); }
.rr-notif__item:last-child { border-bottom: none; }
.rr-notif__title { font-weight: 700; font-size: 13px; color: #fff; }
.rr-notif__msg { font-size: 12px; color: var(--rr-dim); margin-top: 3px; line-height: 1.45; }
.rr-notif__date { font-size: 10px; color: var(--rr-muted); margin-top: 6px; }
@media (max-width: 768px) { .rr-notif__panel { position: fixed; top: 64px; right: 8px; left: 8px; width: auto; } }

/* ── Links internos (Minha Conta / Configurações) forçados sobre o Elementor ── */
.rr-account a:not(.rr-btn-primary):not(.rr-btn-cancel):not(.rr-btn-wa-cancel),
.rr-config-link { color: var(--rr-orange) !important; text-decoration: none !important; }
.rr-account a:not(.rr-btn-primary):not(.rr-btn-cancel):not(.rr-btn-wa-cancel):hover,
.rr-config-link:hover { color: var(--rr-orange-dk) !important; text-decoration: underline !important; }
.rr-config-link--danger { color: #c0392b !important; }
.rr-config-link--danger:hover { color: #e74c3c !important; }
.rr-btn-cancel { color: #c0392b !important; text-decoration: none !important; }
.rr-btn-cancel:hover { color: #e74c3c !important; text-decoration: underline !important; }

/* ── Botão "Voltar" nas views internas ── */
.rr-back { display: inline-flex; align-items: center; gap: 6px; color: var(--rr-muted) !important; text-decoration: none !important; font-size: 13px; font-weight: 600; margin-bottom: 18px; background: none !important; border: 0 !important; }
.rr-back:hover { color: var(--rr-orange) !important; }

/* ── Página de login (rr-login) ── */
.rr-login { max-width: 400px; margin: 40px auto; background: var(--rr-card); border: 1px solid var(--rr-border); padding: 32px 28px; }
.rr-login__title { font-family: var(--rr-font-h); font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: -.5px; color: #fff; }
.rr-login__sub { color: var(--rr-muted); font-size: 13px; margin: 4px 0 22px; }
.rr-login .rr-field { margin-bottom: 14px; }
.rr-login .rr-field input {
    width: 100% !important; background: #1a1a1a !important; border: 1px solid var(--rr-border) !important;
    color: var(--rr-text) !important; padding: 11px 12px !important; font-size: 14px !important;
    border-radius: 0 !important; box-shadow: none !important;
}
.rr-login .rr-field input:focus { border-color: var(--rr-orange) !important; outline: none; }
.rr-login__remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--rr-muted) !important; margin-bottom: 18px; }
.rr-login__links { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.rr-login__links a { color: var(--rr-orange) !important; font-size: 13px; text-decoration: none !important; }
.rr-login__links a:hover { text-decoration: underline !important; }

/* ── Botão primário (.rr-checkout__submit) blindado em QUALQUER contexto ── */
button.rr-checkout__submit, .rr-login button.rr-checkout__submit, .rr-public button.rr-checkout__submit {
    display: block !important;
    width: 100% !important;
    background: var(--rr-orange) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 13px 18px !important;
    font-family: var(--rr-font-b) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    min-height: 0 !important;
    cursor: pointer !important;
}
button.rr-checkout__submit:hover { background: var(--rr-orange-dk) !important; color: #fff !important; }

/* ── Marca/logo: cores fixas, sem hover estranho do Elementor ── */
.rr-brand__name { color: var(--rr-orange) !important; }
.rr-brand__sub  { color: var(--rr-muted) !important; }
a.rr-public__brand, a.rr-public__brand:hover, a.rr-public__brand:focus { color: var(--rr-text) !important; text-decoration: none !important; }
a.rr-public__brand span, a.rr-public__brand:hover span { color: var(--rr-muted) !important; }
/* Nav: hover branco, ativo no accent */
.rr-nav li a:hover { color: #fff !important; }
.rr-nav--active a { color: var(--rr-orange) !important; }

/* ── Minha Conta: tabela e badge mais bonitos ── */
.rr-account__card { padding: 24px !important; }
.rr-account__card h3 { font-family: var(--rr-font-h); text-transform: uppercase; letter-spacing: .5px; color: var(--rr-text) !important; padding-bottom: 12px; border-bottom: 1px solid var(--rr-border); margin-bottom: 16px; }
.rr-account__table { border-collapse: collapse; width: 100%; }
.rr-account__table th, .rr-account__table td { border: 0 !important; border-bottom: 1px solid var(--rr-border) !important; padding: 11px 4px !important; vertical-align: middle; font-size: 13px; text-align: left; }
.rr-account__table tr:last-child th, .rr-account__table tr:last-child td { border-bottom: 0 !important; }
.rr-account__table th { color: var(--rr-muted) !important; font-weight: 600 !important; width: 140px; text-transform: none; }
.rr-account__table td { color: var(--rr-text) !important; font-weight: 600 !important; }
.rr-badge { display: inline-block !important; padding: 3px 11px !important; border-radius: 100px !important; font-size: 11px !important; font-weight: 700 !important; color: #fff !important; text-transform: uppercase; letter-spacing: .4px; line-height: 1.6; }

/* ── Minha Conta: card único (sem Dados Pessoais) ── */
.rr-account { max-width: 560px; }
.rr-account__grid { grid-template-columns: 1fr; }

/* ── Minha Conta: alinhar à esquerda, igual às outras views ── */
.rr-account { max-width: none !important; margin: 0 !important; padding: 0 !important; }
.rr-account h2 { font-family: var(--rr-font-h); font-size: 26px; font-weight: 700; letter-spacing: -1px; text-transform: uppercase; }
.rr-account__grid { grid-template-columns: 1fr !important; max-width: 560px; }

/* ── Notificações: limpar todas / dispensar / link ── */
.rr-notif__head { display: flex; align-items: center; justify-content: space-between; }
.rr-notif__clear { background: none !important; border: 0 !important; color: var(--rr-orange) !important; font-size: 11px; font-weight: 700; cursor: pointer; text-transform: none; letter-spacing: 0; padding: 0; }
.rr-notif__clear:hover { text-decoration: underline; }
.rr-notif__item { position: relative; display: block; padding-right: 30px !important; text-decoration: none !important; color: inherit !important; }
a.rr-notif__item { cursor: pointer; }
a.rr-notif__item:hover { background: rgba(255,255,255,.03); }
.rr-notif__dismiss { position: absolute; top: 9px; right: 9px; background: none !important; border: 0 !important; color: var(--rr-muted) !important; font-size: 17px; line-height: 1; cursor: pointer; padding: 2px 5px; border-radius: 4px; }
.rr-notif__dismiss:hover { color: #fff !important; background: rgba(255,255,255,.06) !important; }

/* ── Notificações: blindagem do layout contra o Elementor ── */
.rr-notif__head > span { font-family: var(--rr-font-h) !important; font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .5px !important; color: #fff !important; }
.rr-notif__clear { font-size: 11px !important; font-weight: 700 !important; line-height: 1.2 !important; text-transform: none !important; letter-spacing: 0 !important; }
.rr-notif__item, a.rr-notif__item { display: block !important; }
.rr-notif__title { display: block !important; font-weight: 700 !important; font-size: 13px !important; color: #fff !important; margin: 0 !important; line-height: 1.3 !important; }
.rr-notif__msg   { display: block !important; font-size: 12px !important; color: var(--rr-dim) !important; margin: 3px 0 0 !important; line-height: 1.45 !important; }
.rr-notif__date  { display: block !important; font-size: 10px !important; color: var(--rr-muted) !important; margin: 6px 0 0 !important; }
/* Barra de rolagem do painel (não branca) */
.rr-notif__panel::-webkit-scrollbar { width: 6px; }
.rr-notif__panel::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.rr-notif__panel::-webkit-scrollbar-track { background: transparent; }
.rr-notif__panel { scrollbar-width: thin; scrollbar-color: #333 transparent; }

/* ── Notificações: mais respiro ── */
.rr-notif__panel { width: 330px; }
.rr-notif__head { padding: 15px 18px !important; }
.rr-notif__item { padding: 16px 18px !important; padding-right: 36px !important; }
.rr-notif__title { font-size: 14px !important; }
.rr-notif__msg   { margin-top: 5px !important; }
.rr-notif__date  { margin-top: 10px !important; }
.rr-notif__dismiss { top: 13px !important; right: 12px !important; }
.rr-notif__empty { padding: 28px 18px !important; }

/* ── Perfil (Configurações: nome + foto) ── */
.rr-profile { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.rr-profile__avatar img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rr-orange); display: block; }
.rr-profile__fields { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 16px; }
.rr-config-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--rr-muted) !important; margin-bottom: 6px; }
.rr-config-field input[type=text] { width: 100%; max-width: 360px; background: #1a1a1a !important; border: 1px solid var(--rr-border) !important; color: var(--rr-text) !important; padding: 10px 12px !important; border-radius: 0 !important; box-shadow: none !important; }
.rr-config-field input[type=text]:focus { border-color: var(--rr-orange) !important; outline: none; }
.rr-config-field input[type=file] { color: var(--rr-dim); font-size: 13px; }
.rr-config-field small { display: block; color: var(--rr-muted); font-size: 11px; margin-top: 5px; }

/* ── Avatar clicável (upload instantâneo) ── */
.rr-profile__avatar { position: relative; display: inline-block; cursor: pointer; line-height: 0; }
.rr-profile__overlay { position: absolute; inset: 0; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; opacity: 0; transition: opacity .15s; text-align: center; padding: 6px; line-height: 1.3; }
.rr-profile__avatar:hover .rr-profile__overlay { opacity: 1; }
.rr-profile__avatar.is-loading .rr-profile__overlay { opacity: 1; }
.rr-profile__avatar.is-loading { pointer-events: none; }
.rr-profile__hint { font-size: 12px; color: var(--rr-muted) !important; margin: 0; }

/* ── Logo ── */
.rr-brand { line-height: 0; }
.rr-brand__logo { display: inline-block; }
.rr-brand__logo img { display: block; height: 44px; width: auto; max-width: 190px; }
.rr-public__brand img { display: block; height: 34px; width: auto; max-width: 180px; }

/* ── Logo maior ── */
.rr-brand { padding: 0 20px 30px !important; }
.rr-brand__logo img { height: 64px !important; width: auto !important; max-width: 100% !important; }
.rr-public__brand img { height: 46px !important; width: auto !important; max-width: 220px !important; }

/* ── Logo ainda maior ── */
.rr-brand { padding: 4px 16px 26px !important; }
.rr-brand__logo { display: block !important; }
.rr-brand__logo img { height: auto !important; width: 100% !important; max-width: 100% !important; }

/* ── Logo: tamanho equilibrado ── */
.rr-brand { padding: 6px 20px 28px !important; }
.rr-brand__logo img { height: 88px !important; width: auto !important; max-width: 100% !important; }

/* ── Bloco de aviso de cobrança pendente (dentro do checkout) ── */
.rr-checkout__pending-block { background: #2a2200; border: 1px solid #c9a227; padding: 16px 18px; margin-bottom: 20px; }
.rr-checkout__pending-block p { color: #f0d97a; font-size: 13px; margin: 0 0 10px; }
.rr-checkout__pending-rules { margin: 0; padding-left: 18px; }
.rr-checkout__pending-rules li { color: #e0cf8e; font-size: 13px; line-height: 1.6; margin-bottom: 4px; }

/* ── Ecossistema: item sem link configurado (desabilitado) ── */
.rr-eco-btn--soon { opacity: .5; cursor: default !important; }
.rr-eco-btn--soon:hover { border-color: var(--rr-border) !important; color: var(--rr-dim) !important; }
.rr-eco-btn--soon small { font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: 4px; opacity: .8; }

/* ── Minha Conta: ações de cancelamento (self-service + WhatsApp comercial) ── */
.rr-account__cancel-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.rr-btn-wa-cancel { display: inline-flex !important; align-items: center; gap: 7px; background: #1e6e3e !important; color: #fff !important; padding: 9px 16px; font-size: 12px; font-weight: 700; text-decoration: none !important; border-radius: 2px; }
.rr-btn-wa-cancel:hover { background: #17532f !important; }

/* ── Treinos: CTA TrainingPeaks + painel de vínculo ── */
.rr-tp-cta-row { margin-bottom: 20px; }
a.rr-tp-cta-btn { display: inline-flex !important; align-items: center; gap: 8px; background: var(--rr-orange) !important; color: #fff !important; padding: 12px 20px !important; font-family: var(--rr-font-b) !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; text-transform: none !important; letter-spacing: 0 !important; border-radius: 0 !important; }
a.rr-tp-cta-btn:hover { background: var(--rr-orange-dk) !important; }

.rr-tp-panel { background: var(--rr-card); border: 1px solid var(--rr-border); padding: 26px 24px; margin-bottom: 28px; }
.rr-tp-panel h2 { font-family: var(--rr-font-h); font-size: 18px; font-weight: 700; color: var(--rr-orange); text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 20px; }
.rr-tp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rr-tp-step { background: #1a1a1a; border: 1px solid var(--rr-border); padding: 18px; position: relative; }
.rr-tp-step__n { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--rr-border); color: var(--rr-dim); font-size: 11px; font-weight: 700; border-radius: 50%; margin-bottom: 10px; }
.rr-tp-step h3 { font-family: var(--rr-font-h); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 8px; }
.rr-tp-step p { font-size: 12px; color: var(--rr-dim); line-height: 1.55; }
.rr-tp-step__apps { display: flex; gap: 8px; }
.rr-tp-step__apps a { flex: 1; text-align: center; background: #232323; border: 1px solid var(--rr-border); color: var(--rr-dim) !important; padding: 8px; font-size: 11px; font-weight: 700; text-decoration: none !important; text-transform: uppercase; }
.rr-tp-step__apps a:hover { border-color: var(--rr-orange); color: #fff !important; }
.rr-tp-step--highlight { border-color: var(--rr-orange); }
.rr-tp-step__qr { display: block; margin: 12px auto 14px; background: #fff; padding: 6px; width: 100px; height: 100px; }
.rr-tp-step__cta { display: block !important; text-align: center; background: var(--rr-orange) !important; color: #fff !important; padding: 10px !important; font-size: 12px !important; font-weight: 700 !important; text-decoration: none !important; text-transform: none !important; letter-spacing: 0 !important; border-radius: 0 !important; }
.rr-tp-step__cta:hover { background: var(--rr-orange-dk) !important; }
@media (max-width: 700px) { .rr-tp-steps { grid-template-columns: 1fr; } }

/* ── Reforço: botão WhatsApp (Minha Conta) sempre com texto branco ── */
.rr-account a.rr-btn-wa-cancel,
.rr-account a.rr-btn-wa-cancel:hover { color: #fff !important; }

/* ── Seletor de modalidade (tela de assinatura) ── */
.rr-modality-picker { max-width: 420px; margin: 0 auto 28px; text-align: center; }
.rr-modality-picker label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--rr-muted); margin-bottom: 8px; }
.rr-modality-picker select {
    width: 100%; background: var(--rr-card) !important; border: 1px solid var(--rr-border) !important;
    color: var(--rr-text) !important; padding: 12px 16px !important; font-family: var(--rr-font-b) !important;
    font-size: 14px !important; font-weight: 700 !important; border-radius: 0 !important; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.rr-modality-picker select:focus { border-color: var(--rr-orange) !important; outline: none; }
.rr-pricing__modality { color: var(--rr-orange); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 10px; }
.rr-pricing__empty { text-align: center; color: var(--rr-muted); padding: 40px 0; }

/* ── Campo desabilitado (CPF em Configurações) ── */
.rr-field input:disabled { opacity: .6; cursor: not-allowed; background: #141414 !important; }

/* CTA "Abrir meus treinos no TrainingPeaks" — home, acima de Conteúdos de Técnica */
.rr-tp-home-cta { margin-bottom: 24px; }
.rr-tp-home-cta__btn { display: inline-flex !important; align-items: center; gap: 8px; background: #F5690F !important; color: #fff !important; padding: 12px 20px !important; font-family: 'Manrope', sans-serif; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; text-transform: none !important; letter-spacing: 0 !important; border: 0 !important; border-radius: 0 !important; transition: background .2s; }
.rr-tp-home-cta__btn:hover, .rr-tp-home-cta__btn:focus { background: #d4560a !important; color: #fff !important; text-decoration: none !important; }
.rr-tp-home-cta__btn:visited { color: #fff !important; }
