.env-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: var(--site-max-width);
    margin: 0 auto 12px;
    padding: 6px 18px;
    background: rgba(var(--bg-surface-alt-rgb, 23, 23, 23), .6);
    border: 1px solid rgba(var(--overlay-rgb, 255, 255, 255), .06);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted, #a8a29e);
}

.env-status-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.env-status-sep {
    color: rgba(168, 162, 158, .35);
}

.env-status-item--ok {
    color: #93b69c;
}

.env-status-item--warn {
    color: var(--brand-primary, #eab308);
}

.developer-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb, 234, 179, 8), .14), rgba(var(--bg-surface-alt-rgb, 23, 23, 23), .6));
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .2);
    border-radius: 10px;
}

.developer-toolbar form {
    display: contents;
}

.index-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb, 234, 179, 8), .14), rgba(var(--bg-surface-alt-rgb, 23, 23, 23), .6));
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .2);
    border-radius: 10px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: var(--text-muted, #a8a29e);
    font-size: 1.15rem;
    font-family: inherit;
    line-height: 1;
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: color .18s ease;
}

.icon-btn:hover {
    color: var(--brand-primary, #eab308);
}

/* Compact icon-only action pair (edit/remove) for admin list rows —
   Slideshow/Promoções/Serviços em Destaque/Parceiros — replacing a text
   "Editar"/"Remover" link pair with two small buttons side by side. */
.row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: var(--text-muted, #a8a29e);
    font-size: .85rem;
    font-family: inherit;
    background: rgba(var(--overlay-rgb, 255, 255, 255), .06);
    border: 1px solid rgba(var(--overlay-rgb, 255, 255, 255), .12);
    border-radius: 8px;
    cursor: pointer;
    transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.row-action-btn:hover,
.row-action-btn[aria-expanded="true"] {
    color: var(--brand-primary, #eab308);
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .1);
    border-color: rgba(var(--brand-primary-rgb, 234, 179, 8), .4);
}

.row-action-btn--danger:hover {
    color: #d97878;
    background: rgba(217, 120, 120, .12);
    border-color: rgba(217, 120, 120, .4);
}

.row-action-btn:focus-visible {
    outline: 3px solid var(--text-heading-accent, #fef3c7);
    outline-offset: 2px;
}

.row-edit-panel td {
    padding-top: 6px;
}

.navbar-avatar-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .35);
    transition: border-color .18s ease;
}

.navbar-avatar-btn:hover {
    border-color: var(--brand-primary, #eab308);
}

.navbar-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-icon-wrap {
    position: relative;
}

.navbar-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    background: var(--brand-primary, #eab308);
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 700;
    line-height: 1;
}

.navbar-siagse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    color: var(--text-meta-accent, #d6b75d);
    background: var(--bg-surface, #1a1a1a);
    border: 1px solid rgba(214, 183, 93, .48);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease;
}

.navbar-siagse-btn i {
    font-size: .9rem;
}

.navbar-siagse-btn:hover {
    color: var(--text-heading-accent, #fef3c7);
    border-color: var(--brand-primary, #eab308);
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    padding: 6px;
    background: var(--bg-surface, #1a1a1a);
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .3);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    z-index: 30;
}

.navbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--text-body, #d6d3d1);
    font-size: .85rem;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color .15s ease, color .15s ease;
}

.navbar-dropdown-item:hover {
    color: var(--text-heading-accent, #fef3c7);
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .12);
}

.navbar-notifications-menu {
    width: max-content;
    min-width: 280px;
    max-width: min(360px, calc(100vw - 32px));
    max-height: 420px;
    overflow-y: auto;
}

.navbar-notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 10px 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .15);
}

.navbar-notifications-header span {
    color: var(--text-heading-accent, #fef3c7);
    font-size: .82rem;
    font-weight: 700;
}

.navbar-notifications-mark-all {
    padding: 0;
    color: var(--text-meta-accent, #d6b75d);
    font-size: .72rem;
    font-weight: 600;
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .15s ease;
}

.navbar-notifications-mark-all:hover {
    color: var(--brand-primary, #eab308);
}

.navbar-notification-form {
    display: block;
}

.navbar-notification-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    width: 100%;
    font-family: inherit;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-notification-item--unread {
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .1);
}

.navbar-notification-title {
    color: var(--text-heading-accent, #fef3c7);
    font-size: .82rem;
    font-weight: 700;
}

.navbar-notification-body {
    color: var(--text-body, #d6d3d1);
    font-size: .78rem;
    line-height: 1.4;
    /* Recent-notification previews stay short by design — clamp instead of
       letting a long body wrap the dropdown open indefinitely. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navbar-notification-time {
    color: var(--text-faint, #78716c);
    font-size: .68rem;
}

.navbar-notifications-view-all {
    justify-content: center;
    margin-top: 4px;
    color: var(--text-meta-accent, #d6b75d);
    font-size: .78rem;
    font-weight: 600;
    border-top: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .15);
    border-radius: 0;
}

.product-links-dropdown {
    display: inline-block;
}

.product-links-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-links-dropdown .navbar-dropdown-menu {
    left: 0;
    right: auto;
    min-width: 220px;
}

.per-page-filter {
    display: inline-block;
}

.per-page-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.per-page-filter .navbar-dropdown-menu {
    left: 0;
    right: auto;
    min-width: 160px;
}

.per-page-filter-label {
    display: block;
    padding: 6px 12px 4px;
    color: var(--text-faint, #78716c);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.per-page-filter-check {
    width: 12px;
    color: var(--brand-primary, #eab308);
}

.navbar-dropdown-item--active {
    color: var(--text-heading-accent, #fef3c7);
    font-weight: 700;
}

.product-showcase-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.product-showcase-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--brand-primary, #eab308);
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .12);
    border-radius: 14px;
    font-size: 1.4rem;
}

.product-showcase-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-showcase-title {
    margin: 0;
    color: var(--text-heading-accent, #fef3c7);
    font-size: 1.4rem;
    letter-spacing: -.01em;
}

.product-showcase-pitch {
    max-width: 760px;
    margin: 0 0 8px;
    font-size: .92rem;
    line-height: 1.75;
    text-align: justify;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-bottom: 8px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(var(--overlay-rgb, 255, 255, 255), .02);
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .18);
    border-radius: 10px;
    color: var(--text-body, #d6d3d1);
    font-size: .86rem;
}

.product-feature-item i {
    color: var(--brand-primary, #eab308);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 4px;
}

.pricing-card {
    padding: 20px;
    background: rgba(var(--overlay-rgb, 255, 255, 255), .02);
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .2);
    border-radius: 14px;
}

.pricing-card--partner {
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .05);
    border-color: rgba(var(--brand-primary-rgb, 234, 179, 8), .4);
}

.pricing-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-card-title {
    margin: 0;
    color: var(--text-heading-accent, #fef3c7);
    font-size: .95rem;
}

.pricing-card-badge {
    flex-shrink: 0;
    padding: 3px 10px;
    font-size: .7rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .12);
}

.pricing-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-row-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pricing-row-name {
    color: var(--text-heading, #fafaf9);
    font-size: .86rem;
    font-weight: 700;
}

.pricing-row-tag {
    margin-left: 6px;
    padding: 1px 7px;
    color: var(--text-meta-accent, #d6b75d);
    font-size: .66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .1);
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .25);
    border-radius: 999px;
}

.pricing-row-desc {
    color: var(--text-muted, #a8a29e);
    font-size: .76rem;
    line-height: 1.4;
}

.pricing-row-price {
    flex-shrink: 0;
    color: var(--brand-primary, #eab308);
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 0;
    color: var(--text-muted, #a8a29e);
    font-size: .78rem;
    line-height: 1.5;
}

.pricing-note i {
    margin-top: 2px;
    color: var(--text-meta-accent, #d6b75d);
}

.marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 24px;
    padding: 12px 0;
    background: rgba(var(--brand-primary-rgb, 234, 179, 8), .08);
    border: 1px solid rgba(var(--brand-primary-rgb, 234, 179, 8), .25);
    border-radius: 10px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-content {
    padding: 0 48px;
    color: var(--text-heading-accent, #fef3c7);
    font-weight: 600;
    font-size: .92rem;
    white-space: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

.icon-btn:focus-visible {
    outline: 3px solid var(--text-heading-accent, #fef3c7);
    outline-offset: 3px;
}
