:root {
    --gold: #6e3d94;
    --gold-soft: #b993e8;
    --accent: #8a4ec4;
    --gold-rgb: 110, 61, 148;
    --accent-rgb: 138, 78, 196;
    --bg: #050509;
    --bg-soft: #0d0d16;
    --bg-card: #11111d;
    --border-soft: rgba(var(--gold-rgb), 0.25);
    --text: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #181826 0, #050509 55%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, var(--gold-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Luxo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.4s;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(5, 5, 10, 0.98);
}

.navbar-brand img {
    height: 58px;
}

.nav-link {
    color: #f9fafb !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-inline: 0.9rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--gold-soft) !important;
}

.nav-link:hover::after {
    width: 70%;
}

.desktop-nav .nav-link {
    padding-inline: 0.75rem;
}

.mobile-offcanvas {
    width: 320px;
    background: #0f0f18;
    color: var(--text);
    border-right: 1px solid var(--border-soft);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 12000;
}
.mobile-offcanvas-header {
    padding: 1rem 1.2rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.45);
}
.balance-card-mobile {
    margin: 0 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    border-radius: 14px;
    padding: 1rem 1.1rem;
    color: #fdf5ff;
    box-shadow: 0 14px 35px rgba(var(--gold-rgb), 0.5);
}
.balance-card-mobile .label {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.balance-card-mobile .value {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
}
.mobile-offcanvas .offcanvas-body {
    padding: 1rem 1.2rem 1.4rem;
}
.mobile-offcanvas .menu-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #cbd5f5;
    margin-bottom: 0.5rem;
}
.sidebar-menu {
    display: grid;
    gap: 0.4rem;
}
.menu-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.65rem;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.menu-link:hover {
    background: rgba(var(--gold-rgb), 0.08);
    border-color: rgba(var(--gold-rgb), 0.25);
    color: #ffffff;
}
.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.18);
    color: var(--gold-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.chevron {
    color: #cbd5f5;
}
.mobile-offcanvas .btn-cta {
    width: 100%;
    text-align: center;
}
.mobile-offcanvas .btn-close-white {
    filter: drop-shadow(0 0 6px rgba(var(--gold-rgb), 0.6));
}

.desktop-nav .nav-link {
    padding-inline: 0.75rem;
}

.mobile-offcanvas {
    background: radial-gradient(circle at 20% 20%, rgba(var(--gold-rgb), 0.08), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(var(--accent-rgb), 0.06), transparent 55%),
        #0b0b16;
    color: var(--text);
    border-left: 1px solid var(--border-soft);
}
.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--border-soft);
}
.mobile-offcanvas .nav-link {
    color: var(--text);
    font-weight: 600;
    padding: 0.75rem 0.4rem;
    border-radius: 10px;
}
.mobile-offcanvas .nav-link:hover {
    background: rgba(var(--gold-rgb), 0.1);
    color: var(--gold-soft);
}
.mobile-offcanvas .btn-cta {
    width: 100%;
    text-align: center;
}
.mobile-offcanvas .btn-close-white {
    filter: drop-shadow(0 0 6px rgba(var(--gold-rgb), 0.6));
}

.btn-cta {
    background: var(--gold);
    color: #f8f9fa;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.98rem;
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.35);
    border: 1px solid #ffffff5e;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(var(--gold-rgb), 0.5);
    color: #ffffff;
    border: 1px solid #ffffff79;
    background-color: #5cb14b;
}

/* Hero Luxo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--gold-rgb), 0.18), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-rgb), 0.15), transparent 60%);
    opacity: 0.9;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #25d366;
    background: rgba(17, 16, 24, 0.9);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFFFFF;
}

.hero-badge i {
    color: #ffc107;
}

.hero h1 span {
    color: var(--gold-soft);
}

.hero p.lead {
    color: #cbd5f5;
}

/* WhatsApp highlight */
.whatsapp-highlight {
    background: radial-gradient(circle at left, rgba(37, 211, 102, 0.18), transparent 65%);
    border-left: 4px solid #25d366;
    padding: 1.6rem 1.4rem;
    border-radius: 0 16px 16px 0;
    margin-top: 1.6rem;
}

.whatsapp-highlight h4 {
    background: none;
    -webkit-text-fill-color: #f9fafb;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Selos de confiança */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    background: rgba(17, 17, 28, 0.65);
    color: #f9fafb;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.trust-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Números */
.stats-section {
    background: radial-gradient(circle at top, #17172a 0, transparent 60%);
    padding-block: 3.5rem;
}

.stat-box {
    background: rgba(17, 17, 28, 0.9);
    border-radius: 18px;
    padding: 1.7rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
}

.stat-box h2 {
    background: none;
    -webkit-text-fill-color: var(--gold);
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
}

.stat-box p {
    margin: 0;
    color: #cbd5f5;
}

/* Cards Profissionais */
.feature-card {
    background: var(--bg-card);
    border-radius: 22px;
    padding: 2.3rem 2rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
    height: 100%;
    transition: all 0.45s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.32), transparent 60%);
    top: -40px;
    right: -20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(var(--gold-rgb), 0.35);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    background: none;
    -webkit-text-fill-color: #f9fafb;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: #cbd5f5;
}

/* Seção "Como funciona na prática" */
.section-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* Depoimentos */
.testimonial-card {
    background: rgba(15, 15, 26, 0.95);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--gold);
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    background-color: var(--gold);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.55;
}

.testimonial-carousel .carousel-indicators .active {
    opacity: 1;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 8%;
}

/* Comissão */
.commission-box {
    background: radial-gradient(circle at top left, rgba(var(--gold-rgb), 0.2), transparent 55%),
        radial-gradient(circle at bottom right, rgba(var(--accent-rgb), 0.18), transparent 55%),
        linear-gradient(135deg, #050509, #141322);
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(var(--gold-rgb), 0.55);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.95),
        0 0 55px rgba(var(--gold-rgb), 0.4);
}

.commission-box h2 {
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.commission-box .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border:1px solid #25d366;
    font-size: 0.85rem;
    color: #e5e7eb;
    margin-bottom: 1.2rem;
    background: rgba(17, 17, 28, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.commission-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.8rem;
    align-items: center;
}

.commission-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commission-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.85rem;
    color: #e5e7eb;
}

.commission-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(17, 17, 28, 0.45);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.commission-list i {
    color: var(--gold);
    margin-top: 0.15rem;
}

.commission-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.8rem;
}

.commission-cta .note {
    color: #cbd5f5;
    font-size: 0.9rem;
    opacity: 0.9;
}

.commission-stats {
    background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.22), rgba(var(--gold-rgb), 0.22));
    border: 1px solid rgba(var(--gold-rgb), 0.4);
    border-radius: 18px;
    padding: 1.3rem 1.2rem;
    display: grid;
    gap: 0.9rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.commission-stats::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.2), transparent 60%);
    top: -60px;
    right: -40px;
    opacity: 0.8;
}

.stat-card {
    position: relative;
    background: rgba(5, 5, 9, 0.55);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d1d5db;
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-soft);
    line-height: 1.1;
}

.stat-card small {
    color: #e5e7eb;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .commission-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
#faq {
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.15), transparent 60%);
}

.accordion-item {
    background: rgba(12, 12, 22, 0.65);
    border: 1px solid var(--border-soft);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.accordion-button {
    background: linear-gradient(90deg, rgba(17, 17, 28, 0.9), rgba(17, 17, 28, 0.55));
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text);
    font-weight: 600;
    padding: 1rem 1.2rem;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    line-height: 1.4;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.12), rgba(var(--accent-rgb), 0.1));
    color: var(--gold-soft) !important;
    -webkit-text-fill-color: var(--gold-soft);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: inset 0 1px 0 rgba(var(--gold-rgb), 0.3);
}

.accordion-body {
    background: #050509;
    color: #e5e7eb;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--gold-rgb), 0.25);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: drop-shadow(0 0 6px rgba(var(--gold-rgb), 0.9));
}

/* CTA Final */
.cta-final {
    background: radial-gradient(circle at center, rgba(var(--gold-rgb), 0.25), rgba(5, 5, 9, 1));
}

/* Footer */
footer {
    background: #000;
}

footer p {
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 130px;
        text-align: center;
    }

    .whatsapp-highlight {
        border-radius: 16px;
        border-left-width: 0;
        border-top: 3px solid #25d366;
    }
}
