@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-site: #F5F8FF;
    --surface: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #667085;
    --brand-primary: #2563EB;
    --brand-primary-hover: #1D4ED8;
    --tag-bg: #EEF4FF;
    --tag-text: #334155;
    color-scheme: light;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    background-color: var(--bg-site);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-topbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
    padding: 8px 10px 10px;
    background: transparent;
}

.app-topbar-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    min-height: 42px;
    padding: 6px 8px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 7px;
    background: var(--surface);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.brand-logo--mini {
    width: 26px;
    height: 26px;
    border-radius: 7px;
}

.brand-logo--line {
    height: 21px;
    max-width: 165px;
}

.brand-fallback {
    display: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.brand-fallback--visible {
    display: inline-block;
}

.menu-dots-btn {
    min-width: 58px;
    height: 31px;
    padding: 0 10px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 7px;
    background: var(--surface);
    color: var(--text-primary);
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 700;
}

.menu-dots-text {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.2px;
}

.menu-dots-btn:hover {
    background: #f8fbff;
    border-color: rgba(37, 99, 235, 0.48);
    color: var(--text-primary);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    background: rgba(15, 23, 42, 0.42);
}

.menu-overlay.is-open {
    display: block;
}

.menu-card {
    position: fixed;
    top: 62px;
    right: 12px;
    z-index: 1310;
    width: auto;
    min-width: 190px;
    max-width: 280px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 7px;
    background: var(--surface);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
    display: none;
}

.menu-card.is-open {
    display: block;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.menu-list a:hover {
    background: #f8fbff;
    color: var(--text-primary);
}

.menu-list a.menu-link-cta {
    background: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
    font-weight: 700;
}

.menu-list a.menu-link-cta:hover {
    background: var(--brand-primary-hover);
    color: #fff;
    border-color: var(--brand-primary-hover);
}

@media (max-width: 520px) {
    .app-topbar {
        padding: 7px 8px 9px;
    }

    .app-topbar-inner {
        min-height: 40px;
        padding: 5px 7px;
    }

    .brand-logo--line {
        height: 19px;
        max-width: 145px;
    }

    .menu-card {
        top: 56px;
        right: 8px;
    }
}

.app-footer {
    width: 100%;
    padding: 14px 10px 22px;
    background: var(--bg-site);
}

.app-footer-help {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 10px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 10px;
    background: #f8fbff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.app-footer-help-link {
    display: block;
    position: relative;
    padding-right: 44px;
    text-decoration: none;
    
    transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.app-footer-help-link:hover {
    background: #f4f9ff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
    transform: translateY(-1px);
}

.app-footer-help-kicker {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.14);
    color: #166534;
    font-size: 11px;
    font-weight: 700;
}

.app-footer-help h3 {
    margin: 0;
    font-size: 17px;
    color: #052e16;
    letter-spacing: -0.1px;
}

.app-footer-help p {
    margin: 6px 0 0;
    max-width: 560px;
    color: #14532d;
    font-size: 13px;
    line-height: 1.5;
}

.app-footer-help-action {
    margin-top: 8px;
    color: #166534;
    font-weight: 600;
}

.app-footer-help-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(22, 101, 59, 0.62);
    font-size: 12px;
    pointer-events: none;
}

.app-footer-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 11px;
    padding: 9px 14px;
    border: 1px solid #9bd9b4;
    border-radius: 8px;
    background: #eefcf3;
    color: #13653b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.app-footer-help-btn:hover {
    background: #e2f7ea;
    border-color: #84cfa3;
}

.app-footer-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 7px;
    background: var(--surface);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
    display: grid;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 12px;
}

.app-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.app-footer-brand-wrap {
    min-width: 0;
}

.app-footer-brand {
    display: block;
    font-size: 14px;
    letter-spacing: -0.2px;
    font-weight: 700;
    color: var(--text-primary);
}

.app-footer-tagline {
    margin-top: 2px;
    color: var(--text-secondary);
    font-size: 12px;
}

.app-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.app-footer-links a {
    padding: 6px 10px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 7px;
    background: #fff;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.app-footer-links a:hover {
    border-color: rgba(37, 99, 235, 0.34);
    color: var(--brand-primary);
    background: var(--surface);
}

.app-footer-links a.app-footer-link-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--surface);
}

.app-footer-links a.app-footer-link-primary:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: var(--surface);
}

.app-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
    padding-top: 2px;
    color: var(--text-secondary);
    font-size: 11px;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 11px;
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
}

.price-badge i {
    font-size: 11px;
}

.price-note-link {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
}

.price-note-link:hover {
    text-decoration: underline;
}

.payment-duration-note {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.toast-stack {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.toast-item {
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.96);
    color: #fff;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    width: fit-content;
    max-width: min(92vw, 420px);
    white-space: normal;
    word-break: break-word;
    opacity: 0;
    transform: scale(0.94);
    transform-origin: center center;
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.toast-item.show {
    opacity: 1;
    transform: scale(1);
}

.toast-item.hide {
    opacity: 0;
    transform: scale(0.96);
}

@media (max-width: 520px) {
    .toast-stack {
        top: 64px;
    }
}

@media (max-width: 520px) {
    .app-footer {
        padding: 10px 8px 16px;
    }

    .app-footer-help {
        padding: 12px;
        margin-bottom: 8px;
    }

    .app-footer-help h3 {
        font-size: 16px;
    }

    .app-footer-help p {
        font-size: 12px;
    }

    .app-footer-help-btn {
        margin-top: 10px;
    }

    .app-footer-inner {
        padding: 12px;
        gap: 10px;
    }

    .app-footer-top {
        gap: 4px;
    }

    .app-footer-links {
        gap: 7px;
    }

    .app-footer-links a {
        padding: 6px 9px;
    }

    .app-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Garante que imagens não quebrem o layout */
img {
    max-width: 100%;
    display: block;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-site: #0d1117;
        --surface: #161b22;
        --text-primary: #e6edf3;
        --text-secondary: #9aa4b2;
        --brand-primary: #58a6ff;
        --brand-primary-hover: #4493f8;
        --tag-bg: #21262d;
        --tag-text: #c9d1d9;
        color-scheme: dark;
    }

    .app-topbar-inner,
    .menu-card,
    .app-footer-inner {
        border-color: var(--surface);
        box-shadow: 0 8px 20px rgba(3, 8, 18, 0.45);
    }

    .menu-dots-btn,
    .menu-list a,
    .app-footer-links a {
        border-color: #21262d;
        background: #21262d;
        color: var(--text-primary);
    }

    .menu-dots-btn:hover,
    .menu-list a:hover,
    .app-footer-links a:hover {
        background: #2a313c;
        border-color: #2a313c;
        color: #f3f4f6;
    }

    .menu-list a.menu-link-cta {
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        color: #fff;
    }

    .menu-list a.menu-link-cta:hover {
        background: var(--brand-primary-hover);
        border-color: var(--brand-primary-hover);
        color: #fff;
    }

    .app-footer-links a.app-footer-link-primary {
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        color: #fff;
    }

    .app-footer-links a.app-footer-link-primary:hover {
        background: var(--brand-primary-hover);
        border-color: var(--brand-primary-hover);
        color: #fff;
    }

    .menu-overlay {
        background: rgba(2, 6, 12, 0.8);
    }

    .price-badge {
        border-color: #21262d;
        background: #21262d;
        color: #9bc3ff;
    }

    :root:not([data-theme="light"]) .toast-item {
        background: rgba(246, 248, 250, 0.98);
        color: #0f172a;
    }
}

.menu-theme-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px 4px 2px;
}

.menu-theme-btn {
    min-height: 48px;
    padding: 6px 8px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 9px;
    background: var(--surface);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    
    transition: all 0.2s ease;
}

.menu-theme-btn-label {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.menu-theme-btn i {
    font-size: 13px;
}

.menu-theme-btn:hover {
    background: #f8fbff;
    border-color: rgba(37, 99, 235, 0.4);
}

.menu-theme-btn.is-active {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.08);
}

:root[data-theme="light"] {
    --bg-site: #F5F8FF;
    --surface: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #667085;
    --brand-primary: #2563EB;
    --brand-primary-hover: #1D4ED8;
    --tag-bg: #EEF4FF;
    --tag-text: #334155;
    color-scheme: light;
}

:root[data-theme="dark"] {
    --bg-site: #0d1117;
    --surface: #161b22;
    --text-primary: #e6edf3;
    --text-secondary: #9aa4b2;
    --brand-primary: #58a6ff;
    --brand-primary-hover: #4493f8;
    --tag-bg: #21262d;
    --tag-text: #c9d1d9;
    color-scheme: dark;
}

:root[data-theme="dark"] .app-topbar-inner,
:root[data-theme="dark"] .menu-card,
:root[data-theme="dark"] .app-footer-inner,
:root[data-theme="dark"] .app-footer-help,
:root[data-theme="dark"] .landing-hero,
:root[data-theme="dark"] .pricing-card,
:root[data-theme="dark"] .feature-item,
:root[data-theme="dark"] .faq-box,
:root[data-theme="dark"] .card-secao,
:root[data-theme="dark"] .perfil-header,
:root[data-theme="dark"] .share-modal,
:root[data-theme="dark"] .gallery-modal,
:root[data-theme="dark"] .report-modal,
:root[data-theme="dark"] .profile-card,
:root[data-theme="dark"] .empty-box {
    border-color: var(--surface);
}

:root[data-theme="dark"] .card-secao:hover {
    border-color: var(--surface);
}

:root[data-theme="dark"] .menu-dots-btn,
:root[data-theme="dark"] .menu-list a,
:root[data-theme="dark"] .app-footer-links a,
:root[data-theme="dark"] .menu-theme-btn,
:root[data-theme="dark"] .search-form input,
:root[data-theme="dark"] .profile-pill,
:root[data-theme="dark"] .pagination a,
:root[data-theme="dark"] .pagination span,
:root[data-theme="dark"] .create-cta-actions .btn-plan-link,
:root[data-theme="dark"] .info-quicknav a,
:root[data-theme="dark"] #pix-code,
:root[data-theme="dark"] .coupon-option,
:root[data-theme="dark"] .coupon-field-wrap input,
:root[data-theme="dark"] .key-line code,
:root[data-theme="dark"] .btn-secondary,
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .upload-area,
:root[data-theme="dark"] .item-certificado-adicionado,
:root[data-theme="dark"] .check-item,
:root[data-theme="dark"] .preview-item,
:root[data-theme="dark"] .key-modal,
:root[data-theme="dark"] .loading-box,
:root[data-theme="dark"] .key-token,
:root[data-theme="dark"] .cta-texto-preview,
:root[data-theme="dark"] .cta-phrase-option,
:root[data-theme="dark"] .btn-remover-cert,
:root[data-theme="dark"] .btn-adc-cert,
:root[data-theme="dark"] .card input,
:root[data-theme="dark"] .card select,
:root[data-theme="dark"] .select-time,
:root[data-theme="dark"] .btn-content,
:root[data-theme="dark"] .tag,
:root[data-theme="dark"] .item-certificado,
:root[data-theme="dark"] .item-pagamento,
:root[data-theme="dark"] .item-endereco-fixo,
:root[data-theme="dark"] .cta-texto,
:root[data-theme="dark"] .btn-secundario,
:root[data-theme="dark"] .share-close,
:root[data-theme="dark"] .gallery-close,
:root[data-theme="dark"] .gallery-nav,
:root[data-theme="dark"] .report-close,
:root[data-theme="dark"] .share-qr-wrap,
:root[data-theme="dark"] .gallery-image-wrap img,
:root[data-theme="dark"] .report-input,
:root[data-theme="dark"] .share-btn-green,
:root[data-theme="dark"] .price-badge {
    background: #21262d;
    border-color: #21262d;
    color: var(--text-primary);
}

:root[data-theme="dark"] .app-footer-help {
    background: #17212d;
    border-color: #2d3a4b;
    box-shadow: 0 8px 18px rgba(3, 8, 18, 0.42);
}

:root[data-theme="dark"] .app-footer-help-link:hover {
    background: #1c2a39;
    box-shadow: 0 10px 20px rgba(3, 8, 18, 0.52);
}

:root[data-theme="dark"] .app-footer-help-kicker {
    background: rgba(148, 163, 184, 0.18);
    color: #d6deea;
}

:root[data-theme="dark"] .app-footer-help h3 {
    color: #e6edf3;
}

:root[data-theme="dark"] .app-footer-help p {
    color: #b8c3d5;
}

:root[data-theme="dark"] .app-footer-help-action {
    color: #c2e0ff;
}

:root[data-theme="dark"] .app-footer-help-arrow {
    color: rgba(194, 224, 255, 0.75);
}

:root[data-theme="dark"] .profile-avatar {
    background: #21262d;
}

:root[data-theme="dark"] .share-overlay {
    background: rgba(2, 6, 12, 0.8);
}

:root[data-theme="dark"] .gallery-overlay {
    background: rgba(2, 6, 12, 0.8);
    backdrop-filter: blur(1px);
}

:root[data-theme="dark"] .report-overlay {
    background: rgba(2, 6, 12, 0.8);
}

:root[data-theme="dark"] .menu-overlay {
    background: rgba(2, 6, 12, 0.8);
}

:root[data-theme="dark"] .toast-item {
    background: rgba(246, 248, 250, 0.98);
    color: #0f172a;
}

:root[data-theme="dark"] .menu-dots-btn:hover,
:root[data-theme="dark"] .menu-list a:hover,
:root[data-theme="dark"] .app-footer-links a:hover,
:root[data-theme="dark"] .menu-theme-btn:hover,
:root[data-theme="dark"] .profile-card:hover,
:root[data-theme="dark"] .create-cta-actions .btn-plan-link:hover,
:root[data-theme="dark"] .pagination a:hover,
:root[data-theme="dark"] .info-quicknav a:hover,
:root[data-theme="dark"] .upload-area:hover,
:root[data-theme="dark"] .check-item:hover,
:root[data-theme="dark"] .btn-remover-cert:hover,
:root[data-theme="dark"] .btn-adc-cert:hover,
:root[data-theme="dark"] .cta-phrase-option:hover,
:root[data-theme="dark"] .tag:hover,
:root[data-theme="dark"] .btn-secundario:hover,
:root[data-theme="dark"] .gallery-close:hover,
:root[data-theme="dark"] .gallery-nav:hover,
:root[data-theme="dark"] .share-btn-green:hover {
    background: #2a313c;
    border-color: #2a313c;
}

:root[data-theme="dark"] .btn-option input:checked + .btn-content {
    background: #2a313c;
    border-color: #2a313c;
    color: #eef2f7;
}

:root[data-theme="dark"] .search-form input::placeholder,
:root[data-theme="dark"] .card input::placeholder,
:root[data-theme="dark"] .coupon-field-wrap input::placeholder {
    color: #8ea4c2;
}

:root[data-theme="dark"] .menu-list a.menu-link-cta {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

:root[data-theme="dark"] .menu-list a.menu-link-cta:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

:root[data-theme="dark"] .app-footer-links a.app-footer-link-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

:root[data-theme="dark"] .app-footer-links a.app-footer-link-primary:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

:root[data-theme="light"] .menu-dots-btn,
:root[data-theme="light"] .menu-list a,
:root[data-theme="light"] .app-footer-links a,
:root[data-theme="light"] .menu-theme-btn,
:root[data-theme="light"] .search-form input,
:root[data-theme="light"] .profile-pill,
:root[data-theme="light"] .pagination a,
:root[data-theme="light"] .pagination span,
:root[data-theme="light"] .create-cta-actions .btn-plan-link,
:root[data-theme="light"] .info-quicknav a,
:root[data-theme="light"] #pix-code,
:root[data-theme="light"] .coupon-option,
:root[data-theme="light"] .coupon-field-wrap input,
:root[data-theme="light"] .key-line code,
:root[data-theme="light"] .btn-secondary,
:root[data-theme="light"] .card,
:root[data-theme="light"] .upload-area,
:root[data-theme="light"] .item-certificado-adicionado,
:root[data-theme="light"] .check-item,
:root[data-theme="light"] .preview-item,
:root[data-theme="light"] .key-modal,
:root[data-theme="light"] .loading-box,
:root[data-theme="light"] .key-token,
:root[data-theme="light"] .cta-texto-preview,
:root[data-theme="light"] .cta-phrase-option,
:root[data-theme="light"] .btn-remover-cert,
:root[data-theme="light"] .btn-adc-cert,
:root[data-theme="light"] .card input,
:root[data-theme="light"] .card select,
:root[data-theme="light"] .select-time,
:root[data-theme="light"] .btn-content,
:root[data-theme="light"] .tag,
:root[data-theme="light"] .item-certificado,
:root[data-theme="light"] .item-pagamento,
:root[data-theme="light"] .item-endereco-fixo,
:root[data-theme="light"] .cta-texto,
:root[data-theme="light"] .btn-secundario,
:root[data-theme="light"] .share-close,
:root[data-theme="light"] .gallery-close,
:root[data-theme="light"] .gallery-nav,
:root[data-theme="light"] .report-close,
:root[data-theme="light"] .share-qr-wrap,
:root[data-theme="light"] .gallery-image-wrap img,
:root[data-theme="light"] .report-input,
:root[data-theme="light"] .share-btn-green,
:root[data-theme="light"] .price-badge {
    background: var(--surface);
    border-color: rgba(148, 163, 184, 0.24);
    color: var(--text-primary);
}

:root[data-theme="light"] .app-footer-help {
    border-color: rgba(148, 163, 184, 0.28);
}

:root[data-theme="light"] .menu-dots-btn:hover,
:root[data-theme="light"] .menu-list a:hover,
:root[data-theme="light"] .app-footer-links a:hover,
:root[data-theme="light"] .menu-theme-btn:hover {
    background: #f8fbff;
    border-color: rgba(37, 99, 235, 0.38);
}

:root[data-theme="light"] .menu-list a.menu-link-cta {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

:root[data-theme="light"] .menu-list a.menu-link-cta:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

:root[data-theme="light"] .app-footer-links a.app-footer-link-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

:root[data-theme="light"] .app-footer-links a.app-footer-link-primary:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

:root[data-theme="light"] .app-topbar-inner,
:root[data-theme="light"] .app-footer-inner {
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}

:root[data-theme="light"] .perfil-header {
    border-color: rgba(148, 163, 184, 0.24);
    background: var(--surface);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

:root[data-theme="light"] .menu-overlay {
    background: rgba(15, 23, 42, 0.46);
}

:root[data-theme="light"] .share-overlay {
    background: rgba(15, 23, 42, 0.5);
}

:root[data-theme="light"] .gallery-overlay {
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(2px);
}

:root[data-theme="light"] .report-overlay {
    background: rgba(15, 23, 42, 0.58);
}
