/**
 * RoxyCloud — client area dashboard, KPIs, dock (Phase 1 + 3)
 */
@import url('tokens.css');

body.rc-skin-premium #main-body > .container {
    max-width: var(--rc-content-max);
}

body.rc-app-shell.rc-skin-premium #main-body > .container {
    max-width: none;
    width: 100%;
}

body.rc-skin-premium .master-breadcrumb {
    display: none;
}

/* Page hero (list/detail pages) */
.rc-page-hero {
    margin-bottom: 1.5rem;
}

.rc-page-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-accent-strong);
}

.rc-page-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rc-text);
}

.rc-page-hero__lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--rc-text-muted);
    max-width: 42rem;
}

.rc-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rc-page-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

body.rc-saas-app .header-lined {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rc-border-subtle);
}

body.rc-saas-app .header-lined h1,
body.rc-saas-app .header-lined h2,
body.rc-saas-app .page-header h1 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rc-text);
}

body.rc-saas-app .header-lined p {
    color: var(--rc-text-muted);
    margin-bottom: 0;
}

/* Stat cards */
.rc-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 0;
}

.rc-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 8.5rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    box-shadow: var(--rc-shadow);
}

.rc-stat-card--link {
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rc-stat-card--link:hover {
    border-color: var(--rc-border-hover);
    box-shadow: var(--rc-shadow-hover);
}

.rc-stat-card__link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: inherit !important;
    text-decoration: none !important;
}

.rc-stat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.25rem;
    border-radius: 0.5rem;
    background: var(--rc-accent-soft);
    color: var(--rc-accent-strong);
    font-size: 0.875rem;
}

.rc-stat-card__value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--rc-text);
}

.rc-stat-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rc-text-muted);
}

/* Quick dock */
.rc-dock {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

.rc-dock__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    color: var(--rc-text-secondary) !important;
    text-decoration: none !important;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.rc-dock__item:hover {
    border-color: var(--rc-border-hover);
    background: var(--rc-surface-hover);
    color: var(--rc-text) !important;
}

.rc-dock__item--active {
    border-color: var(--rc-accent-muted);
    background: var(--rc-accent-soft);
    color: var(--rc-text) !important;
}

.rc-dock__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: var(--rc-surface-raised);
    color: var(--rc-accent-strong);
    font-size: 1rem;
}

.rc-dock__item--active .rc-dock__icon {
    background: var(--rc-accent-soft);
}

/* Dashboard sections */
.rc-dashboard-section {
    margin-bottom: 2rem;
}

.rc-dashboard-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rc-dashboard-section__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--rc-text);
}

.rc-dashboard-section__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rc-text-muted) !important;
}

.rc-dashboard-section__link:hover {
    color: var(--rc-accent) !important;
}

/* Empty state */
.rc-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: var(--rc-radius);
    border: 1px dashed var(--rc-border);
    background: var(--rc-surface);
}

.rc-empty-state__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--rc-surface-raised);
    color: var(--rc-text-muted);
    font-size: 1.25rem;
}

.rc-empty-state__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rc-text);
}

.rc-empty-state__message {
    margin: 0 0 1.25rem;
    max-width: 24rem;
    font-size: 0.875rem;
    color: var(--rc-text-muted);
}

.rc-empty-state__cta {
    min-width: 140px;
}

/* SaaS list pages */
body.rc-saas-app .list-group-item-action {
    background: var(--rc-surface);
    border-color: var(--rc-border-subtle);
    color: var(--rc-text-secondary);
}

body.rc-saas-app .list-group-item-action:hover {
    background: var(--rc-surface-hover);
    color: var(--rc-text);
}

body.rc-saas-app .badge {
    font-weight: 500;
    font-size: 0.6875rem;
}

body.rc-saas-app .badge-success {
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
    border: 1px solid var(--rc-accent-muted);
}

body.rc-saas-app .badge-warning {
    background: rgba(234, 179, 8, 0.15);
    color: var(--rc-warning);
}

body.rc-saas-app .badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--rc-danger);
}

body.rc-page-account .card .card-title,
body.rc-page-account .card > .card-body > h3 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-account .card {
    margin-bottom: 1.25rem;
}

body.rc-page-account .card .card-body {
    padding: 1.5rem;
}

/* Dashboard hero */
.rc-dashboard-hero {
    margin-bottom: 0;
}

.rc-dashboard-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-accent-strong);
}

.rc-dashboard-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rc-text);
}

.rc-dashboard-hero__lead {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--rc-text-muted);
}

.rc-panel {
    border-color: var(--rc-border);
    background: var(--rc-surface);
    border-radius: var(--rc-radius);
    overflow: hidden;
}

/* Ticket department cards */
.rc-dept-grid {
    display: grid;
    gap: 0.75rem;
}

body.rc-page-tickets .rc-tickets-page {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.rc-dept-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    color: inherit !important;
    text-decoration: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rc-dept-card:hover {
    border-color: var(--rc-border-hover);
    box-shadow: var(--rc-shadow-hover);
}

.rc-dept-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--rc-accent-soft);
    color: var(--rc-accent-strong);
    flex-shrink: 0;
}

.rc-dept-card__body {
    flex: 1;
    min-width: 0;
}

.rc-dept-card__title {
    display: block;
    font-weight: 600;
    color: var(--rc-text);
}

.rc-dept-card__desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--rc-text-muted);
    margin-top: 0.25rem;
}

.rc-dept-card__chev {
    color: var(--rc-text-muted);
    font-size: 0.75rem;
}

/* Dashboard WHMCS panels — override stock white theme.css */
body.rc-theme .rc-dashboard-panels.client-home-cards {
    margin-top: 0;
}

/* Painel stock "Produtos/Serviços" (substituído por "Seus serviços contratados") */
body.rc-theme .rc-dashboard-panels article[menuItemName="Active Products/Services"],
body.rc-theme .rc-dashboard-panels article[menuItemName="activeProductsServices"],
body.rc-theme .rc-dashboard-panels article#activeProductsServices {
    display: none !important;
}

/* Alinha painéis aos KPIs: mesmo gap (1.25rem), sem inset das cols (vence app-shell #main-body .row) */
body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row,
body.rc-theme .rc-dashboard-panels.client-home-cards > .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row > [class*="col-"],
body.rc-theme .rc-dashboard-panels.client-home-cards > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row > .col-12,
body.rc-theme .rc-dashboard-panels.client-home-cards > .row > .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row > .col-12:empty,
body.rc-theme .rc-dashboard-panels.client-home-cards > .row > .col-12:empty {
    display: none;
}

body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row > .col-md-6,
body.rc-theme .rc-dashboard-panels.client-home-cards > .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    body.rc-app-shell #main-body .rc-dashboard-panels.client-home-cards > .row > .col-md-6,
    body.rc-theme .rc-dashboard-panels.client-home-cards > .row > .col-md-6 {
        flex: 1 1 calc((100% - 1.25rem) / 2);
        max-width: calc((100% - 1.25rem) / 2);
    }
}

body.rc-theme .rc-dashboard-panels .rc-panel,
body.rc-theme .client-home-cards .card.rc-panel {
    margin-bottom: 1.25rem !important;
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    box-shadow: var(--rc-shadow);
    border-radius: var(--rc-radius);
    height: auto;
    min-height: 16rem;
}

body.rc-theme .rc-dashboard-panels .row > .col-md-6 > .rc-panel:last-child,
body.rc-theme .rc-dashboard-panels .row > .col-md-6 > .card.rc-panel:last-child {
    margin-bottom: 0 !important;
}

body.rc-theme .client-home-cards .card-header,
body.rc-theme .rc-panel .card-header.rc-panel__head {
    background: var(--rc-surface-raised) !important;
    border-bottom: 1px solid var(--rc-border) !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
}

body.rc-theme .client-home-cards .card-header .btn,
body.rc-theme .rc-panel .card-header .btn {
    color: var(--rc-text-secondary) !important;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rc-border-subtle);
    border-radius: var(--rc-radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

body.rc-theme .client-home-cards .card-header .btn:hover,
body.rc-theme .rc-panel .card-header .btn:hover {
    color: var(--rc-text) !important;
    background: var(--rc-surface-hover);
    border-color: var(--rc-border);
}

body.rc-theme .client-home-cards .card-title,
body.rc-theme .rc-panel .card-title {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--rc-text) !important;
}

body.rc-theme .client-home-cards .card-title i,
body.rc-theme .rc-panel .card-title i {
    color: var(--rc-accent-strong);
}

body.rc-theme .client-home-cards .card-body,
body.rc-theme .client-home-cards .mc-promo-manage .content,
body.rc-theme .client-home-cards .mc-promo-login .content,
body.rc-theme .rc-panel .card-body.rc-panel__body {
    padding: 0 !important;
    max-height: none;
    overflow: visible;
    background: transparent;
}

body.rc-theme .client-home-cards .card-body p,
body.rc-theme .client-home-cards .mc-promo-manage .content p,
body.rc-theme .client-home-cards .mc-promo-login .content p {
    padding: 1rem 1.25rem;
    margin: 0;
    color: var(--rc-text-secondary);
    font-size: 0.875rem;
}

body.rc-theme .client-home-cards .card-footer,
body.rc-theme .rc-panel .card-footer.rc-panel__foot {
    background: var(--rc-surface-raised) !important;
    border-top: 1px solid var(--rc-border) !important;
    padding: 0.875rem 1.25rem;
}

body.rc-theme .client-home-cards .list-group {
    max-height: none;
    overflow: visible;
    border-radius: 0;
    border-top: 1px solid var(--rc-border-subtle) !important;
    border-bottom: 0 !important;
}

body.rc-theme .client-home-cards .list-group .list-group-item,
body.rc-theme .rc-panel .list-group .list-group-item {
    padding: 0.875rem 1.25rem;
    border: 0;
    border-bottom: 1px solid var(--rc-border-subtle);
    background: transparent;
    color: var(--rc-text-secondary);
    font-size: 0.875rem;
    transition: background 0.15s;
}

body.rc-theme .client-home-cards .list-group .list-group-item:nth-child(even),
body.rc-theme .rc-panel .list-group .list-group-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

body.rc-theme .client-home-cards .list-group .list-group-item:last-child {
    border-bottom: 0;
}

body.rc-theme .client-home-cards .list-group .list-group-item-action:hover,
body.rc-theme .rc-panel .list-group .list-group-item-action:hover {
    background: var(--rc-surface-hover);
    color: var(--rc-text);
}

body.rc-theme .client-home-cards .list-group .list-group-item.active {
    background: var(--rc-accent-soft);
    border-left: 3px solid var(--rc-accent-strong);
    color: var(--rc-text);
}

body.rc-theme .client-home-cards small {
    color: var(--rc-text-muted);
}

body.rc-theme .client-home-cards .badge-secondary {
    background: var(--rc-surface-raised);
    color: var(--rc-text-muted);
    border: 1px solid var(--rc-border);
    font-weight: 500;
}

body.rc-theme .client-home-cards .list-group-item .label {
    display: inline-block;
    float: right;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
    border: 1px solid transparent;
    color: #fff !important;
    background: rgba(96, 165, 250, 0.22);
    border-color: rgba(96, 165, 250, 0.4);
}

body.rc-theme .client-home-cards .list-group-item .label.status-answered,
body.rc-theme .client-home-cards .list-group-item .label[class*="answer"] {
    background: rgba(96, 165, 250, 0.22) !important;
    color: #93c5fd !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
}

body.rc-theme .client-home-cards .list-group-item .label.status-open,
body.rc-theme .client-home-cards .list-group-item .label[class*="open"] {
    background: rgba(74, 222, 128, 0.16) !important;
    color: #86efac !important;
    border-color: rgba(74, 222, 128, 0.38) !important;
}

body.rc-theme .client-home-cards .list-group-item .label.status-closed,
body.rc-theme .client-home-cards .list-group-item .label[class*="closed"] {
    background: rgba(113, 113, 122, 0.22) !important;
    color: #d4d4d8 !important;
    border-color: rgba(161, 161, 170, 0.35) !important;
}

/* Data tables (services, invoices, tickets) */
body.rc-saas-app .table-container {
    margin-top: 0.5rem;
}

body.rc-saas-app table.table-list thead th {
    background: var(--rc-surface-raised) !important;
    color: var(--rc-text-muted) !important;
    border-color: var(--rc-border) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.rc-saas-app table.table-list tbody td {
    background: var(--rc-surface) !important;
    color: var(--rc-text) !important;
    border-color: var(--rc-border-subtle) !important;
}

body.rc-saas-app .table-list > tbody > tr:nth-child(even) > td {
    background: rgba(255, 255, 255, 0.025) !important;
}

body.rc-saas-app .table-list > tbody > tr:hover > td {
    background: var(--rc-surface-hover) !important;
    cursor: pointer;
}

body.rc-saas-app .table-list > tbody > tr > td a.border-left {
    border-left-color: var(--rc-border) !important;
    color: var(--rc-text);
}

body.rc-saas-app .dataTables_wrapper table.table-list {
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    overflow: hidden;
    background: var(--rc-surface);
}

body.rc-saas-app table.dataTable tbody tr {
    background: transparent !important;
}

body.rc-saas-app table.dataTable tbody td,
body.rc-saas-app table.dataTable tbody th {
    background: var(--rc-surface) !important;
    border-color: var(--rc-border-subtle) !important;
}

body.rc-saas-app table.dataTable.stripe tbody tr.odd > td,
body.rc-saas-app table.dataTable.display tbody tr.odd > td {
    background: rgba(255, 255, 255, 0.02) !important;
}

body.rc-saas-app table.dataTable.hover tbody tr:hover > td {
    background: var(--rc-surface-hover) !important;
}

body.rc-saas-app .dataTables_wrapper .dataTables_length,
body.rc-saas-app .dataTables_wrapper .dataTables_filter,
body.rc-saas-app .dataTables_wrapper .dataTables_info,
body.rc-saas-app .dataTables_wrapper .dataTables_paginate {
    color: var(--rc-text-muted);
    font-size: 0.8125rem;
    margin-top: 0.75rem;
}

body.rc-saas-app #tableLoading {
    padding: 2rem;
    color: var(--rc-text-muted);
}

body.rc-saas-app #tableLoading .fa-spin {
    color: var(--rc-accent-strong);
}

/* Status badges */
body.rc-theme .label.status {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    white-space: nowrap;
    border: 1px solid transparent;
    color: #fff;
}

body.rc-theme .label.status.status-active,
body.rc-theme .label.status.status-completed,
body.rc-theme .label.status.status-paid,
body.rc-theme .status-active,
body.rc-theme .status-completed,
body.rc-theme .status-paid {
    background: var(--rc-accent-strong);
    color: #fff;
}

body.rc-theme .label-success {
    background: var(--rc-accent-soft) !important;
    color: var(--rc-accent) !important;
    border: 1px solid var(--rc-accent-muted);
}

body.rc-theme .label.status.status-pending,
body.rc-theme .label.status.status-pending-transfer,
body.rc-theme .label.status.status-suspended,
body.rc-theme .status-pending,
body.rc-theme .status-pending-transfer,
body.rc-theme .status-suspended {
    background: var(--rc-warning);
    color: #1a1a1a !important;
}

body.rc-theme .label.status.status-onhold,
body.rc-theme .status-onhold {
    background: rgba(234, 179, 8, 0.18);
    color: #fde047;
    border-color: rgba(234, 179, 8, 0.4);
}

body.rc-theme .label.status.status-inprogress,
body.rc-theme .status-inprogress {
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.38);
}

body.rc-theme .label.status.status-cancelled,
body.rc-theme .label.status.status-terminated,
body.rc-theme .label.status.status-closed,
body.rc-theme .status-cancelled,
body.rc-theme .status-terminated,
body.rc-theme .status-closed {
    background: rgba(113, 113, 122, 0.22);
    color: #d4d4d8;
    border-color: rgba(161, 161, 170, 0.35);
}

body.rc-theme .label.status.status-customer-reply,
body.rc-theme .status-customer-reply {
    background: rgba(251, 146, 60, 0.18);
    color: #fdba74;
    border-color: rgba(251, 146, 60, 0.4);
}

body.rc-theme .label.status.status-answered,
body.rc-theme .status-answered {
    background: rgba(96, 165, 250, 0.18) !important;
    color: #93c5fd !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
}

body.rc-theme .label.status.status-open,
body.rc-theme .status-open {
    background: rgba(74, 222, 128, 0.16) !important;
    color: #86efac !important;
    border-color: rgba(74, 222, 128, 0.38) !important;
}

body.rc-theme .label.status.status-unpaid,
body.rc-theme .label.status.status-overdue,
body.rc-theme .label.status.status-fraud,
body.rc-theme .status-unpaid,
body.rc-theme .status-overdue,
body.rc-theme .status-fraud {
    background: var(--rc-danger);
    color: #fff;
}

body.rc-saas-app .ticket-subject.unread {
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-saas-app .ticket-number {
    color: var(--rc-text-muted);
    font-size: 0.8125rem;
    margin-right: 0.5rem;
}

/* Dashboard — layout e espaçamento */
.rc-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Dashboard — serviços contratados */
.rc-home-services {
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(83, 82, 237, 0.14), transparent 55%),
        var(--rc-surface);
    border-radius: var(--rc-radius);
    padding: 1.1rem 1.15rem;
    box-shadow: var(--rc-shadow);
}

.rc-home-services__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.rc-home-services__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rc-text);
}

.rc-home-services__lead {
    margin: 0;
    font-size: 0.875rem;
    color: var(--rc-text-muted);
    max-width: 54rem;
}

.rc-home-services__fallback {
    color: var(--rc-text-muted);
    font-size: 0.875rem;
}

.rc-home-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.85rem;
}

.rc-home-svc {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    border: 1px solid var(--rc-border-subtle);
    background: var(--rc-surface-raised);
    text-decoration: none !important;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rc-home-svc:hover {
    transform: translateY(-1px);
    border-color: var(--rc-border);
    background: rgba(255, 255, 255, 0.03);
}

.rc-home-svc__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.rc-home-svc__ico {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--rc-accent-soft);
    border: 1px solid var(--rc-accent-muted);
    color: var(--rc-accent);
    flex-shrink: 0;
}

.rc-home-svc__ico i {
    font-size: 1rem;
}

.rc-home-svc__info {
    flex: 1;
    min-width: 0;
}

.rc-home-svc__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.rc-home-svc__name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--rc-text);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.rc-home-svc__title-row .label.status {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.rc-home-svc__meta {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--rc-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rc-home-svc__meta i {
    color: var(--rc-text-muted);
    flex-shrink: 0;
}

.rc-home-svc__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--rc-border-subtle);
}

.rc-home-svc__stat {
    min-width: 0;
}

.rc-home-svc__stat--price {
    text-align: right;
    margin-left: auto;
}

.rc-home-svc__lbl {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rc-text-muted);
    margin-bottom: 0.2rem;
}

.rc-home-svc__val {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--rc-text);
    line-height: 1.3;
}

.rc-home-svc__go {
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--rc-border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-text-muted);
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.rc-home-svc:hover .rc-home-svc__go {
    border-color: var(--rc-accent-muted);
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
}

body.rc-theme .rc-dashboard-panels {
    margin-bottom: 0;
}

/* Painel de serviços (lista no dashboard) */
body.rc-theme .client-home-cards .div-service-item.rc-dash-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--rc-border-subtle);
    background: transparent;
    transition: background 0.15s, border-color 0.15s;
}

body.rc-theme .client-home-cards .div-service-item.rc-dash-service:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

body.rc-theme .client-home-cards .div-service-item.rc-dash-service:last-child {
    border-bottom: 0;
}

body.rc-theme .client-home-cards .div-service-item.rc-dash-service:hover {
    background: var(--rc-surface-hover);
}

body.rc-theme .client-home-cards .rc-dash-service__main {
    min-width: 0;
}

body.rc-theme .client-home-cards .rc-dash-service__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

body.rc-theme .client-home-cards .rc-dash-service__status {
    flex-shrink: 0;
    padding-top: 0.15rem;
}

body.rc-theme .client-home-cards .rc-dash-service__name {
    margin: 0;
    min-width: 0;
}

body.rc-theme .client-home-cards .rc-dash-service__title {
    display: block;
    color: var(--rc-text) !important;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
}

body.rc-theme .client-home-cards .rc-dash-service__group {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--rc-text-muted);
    line-height: 1.35;
}

body.rc-theme .client-home-cards .rc-dash-service__domain {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--rc-text-secondary) !important;
}

body.rc-theme .client-home-cards .rc-dash-service__domain i {
    opacity: 0.55;
    font-size: 0.75rem;
}

body.rc-theme .client-home-cards .rc-dash-service__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    padding-left: calc(4.5rem + 0.85rem);
}

@media (max-width: 575px) {
    body.rc-theme .client-home-cards .rc-dash-service__meta {
        padding-left: 0;
    }
}

body.rc-theme .client-home-cards .rc-dash-service__meta-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.45rem;
}

body.rc-theme .client-home-cards .rc-dash-service__meta-label {
    width: 100%;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-theme .client-home-cards .rc-dash-service__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rc-accent);
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

body.rc-theme .client-home-cards .rc-dash-service__cycle {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rc-text-secondary);
}

body.rc-theme .client-home-cards .rc-dash-service__due {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-theme .client-home-cards .rc-dash-service__meta-item--due-soon .rc-dash-service__due {
    color: var(--rc-warning);
}

body.rc-theme .client-home-cards .rc-dash-service__meta-item--due-soon .rc-dash-service__meta-label::after {
    content: " · em breve";
    color: var(--rc-warning);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

body.rc-theme .client-home-cards .rc-dash-service__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
}

body.rc-theme .client-home-cards .div-service-status .label:not(.label-placeholder) {
    width: auto;
    min-width: 4.5rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--rc-accent-soft) !important;
    color: var(--rc-accent) !important;
    border: 1px solid var(--rc-accent-muted);
}

body.rc-theme .client-home-cards .rc-dash-service__actions .btn-view-details {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
}

@media (max-width: 767px) {
    body.rc-theme .client-home-cards .div-service-item.rc-dash-service {
        grid-template-columns: 1fr;
    }

    body.rc-theme .client-home-cards .rc-dash-service__actions {
        justify-content: flex-start;
    }

    body.rc-theme .client-home-cards .rc-dash-service__actions .btn-view-details {
        width: 100%;
    }
}

/* legacy selectors kept for panels without rc-dash-service */
body.rc-theme .client-home-cards .div-service-item:not(.rc-dash-service) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rc-border-subtle);
    background: transparent;
    transition: background 0.15s;
}

body.rc-theme .client-home-cards .div-service-item:not(.rc-dash-service):nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

body.rc-theme .client-home-cards .div-service-item:not(.rc-dash-service):last-child {
    border-bottom: 0;
}

body.rc-theme .client-home-cards .div-service-item:not(.rc-dash-service):hover {
    background: var(--rc-surface-hover);
}

body.rc-theme .client-home-cards .div-service-name {
    margin: 0;
    min-width: 0;
}

body.rc-theme .client-home-cards .div-service-name .font-weight-bold {
    color: var(--rc-text) !important;
    font-size: 0.875rem;
    font-weight: 600;
}

body.rc-theme .client-home-cards .div-service-name .text-domain {
    color: var(--rc-text-muted) !important;
    font-size: 0.8125rem;
}

body.rc-theme .client-home-cards .div-service-status .label:not(.label-placeholder) {
    width: auto;
    min-width: 4.5rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--rc-accent-soft) !important;
    color: var(--rc-accent) !important;
    border: 1px solid var(--rc-accent-muted);
}

body.rc-theme .client-home-cards .div-service-buttons .btn-view-details {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    white-space: nowrap;
}

/* Anúncios — dashboard e página */
body.rc-theme .client-home-cards .announcement,
body.rc-theme .client-home-cards .announcements .announcement {
    margin: 0;
    padding: 0;
}

body.rc-theme .client-home-cards .announcement article,
body.rc-theme .client-home-cards .announcements .announcement article,
body.rc-theme .announcements .announcement article {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--rc-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
}

body.rc-theme .client-home-cards .list-group-item .announcement h1,
body.rc-theme .client-home-cards .list-group-item h1 {
    margin: 0 0 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

body.rc-theme .client-home-cards .list-group-item .announcement h1 a,
body.rc-theme .client-home-cards .list-group-item h1 a {
    color: var(--rc-text);
    text-decoration: none;
}

body.rc-theme .client-home-cards .list-group-item .announcement h1 a:hover {
    color: var(--rc-accent);
}

body.rc-theme .client-home-cards .list-group-item .list-inline,
body.rc-theme .client-home-cards .announcement .list-inline {
    margin: 0 0 0.5rem;
    padding: 0;
}

body.rc-theme .client-home-cards .list-group-item .text-muted {
    color: var(--rc-text-muted) !important;
    font-size: 0.75rem;
}

/* Página de anúncios */
.rc-announcements-page {
    width: 100%;
    max-width: none;
    margin: 0;
}

.rc-announcements-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

@media (min-width: 1100px) {
    .rc-announcements-grid {
        gap: 1.25rem;
    }
}

.rc-announcement-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--rc-surface);
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--rc-shadow);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.rc-announcement-card__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none;
}

.rc-announcement-card:hover {
    transform: translateY(-2px);
    border-color: var(--rc-border-strong);
    box-shadow: var(--rc-shadow-hover);
}

.rc-announcement-card:hover .rc-announcement-card__title {
    color: var(--rc-accent);
}

.rc-announcement-card:hover .rc-announcement-card__link {
    color: var(--rc-accent-hover);
    gap: 0.55rem;
}

.rc-announcement-card__header {
    position: relative;
    margin-bottom: 1rem;
}

.rc-announcement-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--rc-accent);
    margin-bottom: 0.5rem;
}

.rc-announcement-card__title {
    margin: 0;
    padding-right: 2.5rem;
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--rc-text);
    transition: color 0.2s ease;
}

.rc-announcement-card__edit {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.rc-announcement-card__body {
    flex: 1;
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--rc-text-secondary);
    text-align: left;
}

.rc-announcement-card__body p:last-child {
    margin-bottom: 0;
}

.rc-announcement-card__body a,
.rc-announcement-card__body button {
    position: relative;
    z-index: 2;
}

.rc-announcement-card__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rc-radius);
}

.rc-announcement-card__footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--rc-border-subtle);
}

.rc-announcement-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-accent);
    transition: color 0.2s ease, gap 0.2s ease;
}

.rc-announcements-pagination {
    margin-top: 2rem;
}

.rc-announcements-pagination .pagination .page-link {
    background: var(--rc-surface);
    border-color: var(--rc-border);
    color: var(--rc-text-secondary);
}

.rc-announcements-pagination .pagination .page-item.active .page-link {
    background: var(--rc-accent);
    border-color: var(--rc-accent);
    color: #fff;
}

.rc-announcements-pagination .pagination .page-link:hover {
    background: rgba(83, 82, 237, 0.15);
    border-color: var(--rc-accent);
    color: var(--rc-text);
}

/* Detalhe do anúncio */
.rc-announcement-view {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--rc-surface);
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    box-shadow: var(--rc-shadow);
    overflow: hidden;
}

.rc-announcement-view__header {
    padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
    border-bottom: 1px solid var(--rc-border-subtle);
    background: linear-gradient(180deg, rgba(83, 82, 237, 0.06) 0%, transparent 100%);
    text-align: left;
}

.rc-announcement-view__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-muted);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease;
}

.rc-announcement-view__back:hover {
    color: var(--rc-accent);
    text-decoration: none;
}

.rc-announcement-view__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--rc-text);
}

.rc-announcement-view__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--rc-text-muted);
}

.rc-announcement-view__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.rc-announcement-view__share {
    margin-top: 1rem;
}

.rc-announcement-view__content {
    padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--rc-text-secondary);
    text-align: left;
}

.rc-announcement-view__content h1,
.rc-announcement-view__content h2,
.rc-announcement-view__content h3,
.rc-announcement-view__content h4 {
    color: var(--rc-text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.rc-announcement-view__content p {
    margin-bottom: 1rem;
}

.rc-announcement-view__content a {
    color: var(--rc-accent);
}

.rc-announcement-view__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rc-radius);
    margin: 1rem 0;
}

.rc-announcement-view__content blockquote {
    border-left: 3px solid var(--rc-accent);
    padding-left: 1rem;
    margin: 1.25rem 0;
    color: var(--rc-text-muted);
    font-style: italic;
}

.rc-announcement-view__content ul,
.rc-announcement-view__content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.rc-announcement-view__social {
    padding: 0 2rem 1.5rem;
}

.rc-announcement-view__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.25rem);
    border-top: 1px solid var(--rc-border-subtle);
}

.rc-announcement-view__comments {
    width: 100%;
    max-width: none;
    margin: 1.25rem 0 0;
}

@media (max-width: 575px) {
    .rc-announcement-card {
        padding: 1.25rem;
    }

    .rc-announcement-view__header,
    .rc-announcement-view__content,
    .rc-announcement-view__footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .rc-announcement-view__content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Tabelas premium */
body.rc-saas-app .dataTables_wrapper {
    margin-bottom: 2rem;
}

body.rc-saas-app .dataTables_wrapper table.table-list {
    box-shadow: var(--rc-shadow);
}

/* Empty DataTables: ocupar mais espaço vertical (faturas / tickets) */
body.rc-saas-app .dataTables_wrapper .dataTables_scrollBody,
body.rc-saas-app .dataTables_wrapper table.table-list tbody {
    min-height: 18rem;
}

body.rc-saas-app .dataTables_wrapper table.table-list tbody:has(td.dataTables_empty) {
    min-height: 20rem;
}

body.rc-saas-app .dataTables_wrapper table.table-list td.dataTables_empty {
    height: 20rem;
    vertical-align: middle !important;
    text-align: center !important;
    padding: 2.5rem 1.5rem !important;
    font-size: 0.9375rem;
    color: var(--rc-text-secondary) !important;
    background: var(--rc-surface) !important;
    border-color: var(--rc-border) !important;
}

body.rc-saas-app .table-list > tbody > tr > td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
}

body.rc-saas-app .table-list > tbody > tr > td strong {
    color: var(--rc-text);
    font-weight: 600;
}

/* ── Detalhes do produto (hero por tipo) ── */
body.rc-page-services .rc-pd {
    padding-bottom: 2.5rem;
}

body.rc-page-services .rc-pd-hero {
    position: relative;
    margin-bottom: 1.25rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(ellipse 85% 75% at 0% 0%, rgba(83, 82, 237, 0.22), transparent 55%),
        linear-gradient(160deg, var(--rc-surface-raised) 0%, var(--rc-bg) 100%);
    box-shadow: var(--rc-shadow-hover);
    overflow: hidden;
}

body.rc-page-services .rc-pd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--rc-border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--rc-border-subtle) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 65% at 15% 10%, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
}

body.rc-page-services .rc-pd-hero--game {
    background:
        radial-gradient(ellipse 70% 60% at 100% 20%, rgba(62, 207, 142, 0.12), transparent 50%),
        radial-gradient(ellipse 85% 75% at 0% 0%, rgba(83, 82, 237, 0.28), transparent 55%),
        linear-gradient(160deg, #0d1210 0%, var(--rc-bg) 100%);
    border-color: rgba(62, 207, 142, 0.15);
}

body.rc-page-services .rc-pd-hero--vps {
    background:
        radial-gradient(ellipse 75% 65% at 100% 30%, rgba(56, 189, 248, 0.14), transparent 52%),
        radial-gradient(ellipse 85% 75% at 0% 0%, rgba(83, 82, 237, 0.25), transparent 55%),
        linear-gradient(160deg, #0a0e14 0%, var(--rc-bg) 100%);
    border-color: rgba(56, 189, 248, 0.12);
}

body.rc-page-services .rc-pd-hero--hosting {
    background:
        radial-gradient(ellipse 70% 60% at 100% 40%, rgba(139, 138, 245, 0.12), transparent 50%),
        radial-gradient(ellipse 85% 75% at 0% 0%, rgba(83, 82, 237, 0.22), transparent 55%),
        linear-gradient(160deg, var(--rc-surface-raised) 0%, var(--rc-bg) 100%);
}

body.rc-page-services .rc-pd-hero__back {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-muted) !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

body.rc-page-services .rc-pd-hero__back:hover {
    color: var(--rc-accent) !important;
    transform: translateX(-2px);
}

body.rc-page-services .rc-pd-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

@media (max-width: 767px) {
    body.rc-page-services .rc-pd-hero__layout {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-pd-hero__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rc-accent);
}

body.rc-page-services .rc-pd-hero__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--rc-text);
}

body.rc-page-services .rc-pd-hero__group {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
    line-height: 1.4;
}

body.rc-page-services .rc-pd-hero .label.status {
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

body.rc-page-services .rc-pd-hero__media {
    position: relative;
    min-height: 160px;
}

body.rc-page-services .rc-pd-hero__art {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--rc-radius);
    overflow: hidden;
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
}

body.rc-page-services .rc-pd-hero__art--game {
    border-color: rgba(62, 207, 142, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(62, 207, 142, 0.08),
        inset 0 0 0 1px rgba(62, 207, 142, 0.1);
}

body.rc-page-services .rc-pd-hero__art--vps {
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(56, 189, 248, 0.1),
        inset 0 0 0 1px rgba(56, 189, 248, 0.12);
}

body.rc-page-services .rc-pd-hero__art--hosting,
body.rc-page-services .rc-pd-hero__art--default {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 50% 40%, rgba(83, 82, 237, 0.15), transparent 60%),
        var(--rc-surface-raised);
}

body.rc-page-services .rc-pd-hero__art-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

body.rc-page-services .rc-pd-hero__art--game .rc-pd-hero__art-img {
    object-position: center 25%;
}

body.rc-page-services .rc-pd-hero__art--vps .rc-pd-hero__art-img {
    object-position: center center;
}

body.rc-page-services .rc-pd-hero__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, transparent 45%, transparent 100%);
    pointer-events: none;
}

body.rc-page-services .rc-pd-hero__art--hosting::after,
body.rc-page-services .rc-pd-hero__art--default::after {
    background: none;
}

body.rc-page-services .rc-pd-hero__art-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(8px);
}

body.rc-page-services .rc-pd-hero__art--game .rc-pd-hero__art-badge {
    border-color: rgba(62, 207, 142, 0.35);
    color: #bbf7d0;
}

body.rc-page-services .rc-pd-hero__art--vps .rc-pd-hero__art-badge {
    border-color: rgba(56, 189, 248, 0.35);
    color: #bae6fd;
}

body.rc-page-services .rc-pd-hero__art-leds {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    gap: 0.3rem;
}

body.rc-page-services .rc-pd-hero__art-leds span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
    animation: rc-pd-led-pulse 2s ease-in-out infinite;
}

body.rc-page-services .rc-pd-hero__art-leds span:nth-child(2) {
    animation-delay: 0.35s;
    background: var(--rc-accent-strong);
    box-shadow: 0 0 8px rgba(83, 82, 237, 0.8);
}

body.rc-page-services .rc-pd-hero__art-leds span:nth-child(3) {
    animation-delay: 0.7s;
    background: var(--rc-success);
    box-shadow: 0 0 8px rgba(62, 207, 142, 0.8);
}

@keyframes rc-pd-led-pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1); }
}

body.rc-page-services .rc-pd-hero__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    font-size: 2rem;
    color: var(--rc-accent);
    background: var(--rc-accent-soft);
    border: 1px solid var(--rc-accent-muted);
}

body.rc-page-services .rc-pd-hero__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.65rem;
    margin-top: 0;
    padding-top: 1.15rem;
    border-top: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-pd-hero__upgrade {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    padding-top: 0;
}

body.rc-page-services .rc-pd-hero__upgrade .rc-pd-upgrade-btn {
    font-weight: 600;
    padding: 0.65rem 1rem;
    box-shadow: 0 4px 16px rgba(83, 82, 237, 0.35);
}

body.rc-page-services .rc-pd-hero__upgrade .rc-pd-upgrade-btn:hover {
    box-shadow: 0 6px 22px rgba(83, 82, 237, 0.45);
}

body.rc-page-services .rc-pd-hero__stat {
    padding: 0.75rem 0.9rem;
    border-radius: var(--rc-radius-sm);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-pd-hero__stat--price {
    border-color: var(--rc-accent-muted);
    background: rgba(83, 82, 237, 0.08);
}

body.rc-page-services .rc-pd-hero__stat-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-pd-hero__stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

body.rc-page-services .rc-pd-hero__stat--price .rc-pd-hero__stat-value {
    font-size: 1.35rem;
    color: var(--rc-accent);
}

body.rc-page-services .rc-pd-hero__stat-hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-pd-shell {
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    box-shadow: var(--rc-shadow);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

body.rc-page-services .rc-pd-shell__body {
    padding: clamp(1.15rem, 3vw, 1.5rem);
}

body.rc-page-services .rc-pd-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

body.rc-page-services .rc-pd-spec {
    padding: 0.85rem 1rem;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-surface-raised);
    border: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-pd-spec--wide {
    grid-column: 1 / -1;
}

body.rc-page-services .rc-pd-spec__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-pd-spec__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
    line-height: 1.4;
}

body.rc-page-services .rc-pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-pd-upgrade-btn {
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(83, 82, 237, 0.35);
}

body.rc-page-services .rc-pd-upgrade-btn:hover {
    box-shadow: 0 6px 22px rgba(83, 82, 237, 0.45);
}

body.rc-page-services .rc-pd-cancel-btn {
    font-size: 0.8125rem;
}

/* Abas principais (Visão geral, Alterar senha…) */
body.rc-page-services .rc-pd-main-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    background: var(--rc-surface-raised);
}

body.rc-page-services .rc-pd-main-tabs .nav-item {
    margin: 0;
}

body.rc-page-services .rc-pd-main-tabs .nav-link {
    border: none !important;
    border-radius: var(--rc-radius-sm) !important;
    padding: 0.55rem 1rem !important;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-muted) !important;
    background: transparent !important;
    transition: background 0.15s ease, color 0.15s ease;
}

body.rc-page-services .rc-pd-main-tabs .nav-link:hover {
    color: var(--rc-text) !important;
    background: var(--rc-surface-hover) !important;
}

body.rc-page-services .rc-pd-main-tabs .nav-link.active {
    color: #fff !important;
    background: var(--rc-accent) !important;
    box-shadow: 0 4px 16px rgba(83, 82, 237, 0.3);
}

body.rc-page-services .rc-pd-outer-tabs {
    border: none;
}

body.rc-page-services .rc-pd-changepw {
    margin-top: 1.5rem;
}

body.rc-page-services .rc-pd-changepw:not(.is-open),
body.rc-page-services .rc-pd-changepw[hidden] {
    display: none !important;
}

body.rc-page-services .rc-pd-changepw-flash {
    margin-bottom: 1.25rem;
}

body.rc-page-services .rc-pd-changepw-flash .alert {
    margin-bottom: 0;
}

body.rc-page-services .rc-pd-changepw__card {
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    background: var(--rc-surface);
    box-shadow: var(--rc-shadow);
    padding: 1.25rem 1.5rem 1.5rem;
}

body.rc-page-services .rc-pd-changepw__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

body.rc-page-services .rc-pd-changepw__title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--rc-text);
}

body.rc-page-services .rc-pd-changepw__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius-sm);
    background: var(--rc-surface-raised);
    color: var(--rc-text-muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

body.rc-page-services .rc-pd-changepw__close:hover {
    color: var(--rc-text);
    border-color: var(--rc-border-strong);
    background: var(--rc-surface-hover);
}

body.rc-page-services .rc-pd-changepw__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* legacy product-details (module output) */
body.rc-page-services .product-details .product-icon {
    background: var(--rc-surface-raised) !important;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    padding: 1.25rem;
    overflow: hidden;
}

body.rc-page-services .product-status-text {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--rc-accent-strong);
    color: #fff;
}

body.rc-page-services .product-status-active {
    background: transparent !important;
}

body.rc-page-services .product-details .col-md-6 h4 {
    margin: 1.25rem 0 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .product-details .col-md-6 h4:first-child {
    margin-top: 0;
}

body.rc-page-services .tab-content.bg-white.product-details-tab-container {
    background: var(--rc-surface) !important;
    border: 1px solid var(--rc-border);
    border-radius: 0 0 var(--rc-radius) var(--rc-radius);
    border-top: 0;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--rc-text-secondary);
}

/* Abas do módulo (Gerenciar, Opções…) */
body.rc-page-services .rc-pd-module {
    margin-bottom: 2rem;
}

body.rc-page-services .rc-pd-module-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0;
    padding: 0.35rem;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius) var(--rc-radius) 0 0;
    border-bottom: none;
    background: var(--rc-surface-raised);
}

body.rc-page-services .rc-pd-module-tabs .nav-item {
    margin: 0;
}

body.rc-page-services .rc-pd-module-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem !important;
    border: none !important;
    border-radius: var(--rc-radius-sm) !important;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-muted) !important;
    background: transparent !important;
    transition: background 0.15s, color 0.15s;
}

body.rc-page-services .rc-pd-module-tabs .nav-link:hover {
    color: var(--rc-text) !important;
    background: var(--rc-surface-hover) !important;
}

body.rc-page-services .rc-pd-module-tabs .nav-link.active {
    color: #fff !important;
    background: var(--rc-accent-strong) !important;
    box-shadow: 0 2px 12px rgba(83, 82, 237, 0.35);
}

body.rc-page-services .rc-pd-module .responsive-tabs-sm-connector {
    display: none;
}

body.rc-page-services .rc-pd-module-panel {
    border-radius: 0 0 var(--rc-radius) var(--rc-radius);
    margin-bottom: 0;
}

body.rc-page-services .rc-pd-module-area {
    text-align: left;
    padding: 0;
}

/* Painel Pterodactyl — credenciais e ações */
body.rc-page-services .rc-ptero {
    max-width: 100%;
}

body.rc-page-services .rc-ptero__header {
    margin-bottom: 1.25rem;
}

body.rc-page-services .rc-ptero__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--rc-text);
}

body.rc-page-services .rc-ptero__title i {
    color: var(--rc-accent);
    font-size: 0.95rem;
}

body.rc-page-services .rc-ptero__lead {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-ptero__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

@media (max-width: 640px) {
    body.rc-page-services .rc-ptero__grid {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-ptero__card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface-raised);
}

body.rc-page-services .rc-ptero__card--wide {
    grid-column: 1 / -1;
}

body.rc-page-services .rc-ptero__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

body.rc-page-services .rc-ptero__card-body {
    min-width: 0;
}

body.rc-page-services .rc-ptero__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-ptero__value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rc-text);
    word-break: break-all;
    line-height: 1.4;
}

body.rc-page-services .rc-ptero__value.w-hidden {
    display: none !important;
}

body.rc-page-services .rc-ptero__value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    font-weight: 500;
}

body.rc-page-services .rc-ptero__value--muted {
    color: var(--rc-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

body.rc-page-services .rc-ptero__set-password {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rc-accent);
    text-decoration: none;
    white-space: nowrap;
}

body.rc-page-services .rc-ptero__set-password:hover {
    color: var(--rc-accent-hover);
    text-decoration: underline;
}

body.rc-page-services .rc-ptero__card--password .rc-ptero__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.rc-page-services .rc-ptero__password-field {
    min-width: 0;
}

body.rc-page-services .rc-ptero__password-field .rc-ptero__value {
    display: block;
    word-break: break-all;
}

body.rc-page-services .rc-ptero__password-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

body.rc-page-services .rc-ptero__chip,
body.rc-page-services .rc-ptero__reveal,
body.rc-page-services .rc-ptero__change-pw {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.3rem 0.65rem;
    border: 1px solid var(--rc-border);
    border-radius: 0.4rem;
    background: var(--rc-surface);
    color: var(--rc-text-secondary);
    font-family: inherit;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}

body.rc-page-services .rc-ptero__chip:hover,
body.rc-page-services .rc-ptero__chip.is-active,
body.rc-page-services .rc-ptero__reveal:hover,
body.rc-page-services .rc-ptero__reveal.is-active {
    border-color: var(--rc-accent-muted);
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
}

body.rc-page-services .rc-ptero__chip--accent,
body.rc-page-services .rc-ptero__change-pw {
    border-color: rgba(83, 82, 237, 0.45);
    background: rgba(83, 82, 237, 0.14);
    color: #c4c3ff;
}

body.rc-page-services .rc-ptero__chip--accent:hover,
body.rc-page-services .rc-ptero__change-pw:hover {
    border-color: var(--rc-accent);
    background: rgba(83, 82, 237, 0.28);
    color: #fff;
    box-shadow: 0 2px 10px rgba(83, 82, 237, 0.25);
}

body.rc-page-services .rc-ptero__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--rc-border);
    border-radius: 0.4rem;
    background: var(--rc-surface);
    color: var(--rc-text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    flex-shrink: 0;
}

body.rc-page-services .rc-ptero__copy:hover,
body.rc-page-services .rc-ptero__copy.is-copied {
    border-color: var(--rc-accent-muted);
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
}

body.rc-page-services .rc-ptero__copy:focus,
body.rc-page-services .rc-ptero__copy:active,
body.rc-page-services .rc-ptero__reveal:focus,
body.rc-page-services .rc-ptero__reveal:active {
    outline: none !important;
    box-shadow: none !important;
}

body.rc-page-services .rc-ptero__copy:focus:not(:focus-visible),
body.rc-page-services .rc-ptero__reveal:focus:not(:focus-visible) {
    border-color: var(--rc-accent-muted);
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
}

body.rc-page-services .rc-ptero__actions {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    body.rc-page-services .rc-ptero__actions {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-ptero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface-raised);
    color: var(--rc-text) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
}

body.rc-page-services .rc-ptero__action:hover {
    border-color: var(--rc-border-hover);
    background: var(--rc-surface-hover);
    transform: translateY(-1px);
    color: var(--rc-text) !important;
}

body.rc-page-services .rc-ptero__action:focus,
body.rc-page-services .rc-ptero__action:active {
    outline: none !important;
    box-shadow: none !important;
}

body.rc-page-services .rc-ptero__action--primary:focus,
body.rc-page-services .rc-ptero__action--primary:active {
    background: var(--rc-accent-deep) !important;
    border-color: var(--rc-accent-deep) !important;
    color: #fff !important;
    box-shadow: none !important;
}

body.rc-page-services .rc-ptero__action--primary {
    border-color: var(--rc-accent-strong);
    background: var(--rc-accent-strong);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(83, 82, 237, 0.35);
}

body.rc-page-services .rc-ptero__action--primary:hover {
    background: var(--rc-accent-deep);
    border-color: var(--rc-accent-deep);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(83, 82, 237, 0.45);
}

body.rc-page-services .rc-ptero__action i {
    font-size: 0.875rem;
    opacity: 0.9;
}

body.rc-page-services .nav-tabs.responsive-tabs-sm {
    border-bottom-color: var(--rc-border);
    margin-bottom: 0;
}

body.rc-page-services .nav-tabs .nav-link.active {
    border-color: var(--rc-border) var(--rc-border) var(--rc-surface);
    background: var(--rc-surface);
    color: var(--rc-text);
}

body.rc-page-services .tab-content .row > .col-sm-5 {
    color: var(--rc-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

body.rc-page-services .tab-content .row > .col-sm-7 {
    color: var(--rc-text);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

body.rc-page-services .btn-success {
    background: var(--rc-accent-strong);
    border-color: var(--rc-accent-strong);
    color: #fff;
}

body.rc-page-services .btn-success:hover {
    background: var(--rc-accent-deep);
    border-color: var(--rc-accent-deep);
}

body.rc-page-services .margin-bottom,
body.rc-page-services .tab-content.margin-bottom {
    margin-bottom: 2.5rem !important;
}

/* ── Meus Serviços (lista em cards) ── */
body.rc-page-services .rc-services {
    padding-bottom: 2.5rem;
}

body.rc-page-services .rc-services-hero {
    position: relative;
    margin-bottom: 1.75rem;
    border-radius: var(--rc-radius);
    padding: clamp(1.35rem, 4vw, 2rem);
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(ellipse 90% 80% at 0% 0%, rgba(83, 82, 237, 0.28), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(83, 82, 237, 0.06), transparent 45%),
        linear-gradient(155deg, var(--rc-surface-raised) 0%, var(--rc-bg) 100%);
    box-shadow: var(--rc-shadow-hover);
    overflow: hidden;
}

body.rc-page-services .rc-services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--rc-border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--rc-border-subtle) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 30% 20%, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
}

body.rc-page-services .rc-services-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem 2rem;
    align-items: end;
}

@media (max-width: 768px) {
    body.rc-page-services .rc-services-hero__grid {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-services-hero__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rc-accent);
}

body.rc-page-services .rc-services-hero__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-hero__lead {
    margin: 0 0 1.15rem;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.rc-page-services .rc-services-hero__figure {
    padding: 0.5rem 0.25rem 0.25rem 1.25rem;
    text-align: right;
    border-left: 1px solid var(--rc-border);
}

@media (max-width: 768px) {
    body.rc-page-services .rc-services-hero__figure {
        padding: 1rem 0 0;
        text-align: left;
        border-left: none;
        border-top: 1px solid var(--rc-border);
    }
}

body.rc-page-services .rc-services-hero__big {
    display: block;
    font-size: clamp(2.75rem, 9vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(135deg, var(--rc-text), var(--rc-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-hero__big-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

body.rc-page-services .rc-services-stat {
    position: relative;
    padding: 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    box-shadow: var(--rc-shadow);
    overflow: hidden;
}

body.rc-page-services .rc-services-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: var(--rc-radius-sm) 0 0 var(--rc-radius-sm);
}

body.rc-page-services .rc-services-stat--all::before {
    background: var(--rc-accent-strong);
}

body.rc-page-services .rc-services-stat--active::before {
    background: var(--rc-success);
}

body.rc-page-services .rc-services-stat--pending::before {
    background: var(--rc-warning);
}

body.rc-page-services .rc-services-stat--suspended::before {
    background: #f97316;
}

body.rc-page-services .rc-services-stat--other::before {
    background: var(--rc-text-muted);
}

body.rc-page-services .rc-services-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
}

body.rc-page-services .rc-services-stat--active .rc-services-stat__icon {
    background: rgba(62, 207, 142, 0.12);
    color: var(--rc-success);
}

body.rc-page-services .rc-services-stat--pending .rc-services-stat__icon {
    background: rgba(234, 179, 8, 0.12);
    color: var(--rc-warning);
}

body.rc-page-services .rc-services-stat--suspended .rc-services-stat__icon {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

body.rc-page-services .rc-services-stat--other .rc-services-stat__icon {
    background: rgba(113, 113, 122, 0.15);
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-stat__value {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
    line-height: 1.25;
}

body.rc-page-services .rc-services-list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    padding: 0 0.15rem;
}

body.rc-page-services .rc-services-list-head__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-list-head__meta {
    font-size: 0.8125rem;
    color: var(--rc-text-muted);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-list-head__meta strong {
    color: var(--rc-accent);
    font-weight: 700;
}

body.rc-page-services .rc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1rem;
}

body.rc-page-services .rc-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 1100px) {
    body.rc-page-services .rc-services-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
        align-items: start;
    }
}

body.rc-page-services .rc-services-aside {
    position: relative;
}

@media (min-width: 1100px) {
    body.rc-page-services .rc-services-aside {
        position: sticky;
        top: calc(var(--rc-header-height) + 1rem);
    }
}

body.rc-page-services .rc-services-aside__card {
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    border-radius: var(--rc-radius);
    padding: 1.1rem 1.15rem;
    box-shadow: var(--rc-shadow);
    margin-bottom: 1rem;
}

body.rc-page-services .rc-services-aside__card--help {
    background:
        radial-gradient(ellipse 85% 75% at 0% 0%, rgba(83, 82, 237, 0.14), transparent 55%),
        var(--rc-surface);
}

body.rc-page-services .rc-services-aside__title {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-aside__text {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-aside__actions .btn {
    border-radius: 0.75rem;
    padding: 0.65rem 0.9rem;
    font-weight: 700;
}

body.rc-page-services .rc-services-aside__actions .btn + .btn {
    margin-top: 0.5rem;
}

body.rc-page-services .rc-services-aside__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rc-accent) !important;
    text-decoration: none !important;
}

body.rc-page-services .rc-services-aside__link:hover {
    color: #fff !important;
}

body.rc-page-services .rc-services-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 1.2rem 1.25rem 1.1rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(83, 82, 237, 0.1), transparent 50%),
        var(--rc-surface);
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: var(--rc-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.rc-page-services .rc-services-card:hover {
    transform: translateY(-4px);
    border-color: var(--rc-accent-muted);
    box-shadow: var(--rc-shadow-hover);
}

body.rc-page-services .rc-services-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

body.rc-page-services .rc-services-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: var(--rc-surface-raised);
    border: 1px solid var(--rc-border);
    color: var(--rc-text-muted);
    font-size: 1rem;
}

body.rc-page-services .rc-services-card__icon--minecraft {
    background: rgba(83, 82, 237, 0.12);
    border-color: var(--rc-accent-muted);
    color: var(--rc-accent);
}

body.rc-page-services .rc-services-card__icon--vps {
    background: rgba(83, 82, 237, 0.15);
    border-color: var(--rc-accent-muted);
    color: var(--rc-accent-strong);
}

body.rc-page-services .rc-services-card__head-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

body.rc-page-services .rc-services-card__head-meta .label.status {
    font-size: 0.625rem;
    padding: 0.28rem 0.6rem;
}

body.rc-page-services .rc-services-card__ssl {
    flex-shrink: 0;
    opacity: 0.9;
}

body.rc-page-services .rc-services-card__name {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-card__domain {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.3rem;
    font-size: 0.8125rem;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-services-card__domain i {
    opacity: 0.5;
    font-size: 0.75rem;
}

body.rc-page-services .rc-services-card__domain--muted {
    opacity: 0.55;
}

body.rc-page-services .rc-services-card__cycle {
    margin: 0 0 auto;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-card__foot {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    gap: 0.65rem 0.75rem;
    margin-top: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-services-card__lbl {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-card__amt {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--rc-accent);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-card__renew {
    text-align: right;
}

body.rc-page-services .rc-services-card__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-card__go {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-surface-raised);
    border: 1px solid var(--rc-border);
    color: var(--rc-accent);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.rc-page-services .rc-services-card:hover .rc-services-card__go {
    background: var(--rc-accent-strong);
    border-color: var(--rc-accent-strong);
    color: #fff;
}

@media (max-width: 380px) {
    body.rc-page-services .rc-services-card__foot {
        grid-template-columns: 1fr;
        text-align: left;
    }

    body.rc-page-services .rc-services-card__renew {
        text-align: left;
    }

    body.rc-page-services .rc-services-card__go {
        justify-self: start;
    }
}

body.rc-page-services .rc-services-empty {
    position: relative;
    margin-top: 0.5rem;
    padding: 3rem 2rem;
    border-radius: var(--rc-radius);
    border: 1px dashed var(--rc-border);
    background: var(--rc-surface);
    text-align: center;
    overflow: hidden;
}

body.rc-page-services .rc-services-empty__orb {
    position: absolute;
    width: 200%;
    height: 80%;
    left: -50%;
    top: -20%;
    background: radial-gradient(circle, rgba(83, 82, 237, 0.15), transparent 55%);
    pointer-events: none;
}

body.rc-page-services .rc-services-empty__content {
    position: relative;
    z-index: 1;
}

body.rc-page-services .rc-services-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-accent-soft);
    color: var(--rc-accent);
    font-size: 1.35rem;
}

body.rc-page-services .rc-services-empty__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-empty__text {
    max-width: 26rem;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
    color: var(--rc-text-muted);
}

/* ── Upgrade de plano ── */
body.rc-page-services .rc-upgrade {
    padding-bottom: 2.5rem;
}

body.rc-page-services .rc-upgrade-alert__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

body.rc-page-services .rc-upgrade-hero {
    margin-bottom: 1.75rem;
    padding: clamp(1.35rem, 4vw, 2rem);
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(ellipse 90% 80% at 0% 0%, rgba(83, 82, 237, 0.25), transparent 55%),
        linear-gradient(155deg, var(--rc-surface-raised) 0%, var(--rc-bg) 100%);
    box-shadow: var(--rc-shadow-hover);
}

body.rc-page-services .rc-upgrade-hero__kicker {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rc-accent);
}

body.rc-page-services .rc-upgrade-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-hero__lead {
    margin: 0 0 1.15rem;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-current {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
}

body.rc-page-services .rc-upgrade-current__label {
    width: 100%;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-current__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-current__domain {
    font-size: 0.8125rem;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-current__back {
    margin-left: auto;
}

body.rc-page-services .rc-upgrade-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

body.rc-page-services .rc-upgrade-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(83, 82, 237, 0.1), transparent 50%),
        var(--rc-surface);
    box-shadow: var(--rc-shadow);
}

body.rc-page-services .rc-upgrade-plan--recommended {
    border-color: var(--rc-accent-muted);
    box-shadow: 0 0 0 1px var(--rc-ring), var(--rc-shadow-hover);
}

body.rc-page-services .rc-upgrade-plan--current {
    opacity: 0.72;
}

body.rc-page-services .rc-upgrade-plan__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.rc-page-services .rc-upgrade-plan__badge--current {
    background: var(--rc-surface-raised);
    color: var(--rc-text-muted);
    border: 1px solid var(--rc-border);
}

body.rc-page-services .rc-upgrade-plan__badge--recommended {
    background: var(--rc-accent-strong);
    color: #fff;
}

body.rc-page-services .rc-upgrade-plan__head {
    margin-bottom: 0.75rem;
    padding-right: 5rem;
}

body.rc-page-services .rc-upgrade-plan__name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rc-text);
    line-height: 1.25;
}

body.rc-page-services .rc-upgrade-plan__group {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-plan__desc {
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-plan__desc p:last-child {
    margin-bottom: 0;
}

body.rc-page-services .rc-upgrade-plan__features {
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--rc-border-subtle);
    border-bottom: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-upgrade-plan__features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.8125rem;
    color: var(--rc-text-secondary);
    border-bottom: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-upgrade-plan__features li:last-child {
    border-bottom: 0;
}

body.rc-page-services .rc-upgrade-plan__features strong {
    color: var(--rc-text);
    font-weight: 600;
}

body.rc-page-services .rc-upgrade-plan__pricing {
    margin-bottom: 1rem;
    padding: 0.85rem;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-surface-raised);
    border: 1px solid var(--rc-border);
}

body.rc-page-services .rc-upgrade-plan__pricing-label {
    margin: 0 0 0.65rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-accent);
}

body.rc-page-services .rc-upgrade-plan__price-main {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-upgrade-plan__price-term {
    margin: 0.2rem 0 0;
    font-size: 0.8125rem;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-plan__price-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.rc-page-services .rc-upgrade-plan__price-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--rc-border-subtle);
}

body.rc-page-services .rc-upgrade-plan__price-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

body.rc-page-services .rc-upgrade-plan__price-list li:first-child .rc-upgrade-plan__amount {
    font-size: 1.35rem;
    color: var(--rc-accent);
}

body.rc-page-services .rc-upgrade-plan__cycle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.rc-page-services .rc-upgrade-plan__amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

body.rc-page-services .rc-upgrade-plan__form {
    margin-top: auto;
}

body.rc-page-services .rc-upgrade-plan__cycle-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-plan__select {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

body.rc-page-services .rc-upgrade-plan__btn {
    font-weight: 600;
    padding: 0.65rem 1rem;
}

body.rc-page-services .rc-upgrade-footnote,
body.rc-page-services .rc-upgrade-summary-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-accent-soft);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-footnote i,
body.rc-page-services .rc-upgrade-summary-note i {
    color: var(--rc-accent);
    margin-top: 0.15rem;
}

body.rc-page-services .rc-upgrade-back {
    margin: 1.25rem 0 0;
}

body.rc-page-services .rc-upgrade-config__title {
    margin: 0 0 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-config-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.rc-page-services .rc-upgrade-config-item {
    padding: 1rem;
    border-radius: var(--rc-radius-sm);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface-raised);
}

body.rc-page-services .rc-upgrade-config-item__name {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-config-item__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 767px) {
    body.rc-page-services .rc-upgrade-config-item__grid {
        grid-template-columns: 1fr;
    }

    body.rc-page-services .rc-upgrade-config-item__arrow {
        display: none;
    }
}

body.rc-page-services .rc-upgrade-config-item__lbl {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-config-item__val {
    margin: 0;
    font-size: 0.875rem;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-config-item__arrow {
    color: var(--rc-accent);
    text-align: center;
}

body.rc-page-services .rc-upgrade-config-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: var(--rc-text);
}

/* Resumo do upgrade */
body.rc-page-services .rc-upgrade-summary__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 991px) {
    body.rc-page-services .rc-upgrade-summary__grid {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-upgrade-summary-card {
    padding: 1.25rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
}

body.rc-page-services .rc-upgrade-summary-card__title {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-summary-lines {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

body.rc-page-services .rc-upgrade-summary-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 0.5rem 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rc-border-subtle);
    font-size: 0.875rem;
}

@media (max-width: 575px) {
    body.rc-page-services .rc-upgrade-summary-line {
        grid-template-columns: 1fr;
    }
}

body.rc-page-services .rc-upgrade-summary-line--config {
    grid-template-columns: 1fr auto;
}

body.rc-page-services .rc-upgrade-summary-line__from {
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-summary-line__arrow {
    color: var(--rc-accent);
}

body.rc-page-services .rc-upgrade-summary-line__to {
    font-weight: 600;
    color: var(--rc-text);
}

body.rc-page-services .rc-upgrade-summary-line__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rc-accent);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

body.rc-page-services .rc-upgrade-summary-totals {
    padding-top: 0.5rem;
}

body.rc-page-services .rc-upgrade-summary-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-summary-total-row strong {
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-upgrade-summary-total-row--discount strong {
    color: var(--rc-success);
}

body.rc-page-services .rc-upgrade-summary-due {
    padding: 1.35rem 1.25rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-accent-muted);
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(83, 82, 237, 0.2), transparent 60%),
        var(--rc-surface-raised);
    text-align: center;
    margin-bottom: 1rem;
}

body.rc-page-services .rc-upgrade-summary-due__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-summary-due__amount {
    display: block;
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--rc-accent);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-upgrade-summary-due__hint {
    margin: 0.65rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-upgrade-summary-field {
    margin-bottom: 0.85rem;
}

body.rc-page-services .rc-upgrade-summary-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-summary-submit {
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 18px rgba(83, 82, 237, 0.35);
}

body.rc-page-services .rc-upgrade-summary-promo label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-upgrade-summary-note {
    margin-top: 1rem;
}


/* ── Meus Serviços v2 ── */
body.rc-page-services .rc-services--v2 {
    max-width: none;
    margin: 0;
    width: 100%;
    padding: 0 0 2.5rem;
}

body.rc-page-services .rc-services--v2 .rc-services-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 0 1.35rem;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--rc-border);
    background: none;
    box-shadow: none;
    overflow: visible;
}

body.rc-page-services .rc-services--v2 .rc-services-hero::after {
    display: none;
}

body.rc-page-services .rc-services--v2 .rc-services-hero__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services--v2 .rc-services-hero__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--rc-text);
}

body.rc-page-services .rc-services--v2 .rc-services-hero__lead {
    margin: 0;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-services--v2 .rc-services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

body.rc-page-services .rc-services--v2 .rc-services-hero__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.65rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.75rem;
    font-weight: 600;
}

body.rc-page-services .rc-services-toolbar {
    margin-bottom: 1rem;
}

body.rc-page-services .rc-services-toolbar__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

body.rc-page-services .rc-services-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-services-chip--ok {
    border-color: rgba(62, 207, 142, 0.35);
    color: #86efac;
    background: rgba(62, 207, 142, 0.1);
}

body.rc-page-services .rc-services-chip--pending {
    border-color: rgba(250, 204, 21, 0.35);
    color: #fde68a;
    background: rgba(250, 204, 21, 0.08);
}

body.rc-page-services .rc-services-chip--warn {
    border-color: rgba(248, 113, 113, 0.35);
    color: #fca5a5;
    background: rgba(248, 113, 113, 0.08);
}

body.rc-page-services .rc-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

body.rc-page-services .rc-services-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1rem 1.1rem;
    border-radius: 0.875rem;
    border: 1px solid var(--rc-border);
    background: var(--rc-surface);
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

body.rc-page-services .rc-services-row:hover {
    border-color: rgba(131, 130, 255, 0.4);
    background: var(--rc-surface-raised);
    transform: translateY(-1px);
}

body.rc-page-services .rc-services-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.75rem;
    background: rgba(131, 130, 255, 0.12);
    color: var(--rc-accent);
    font-size: 1.05rem;
}

body.rc-page-services .rc-services-row__icon--mc {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
}

body.rc-page-services .rc-services-row__icon--vps {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

body.rc-page-services .rc-services-row__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

body.rc-page-services .rc-services-row__name {
    font-size: 0.98rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--rc-text);
}

body.rc-page-services .rc-services-row__meta {
    font-size: 0.8rem;
    color: var(--rc-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.rc-page-services .rc-services-row__billing {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

body.rc-page-services .rc-services-row__amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rc-text);
    font-variant-numeric: tabular-nums;
}

body.rc-page-services .rc-services-row__due {
    font-size: 0.72rem;
    color: var(--rc-text-muted);
}

body.rc-page-services .rc-services-row__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: var(--rc-text-muted);
    background: var(--rc-surface-raised);
    border: 1px solid var(--rc-border);
}

body.rc-page-services .rc-services-row:hover .rc-services-row__go {
    color: #fff;
    background: var(--rc-accent-strong);
    border-color: transparent;
}

body.rc-page-services .rc-services--v2 .rc-services-empty {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    overflow: visible;
    width: 100%;
}

body.rc-page-services .rc-services--v2 .rc-services-empty__orb {
    display: none;
}

body.rc-page-services .rc-services--v2 .rc-services-empty__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: min(28rem, 55vh);
    padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 1rem;
    border: 1px solid var(--rc-border);
    background:
        radial-gradient(ellipse 80% 70% at 10% 0%, rgba(83, 82, 237, 0.18), transparent 55%),
        var(--rc-surface);
    text-align: center;
}

body.rc-page-services .rc-services--v2 .rc-services-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    background: rgba(131, 130, 255, 0.14);
    color: var(--rc-accent);
    font-size: 1.65rem;
}

body.rc-page-services .rc-services--v2 .rc-services-empty__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rc-text);
}

body.rc-page-services .rc-services--v2 .rc-services-empty__text {
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--rc-text-secondary);
}

body.rc-page-services .rc-services--v2 .rc-services-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

body.rc-page-services .rc-services--v2 .rc-services-empty__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    body.rc-page-services .rc-services-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "icon main go"
            "icon status go"
            "icon billing go";
    }

    body.rc-page-services .rc-services-row__icon { grid-area: icon; }
    body.rc-page-services .rc-services-row__main { grid-area: main; }
    body.rc-page-services .rc-services-row__status { grid-area: status; justify-self: start; }
    body.rc-page-services .rc-services-row__billing { grid-area: billing; text-align: left; }
    body.rc-page-services .rc-services-row__go { grid-area: go; align-self: center; }
}
