:root {
    --brand-orange: #e8720c;
    --brand-purple: #8b5cf6;
    --brand-emerald: #10b981;
    --brand-blue: #3b82f6;
    --brand-amber: #f59e0b;
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.08);
    --shadow-elevated: 0 30px 80px rgba(15, 23, 42, 0.12);
    --hero-bg: radial-gradient(circle at top, rgba(139, 92, 246, 0.45), transparent 40%), linear-gradient(135deg, #101828 0%, #111827 45%, #1f2937 100%);
}

[data-bs-theme='dark'] {
    --hero-bg: radial-gradient(circle at top, rgba(232, 114, 12, 0.3), transparent 35%), linear-gradient(135deg, #020617 0%, #111827 55%, #172554 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-glass {
    backdrop-filter: blur(14px);
}

.theme-toggle {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-floating {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
}

.brand-logo {
    height: 32px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
    background: var(--hero-bg);
}

.hero-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
}

.hero-blob-1 {
    top: 10%;
    right: 25%;
    background: var(--brand-purple);
}

.hero-blob-2 {
    left: 20%;
    bottom: 5%;
    background: var(--brand-orange);
}

.tag-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tag-brand-purple {
    background: rgba(139, 92, 246, 0.18);
    color: #f5f3ff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.content-narrow {
    max-width: 600px;
}

.content-narrow-sm {
    max-width: 500px;
}

.legal-content {
    font-size: 0.98rem;
    line-height: 1.75;
}

.legal-content h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.product-block {
    margin-bottom: 1rem;
}

.product-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.product-feature-card {
    height: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
}

.status-badge {
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}

.bg-orange-10,
.bg-brand-orange-10 {
    background: rgba(232, 114, 12, 0.1);
}

.bg-purple-10 {
    background: rgba(139, 92, 246, 0.1);
}

.bg-emerald-10 {
    background: rgba(16, 185, 129, 0.1);
}

.bg-blue-10 {
    background: rgba(59, 130, 246, 0.1);
}

.bg-amber-10 {
    background: rgba(245, 158, 11, 0.1);
}

.text-orange,
.text-brand-orange {
    color: var(--brand-orange) !important;
}

.text-purple,
.text-brand-purple {
    color: var(--brand-purple) !important;
}

.text-emerald {
    color: var(--brand-emerald) !important;
}

.text-blue {
    color: var(--brand-blue) !important;
}

.text-amber {
    color: var(--brand-amber) !important;
}

.status-orange {
    background: rgba(232, 114, 12, 0.9);
}

.status-purple {
    background: rgba(139, 92, 246, 0.9);
}

.status-emerald {
    background: rgba(16, 185, 129, 0.9);
}

.status-blue {
    background: rgba(59, 130, 246, 0.9);
}

.status-amber {
    background: rgba(245, 158, 11, 0.9);
}

.btn-gradient {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple));
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #fff;
    background: linear-gradient(135deg, #d96500, #7c3aed);
}

.badge-aprovado,
.badge-em_analise,
.badge-novo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.45rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.1;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.badge-aprovado {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
}

.badge-em_analise {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.2);
}

.badge-novo {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.2);
}

.badge-pendente {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.2);
}

.badge-recusado {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.2);
}

[data-bs-theme='dark'] .badge-aprovado {
    color: #6ee7b7;
}

[data-bs-theme='dark'] .badge-em_analise {
    color: #fcd34d;
}

[data-bs-theme='dark'] .badge-novo {
    color: #93c5fd;
}

[data-bs-theme='dark'] .badge-pendente {
    color: #fcd34d;
}

[data-bs-theme='dark'] .badge-recusado {
    color: #fca5a5;
}

.btn-outline-brand {
    border-width: 1px;
}

.btn-orange {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.btn-purple {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.btn-emerald {
    border-color: var(--brand-emerald);
    color: var(--brand-emerald);
}

.btn-blue {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-amber {
    border-color: var(--brand-amber);
    color: var(--brand-amber);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-elevated {
    box-shadow: var(--shadow-elevated);
}

.cta-card {
    max-width: 720px;
}

.success-icon-wrap {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 114, 12, 0.1);
}

@media (max-width: 991.98px) {
    .product-block-reverse {
        flex-direction: column;
    }
}
