:root {
    --primary: #D20D12;
    --primary-dark: #97080C;
    --primary-bright: #EF252B;
    --black: #020B19;
    --dark: #03142D;
    --gray: #061B38;
    --light: #F5F7FA;
    --text-light: #E9EEF5;
    --success: #D20D12;
    --section-scroll-offset: 0px;
}
html, body { height: 100%; min-height: 100%; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Saira",sans-serif;
    overflow-x: hidden;
    background: var(--light);
}
.language-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: .3rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(3,20,45,.92);
    box-shadow: 0 4px 14px rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
}
.language-option {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    min-width: 44px;
    padding: .25rem .42rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,.72);
    font: inherit;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.language-option:hover,
.language-option:focus-visible {
    color: #fff;
    background: rgba(255,255,255,.1);
    outline: none;
    transform: translateY(-1px);
}
.language-option.is-active {
    color: #fff;
    border-color: rgba(239,37,43,.7);
    background: rgba(210,13,18,.28);
}
.language-code { font-size: .68rem; font-weight: 800; letter-spacing: .03em; }
.header-language-row { display: contents; }
.header-language-row .language-selector { order: 3; }
.stripe-wordmark {
    color: #635bff;
    font-size: 2.25rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -.12em;
    line-height: 1;
}
.stripe-checkout-box {
    position: relative;
    min-height: 320px;
    background: #fff !important;
}
.stripe-success-message { color: var(--dark); padding: 2rem 1rem; }
[v-cloak] {
    display: none !important;
}
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility .35s ease;
}
.site-preloader--hidden {
    opacity: 0;
    visibility: hidden;
}
.site-preloader__spinner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 9px solid rgba(210,13,18,.24);
    border-top-color: #d20d12;
    border-right-color: #ef252b;
    box-shadow:
        0 0 0 1px rgba(210,13,18,.16),
        0 0 20px rgba(210,13,18,.7),
        0 0 46px rgba(210,13,18,.45);
    animation: site-preloader-spin .85s linear infinite, site-preloader-glow 1.25s ease-in-out infinite;
}
@keyframes site-preloader-spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes site-preloader-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(210,13,18,.16),
            0 0 18px rgba(210,13,18,.6),
            0 0 40px rgba(210,13,18,.35);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(210,13,18,.22),
            0 0 30px rgba(210,13,18,.92),
            0 0 65px rgba(210,13,18,.58);
    }
}
body > .app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > .app-shell > main[role="main"] {
    flex: 1 1 auto;
    display: block;
    position: relative;
    background: var(--light);
}
body > .app-shell > footer {
    margin-top: 0;
    position: static !important;
    clear: both;
    z-index: auto !important;
    bottom: auto !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
}
.internal-page main[role="main"] {
    color: var(--dark);
}
.internal-page main[role="main"] .text-white,
.internal-page main[role="main"] .text-light-custom,
.internal-page main[role="main"] .text-highlight,
.internal-page main[role="main"] .text-muted,
.internal-page main[role="main"] h1,
.internal-page main[role="main"] h2,
.internal-page main[role="main"] h3,
.internal-page main[role="main"] h4,
.internal-page main[role="main"] h5,
.internal-page main[role="main"] h6,
.internal-page main[role="main"] p,
.internal-page main[role="main"] label,
.internal-page main[role="main"] a:not(.btn) {
    color: var(--dark) !important;
}
.internal-page main[role="main"] .bg-dark-custom {
    background-color: var(--light) !important;
}
.internal-page main[role="main"] .bg-gray,
.internal-page main[role="main"] .bg-light,
.internal-page main[role="main"] .card {
    background-color: #fff !important;
}
.internal-page main[role="main"] .form-control,
.internal-page main[role="main"] .form-select {
    color: var(--dark);
}
.scroll-top-button {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: linear-gradient(135deg, #d20d12, #e31a1f);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.35), 0 0 18px rgba(210,13,18,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}
.scroll-top-button--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-button:hover,
.scroll-top-button:focus {
    color: #fff;
    box-shadow: 0 12px 34px rgba(0,0,0,.42), 0 0 24px rgba(210,13,18,.42);
    outline: none;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.bg-black { background-color: var(--black) !important; }
.bg-dark-custom { background-color: var(--dark) !important; }
.bg-gray { background-color: var(--gray) !important; }
.text-highlight { color: var(--primary) !important; }
.text-light-custom { color: var(--text-light) !important; }
.btn-highlight { background-color: var(--primary); color: #fff; font-weight: 700; border: 1px solid rgba(255,255,255,.18); transition: .3s; }
.btn-highlight:hover, .btn-highlight:active { background-color: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(210,13,18,.3); }
.btn-outline-highlight { border: 2px solid var(--primary); color: var(--primary); font-weight: 600; transition: .3s; }
.btn-outline-highlight:hover { background-color: var(--primary); color: #fff; transform: translateY(-2px); }
.section-title { position: relative; padding-bottom: 15px; margin-bottom: 30px; }
.section-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 80px; height: 4px; background-color: var(--primary); }
.card-custom { background-color: rgba(3,20,45,.95); border: 1px solid #31516e; border-radius: 10px; transition: .3s; height: 100%; position: relative; z-index: 1; overflow: hidden; backdrop-filter: blur(5px); }
.card-custom::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(210,13,18,.05) 0%, transparent 100%); z-index: -1; opacity: 0; transition: opacity .3s; }
.card-custom:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.3); }
.card-custom:hover::before { opacity: 1; }
.feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.hero {
    background:
        linear-gradient(90deg, rgba(2,11,25,.94) 0%, rgba(3,20,45,.78) 38%, rgba(3,20,45,.3) 66%, rgba(2,11,25,.08) 100%),
        url("/assets/bg.png");
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 96px);
    padding: 56px 0;
    display: flex;
    align-items: center;
}
.hero .container { width: 100%; }
.hero-video-col { display: none; }
@media (min-width: 992px) {
    .hero-video-col { display: flex !important; align-items: center; justify-content: center; }
}
.hero-video-frame {
    width: min(100%, 640px);
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 16px #0004;
}
.hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 1.363 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.hero-content {
    max-width: 36rem;
}
.hero .display-3 {
    font-size: clamp(3rem, 5vw, 4.75rem);
    line-height: .95;
    margin-bottom: 1.5rem;
}
.hero .lead {
    max-width: 30rem;
}
@media (max-width: 991.98px) {
    .hero {
        background:
            linear-gradient(90deg, rgba(2,11,25,.9) 0%, rgba(3,20,45,.72) 62%, rgba(2,11,25,.48) 100%),
            url("/assets/bg.png");
    }
}
.floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating { 0% { transform: translateY(0) } 50% { transform: translateY(-10px) } 100% { transform: translateY(0) } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.check-list { list-style: none; }
.check-list li { margin-bottom: 10px; position: relative; padding-left: 30px; color: var(--text-light); }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: bold; }
.accordion-button { background-color: rgba(3,20,45,.95); color: white; font-weight: 600; backdrop-filter: blur(5px); border: 1px solid #31516e; }
.accordion-button:not(.collapsed) { background-color: var(--primary) !important; color: #fff !important; font-weight: 700; box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .25rem rgba(210,13,18,.25); border-color: var(--primary); }
.accordion-button::after { filter: invert(1); }
.accordion-button:not(.collapsed)::after { filter: invert(0); }
.accordion-body { background-color: rgba(3,20,45,.95); color: var(--text-light); backdrop-filter: blur(5px); border: 1px solid #31516e; border-top: none; }
.oquee-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(210,13,18,.16), transparent 32%),
        radial-gradient(circle at 86% 76%, rgba(210,13,18,.12), transparent 28%),
        linear-gradient(180deg, #020b19 0%, #071d3a 100%);
}
.oquee-grid {
    position: relative;
    z-index: 1;
}
.oquee-copy {
    max-width: 34rem;
}
.oquee-kicker {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.03em;
    margin: 0 0 2rem;
    text-transform: uppercase;
}
.oquee-description {
    max-width: 30rem;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f3f3f3;
    margin-bottom: 2rem;
}
.oquee-media-wrap {
    position: relative;
    max-width: 42rem;
    margin-left: auto;
}
.oquee-media-glow {
    position: absolute;
    inset: 8% -2% -2% 8%;
    background: radial-gradient(circle, rgba(210,13,18,.32) 0%, rgba(210,13,18,0) 65%);
    filter: blur(28px);
    opacity: .9;
    pointer-events: none;
}
.oquee-media {
    position: relative;
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(210,13,18,.12);
    filter: contrast(1.1) saturate(1.05);
    transform: scale(1.035);
    transition: transform .7s ease, box-shadow .35s ease, filter .35s ease;
}
.oquee-media-wrap:hover .oquee-media {
    transform: scale(1.055);
    box-shadow: 0 30px 76px rgba(0,0,0,.55), 0 0 32px rgba(210,13,18,.2);
}
.oquee-media-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(120deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,.1) 46%, rgba(255,255,255,0) 62%);
    opacity: .22;
    mix-blend-mode: screen;
    pointer-events: none;
}
.oquee-accordion {
    margin-top: 2.25rem;
}
.oquee-accordion .accordion-item {
    background: transparent;
}
.oquee-accordion .accordion-button {
    background: #071d3a !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px !important;
    min-height: 72px;
    padding: 1.05rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.oquee-accordion .accordion-button:hover {
    transform: translateY(-2px);
    border-color: rgba(210,13,18,.6);
    box-shadow: 0 16px 30px rgba(0,0,0,.26), 0 0 18px rgba(210,13,18,.16);
}
.oquee-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e31a1f 0%, #d20d12 55%, #8f080c 100%) !important;
    color: #fff !important;
    border-color: rgba(210,13,18,.95);
    box-shadow: 0 18px 36px rgba(210,13,18,.18);
}
.oquee-accordion .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.2), 0 16px 30px rgba(0,0,0,.2);
    border-color: rgba(210,13,18,.8);
}
.oquee-accordion .accordion-button::after {
    transition: transform .25s ease, filter .25s ease;
}
.oquee-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(0) invert(1);
}
.oquee-accordion .accordion-body {
    background: rgba(7,29,58,.92);
    border: 1px solid rgba(255,255,255,.08);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 1.15rem 1.25rem 1.3rem;
    line-height: 1.7;
}
.oquee-cta {
    margin-top: 2.5rem;
}
.oquee-cta-copy {
    font-size: 1.05rem;
    color: #f3f3f3;
    letter-spacing: .01em;
}
.btn-kart-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 64px;
    padding: 1rem 2rem;
    border: 1px solid rgba(239,37,43,.42);
    border-radius: 999px;
    background: linear-gradient(135deg, #ef252b 0%, #d20d12 52%, #8f080c 100%);
    box-shadow: 0 18px 40px rgba(210,13,18,.26), inset 0 1px 0 rgba(255,255,255,.18);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-kart-premium:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.01);
    filter: saturate(1.08);
    box-shadow: 0 24px 50px rgba(210,13,18,.38), 0 0 24px rgba(210,13,18,.24);
}
.btn-kart-premium:focus {
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.22), 0 24px 50px rgba(210,13,18,.38);
}
.btn-kart-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 64px;
    padding: 1rem 2rem;
    border: 1px solid rgba(210,13,18,.55);
    border-radius: 5px;
    background: linear-gradient(135deg, #ef252b 0%, #d20d12 52%, #97080c 100%);
    box-shadow: 0 18px 40px rgba(210,13,18,.24), inset 0 1px 0 rgba(255,255,255,.2);
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: none;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-kart-payment:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.01);
    filter: saturate(1.04);
    box-shadow: 0 24px 50px rgba(210,13,18,.34), 0 0 24px rgba(210,13,18,.2);
}
.btn-kart-payment:focus {
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.2), 0 24px 50px rgba(210,13,18,.34);
}
.btn-kart-premium,
.btn-kart-payment,
main[role="main"] .btn-highlight,
.btn-buy-now {
    animation: cta-shadow-inout 1.8s ease-in-out infinite;
}
.btn-kart-premium:disabled,
.btn-kart-payment:disabled,
main[role="main"] .btn-highlight:disabled,
.btn-buy-now:disabled {
    animation: none;
}
@keyframes cta-shadow-inout {
    0%, 100% {
        box-shadow: 0 8px 18px rgba(210,13,18,.2), 0 0 0 rgba(210,13,18,0);
    }
    50% {
        box-shadow: 0 16px 34px rgba(210,13,18,.42), 0 0 24px rgba(239,37,43,.48);
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn-kart-premium,
    .btn-kart-payment,
    main[role="main"] .btn-highlight,
    .btn-buy-now {
        animation: none;
    }
}
.price-tag { font-size: 3rem; font-weight: 800; }
.pricing-card { border: 2px solid var(--primary); border-radius: 15px; overflow: hidden; transition: .3s; background-color: rgba(3,20,45,.95); backdrop-filter: blur(5px); }
.pricing-card:hover { transform: none; box-shadow: none; }
.badge-custom { background-color: var(--primary); color: #fff; font-weight: 700; }
.nav-link { color: white !important; font-weight: 500; transition: color .3s; }
.nav-link:hover { color: var(--primary-dark) !important; }
.nav-link-button {
    background: transparent;
    border: 0;
    padding: .5rem 1rem;
}
footer a:hover { color: var(--primary) !important; }
.header-american,
.footer-american {
    background-color: var(--dark);
    background-image: url("/assets/bgfooter.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.header-american .btn-outline-highlight,
.header-american .btn-highlight {
    background-color: var(--dark);
    color: #fff !important;
    border-color: var(--primary);
}
.header-american .btn-outline-highlight:hover,
.header-american .btn-outline-highlight:focus,
.header-american .btn-outline-highlight:active,
.header-american .btn-highlight:hover,
.header-american .btn-highlight:focus,
.header-american .btn-highlight:active,
.header-american .btn-highlight.show {
    background-color: var(--gray);
    color: #fff !important;
    border-color: var(--primary-bright);
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.22);
}
.header-american .nav-link-button {
    border-radius: 6px;
    transition: background-color .2s ease, color .2s ease;
}
.header-american .nav-link-button:hover,
.header-american .nav-link-button:focus {
    background-color: var(--dark);
    color: #fff !important;
    outline: none;
}
.header-american .navbar-toggler {
    background-color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 7px;
    padding: .385rem .455rem;
}
.header-american .navbar-toggler-icon {
    width: 1.05em;
    height: 1.05em;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: center 22%, center 50%, center 78%;
    background-size: 100% 2px;
}
.header-american .navbar-toggler:hover,
.header-american .navbar-toggler:focus {
    background-color: var(--gray);
    border-color: var(--primary-bright);
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.22);
}
.footer-american .text-highlight,
.footer-american a:hover {
    color: var(--dark) !important;
}
.logo { font-weight: 900; font-size: 1.8rem; }
.testimonial-card { background-color: rgba(3,20,45,.95); border: 1px solid #31516e; border-radius: 10px; transition: .3s; height: 100%; position: relative; z-index: 1; overflow: hidden; backdrop-filter: blur(5px); }
.testimonial-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(210,13,18,.05) 0%, transparent 100%); z-index: -1; opacity: 0; transition: opacity .3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.3); }
.testimonial-card:hover::before { opacity: 1; }
.bg-kart-cross { background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("/assets/bg.png"); background-size: cover; background-position: center; background-attachment: initial; }
@media (max-width:768px) {
    .header-american .container {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        min-height: 0;
    }
    .header-american .header-language-row {
        display: flex;
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: center;
        padding: .35rem 0 .9rem;
    }
    .header-american .header-language-row .language-selector {
        margin: 0 !important;
    }
    .header-american .header-logo-wrap {
        position: static;
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        align-items: center !important;
        transform: none;
    }
    .header-american .header-logo-wrap .navbar-brand {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .header-american .header-logo-wrap img {
        width: 100%;
        max-width: 280px !important;
    }
    .header-american .navbar-toggler {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
        margin-left: 0;
    }
    .header-american .navbar-collapse {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
    }
    .oquee-section {
        padding: 5rem 0;
    }
    .oquee-copy,
    .oquee-description {
        max-width: none;
    }
    .oquee-media-wrap {
        max-width: none;
        margin: 0 auto 1.5rem;
    }
    .oquee-media {
        transform: scale(1.02);
    }
    .oquee-kicker {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        margin-bottom: 1rem;
    }
    .oquee-description {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }
    .oquee-accordion {
        margin-top: 1.75rem;
    }
    .oquee-accordion .accordion-button {
        min-height: 78px;
        padding: 1rem 1rem;
    }
    .oquee-cta {
        margin-top: 2rem;
        text-align: center !important;
    }
    .btn-kart-premium {
        width: 100%;
        border-radius: 18px;
    }
    .hero {
        min-height: auto;
        padding: 48px 0 56px;
        text-align: center;
    }
    .hero-content,
    .hero .lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero .display-3 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .display-3 { font-size: 2.5rem; }
    .price-tag { font-size: 2.5rem; }
    .card-custom, .testimonial-card { margin-bottom: 20px; }
    .navbar-brand { order: 0; margin: 0 auto; }
    .navbar-toggler { order: 1; }
    .navbar .btn-highlight { order: 3; margin-left: auto; }
    .navbar-collapse { order: 4; width: 100%; margin-top: 15px; }
}
.text-success { color: #d20d12 !important; }
.payment-approved-title { color: #198754 !important; }
.bonus-downloads {
    padding: .9rem 1rem;
    border: 1px solid #d8e0e9;
    border-radius: 10px;
    background: #f5f7fa;
}
.bonus-downloads-title {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #657286;
    font-size: .88rem;
    font-weight: 700;
}
.bonus-download-btn {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .8rem;
    border: 1px solid #b8c5d3;
    background: #fff;
    color: #334155;
    font-weight: 600;
}
.bonus-download-btn:hover,
.bonus-download-btn:focus {
    border-color: #718096;
    background: #eaf0f6;
    color: #071d3a;
}
.project-download-block {
    padding-top: .2rem;
}
.project-download-label {
    color: #071d3a;
    font-size: .95rem;
    font-weight: 800;
}
.project-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    width: 100%;
    min-height: 58px;
    padding: .9rem 1.2rem;
    border: 1px solid #ef252b;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef252b, #b8090e);
    box-shadow: 0 10px 24px rgba(210,13,18,.28);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}
.project-download-btn:hover,
.project-download-btn:focus {
    border-color: #ff4b50;
    background: linear-gradient(135deg, #d20d12, #97080c);
    box-shadow: 0 12px 28px rgba(210,13,18,.36);
    color: #fff;
    transform: translateY(-1px);
}
.btn-buy-now { background: linear-gradient(to right,#d20d12,#97080c); border: none; font-weight: bold; padding: 1.2rem 2rem; font-size: 1.3rem; border-radius: 12px; animation: cta-shadow-inout 1.8s ease-in-out infinite; box-shadow: 0 0 20px rgba(210,13,18,.5); transition: .3s; color: white !important; }
.btn-buy-now:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 30px rgba(210,13,18,.7); animation: none; color: white !important; }
.urgency-badge { background: linear-gradient(to right,#ef252b,#97080c); color: white; padding: 8px 16px; border-radius: 20px; font-size: .9rem; font-weight: bold; display: inline-block; animation: pulse 2s infinite; margin: 15px 0; }
.discount-tag { background: var(--primary); color: white; padding: 4px 8px; border-radius: 5px; font-size: .75rem; font-weight: bold; margin-left: 8px; }
@keyframes pulse { 0% { transform: scale(1) } 50% { transform: scale(1.05) } 100% { transform: scale(1) } }
@keyframes pulse-glow { 0% { box-shadow: 0 0 20px rgba(210,13,18,.5); transform: scale(1) } 50% { box-shadow: 0 0 30px rgba(210,13,18,.8); transform: scale(1.02) } 100% { box-shadow: 0 0 20px rgba(210,13,18,.5); transform: scale(1) } }
#comprar, #galeria, #projeto, #beneficios, #perguntas, #depoimentos, #o-que-e { scroll-margin-top: var(--section-scroll-offset); }

/* ============================================================
   SECTION #DEPOIMENTOS — PREMIUM REFACTOR
   ============================================================ */
.depo-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 14% 12%, rgba(210,13,18,.12) 0%, transparent 32%),
        radial-gradient(ellipse at 86% 78%, rgba(210,13,18,.1) 0%, transparent 28%),
        linear-gradient(180deg, #03142d 0%, #061b38 100%);
}
.depo-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 46px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 46px);
    pointer-events: none;
    z-index: 0;
}
.depo-section .container {
    position: relative;
    z-index: 1;
}
.depo-subtitle {
    max-width: 46rem;
    margin: 1rem auto 0;
    color: #cfcfcf;
    font-size: 1.08rem;
    line-height: 1.65;
    letter-spacing: .01em;
}
.depo-cards {
    margin-top: 1.25rem;
}
.depo-card {
    position: relative;
    background: rgba(6,27,56,.9);
    border: 1px solid #163758;
    border-radius: 22px;
    padding: 1.7rem 1.4rem;
    box-shadow: 0 18px 42px rgba(0,0,0,.36);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.depo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.depo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210,13,18,.45);
    box-shadow: 0 26px 56px rgba(0,0,0,.45), 0 0 26px rgba(210,13,18,.14);
}
.depo-head {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}
.depo-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.8);
    box-shadow: 0 0 0 2px rgba(210,13,18,.22), 0 0 18px rgba(210,13,18,.2);
    transition: transform .3s ease, box-shadow .3s ease;
}
.depo-card:hover .depo-avatar {
    transform: scale(1.06);
    box-shadow: 0 0 0 2px rgba(210,13,18,.35), 0 0 24px rgba(210,13,18,.28);
}
.depo-name {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .01em;
}
.depo-stars {
    color: #ef252b;
    font-size: 1rem;
    letter-spacing: .18em;
    text-shadow: 0 0 10px rgba(239,37,43,.36);
}
.depo-text {
    color: #e2e2e2;
    line-height: 1.65;
    font-size: .99rem;
}
.depo-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem 1.3rem;
}
.depo-proof span {
    background: #071d3a;
    border: 1px solid #143455;
    border-radius: 999px;
    color: #f1f1f1;
    padding: .58rem 1rem;
    font-size: .93rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.depo-cta-copy {
    color: #f3f3f3;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

/* ============================================================
   SECTION #GALERIA — PREMIUM REFACTOR
   ============================================================ */
.galeria-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 10% 12%, rgba(210,13,18,.12) 0%, transparent 34%),
        radial-gradient(ellipse at 90% 84%, rgba(210,13,18,.1) 0%, transparent 30%),
        linear-gradient(180deg, #031126 0%, #041630 100%);
}
.galeria-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px);
    pointer-events: none;
    z-index: 0;
}
.galeria-section .container {
    position: relative;
    z-index: 1;
}
.galeria-subtitle {
    max-width: 46rem;
    margin: 1rem auto 0;
    font-size: 1.08rem;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #cfcfcf;
}
.galeria-carousel {
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .galeria-carousel {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
    }
    .galeria-carousel .galeria-item {
        height: clamp(294px, 43.4vw, 483px);
    }
}
.galeria-frame {
    position: relative;
    border-radius: 26px;
    padding: 10px;
    background: linear-gradient(140deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.01) 20%, rgba(210,13,18,.06) 100%);
    box-shadow: 0 26px 60px rgba(0,0,0,.5), 0 0 34px rgba(210,13,18,.14);
}
.galeria-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,.12) 50%, rgba(255,255,255,0) 72%);
    opacity: .2;
}
.galeria-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #020b19;
}
.galeria-carousel .carousel-item {
    transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.galeria-item {
    position: relative;
    height: clamp(420px, 62vw, 690px);
    margin: 0;
}
.galeria-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.58) 100%);
    pointer-events: none;
    z-index: 1;
}
.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.08) brightness(.92);
    transform: scale(1.02);
    transition: transform 1.1s ease, filter .35s ease;
}
.galeria-carousel .carousel-item.active .galeria-img {
    transform: scale(1.045);
}
.galeria-caption {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .75rem;
    align-items: center;
    justify-content: space-between;
    padding: .8rem .95rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(3,20,45,.55);
    backdrop-filter: blur(5px);
    color: #f6f6f6;
}
.galeria-caption strong {
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.galeria-caption span {
    font-size: .82rem;
    color: #d5d5d5;
}
.galeria-carousel .carousel-indicators {
    gap: .45rem;
    margin-bottom: .8rem;
}
.galeria-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(255,255,255,.28);
    opacity: 1;
    transition: all .25s ease;
}
.galeria-carousel .carousel-indicators .active {
    width: 34px;
    border-color: rgba(210,13,18,.95);
    background: linear-gradient(90deg, #ef252b 0%, #d20d12 100%);
    box-shadow: 0 0 14px rgba(210,13,18,.42);
}
.galeria-control {
    width: auto;
    opacity: 1;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.galeria-control.carousel-control-prev {
    left: .95rem;
}
.galeria-control.carousel-control-next {
    right: .95rem;
}
.galeria-control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(3,20,45,.62);
    border: 1px solid rgba(255,255,255,.26);
    color: #fff;
    font-size: 1.16rem;
    box-shadow: 0 12px 26px rgba(0,0,0,.4);
    backdrop-filter: blur(5px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.galeria-control:hover .galeria-control-btn {
    transform: scale(1.06);
    border-color: rgba(210,13,18,.85);
    box-shadow: 0 16px 30px rgba(0,0,0,.5), 0 0 20px rgba(210,13,18,.28);
}
.galeria-cta-copy {
    color: #f3f3f3;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

/* ============================================================
   SECTION #FAQ — PREMIUM REFACTOR
   ============================================================ */
.faq-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 12% 20%, rgba(210,13,18,.12) 0%, transparent 34%),
        radial-gradient(ellipse at 86% 84%, rgba(210,13,18,.1) 0%, transparent 28%),
        linear-gradient(180deg, #031126 0%, #061b38 100%);
}
.faq-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px);
    pointer-events: none;
    z-index: 0;
}
.faq-section .container {
    position: relative;
    z-index: 1;
}
.faq-title {
    text-shadow: 0 0 18px rgba(210,13,18,.18);
}
.faq-subtitle {
    max-width: 40rem;
    margin: .85rem auto 0;
    color: #d2d2d2;
    font-size: 1.07rem;
    line-height: 1.6;
    letter-spacing: .01em;
}
.faq-accordion {
    margin-top: 1.3rem;
}
.faq-accordion .accordion-item {
    background: transparent;
}
.faq-accordion .accordion-button {
    background: #061b38 !important;
    color: #fff !important;
    border: 1px solid #153657;
    border-radius: 16px !important;
    min-height: 72px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 1.05rem 1.2rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.faq-accordion .accordion-button:hover {
    transform: translateY(-2px);
    border-color: rgba(210,13,18,.55);
    box-shadow: 0 16px 34px rgba(0,0,0,.3), 0 0 16px rgba(210,13,18,.14);
}
.faq-accordion .accordion-button::after {
    width: 1.15rem;
    height: 1.15rem;
    background-size: 1.15rem;
    filter: brightness(0) invert(1);
    transition: transform .28s ease, filter .28s ease;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ef252b 0%, #d20d12 55%, #8f080c 100%) !important;
    color: #121212 !important;
    border-color: rgba(210,13,18,.9);
    box-shadow: 0 16px 34px rgba(0,0,0,.34), 0 0 18px rgba(210,13,18,.24);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.22), 0 16px 34px rgba(0,0,0,.3);
    border-color: rgba(210,13,18,.75);
}
.faq-accordion .accordion-body {
    background: rgba(6,27,56,.95);
    color: #dedede;
    border: 1px solid #183a5c;
    border-top: none;
    border-radius: 0 0 16px 16px;
    line-height: 1.68;
    padding: 1.1rem 1.2rem 1.25rem;
}
.faq-cta {
    margin-top: 2.5rem;
}
.faq-cta-copy {
    color: #f1f1f1;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

/* ============================================================
   SECTION #CHECKOUT — PREMIUM REFACTOR
   ============================================================ */
.checkout-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 12% 12%, rgba(210,13,18,.14) 0%, transparent 34%),
        radial-gradient(ellipse at 84% 84%, rgba(210,13,18,.1) 0%, transparent 30%),
        linear-gradient(180deg, #020d20 0%, #061b38 100%);
}
.checkout-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 48px);
    pointer-events: none;
}
.checkout-section .container {
    position: relative;
    z-index: 1;
}
.checkout-subtitle {
    max-width: 44rem;
    margin: 0 auto 2.2rem;
    color: #d0d0d0;
    font-size: 1.08rem;
    line-height: 1.65;
}
.checkout-card {
    position: relative;
    background: #061b38;
    border: 1px solid #173859;
    border-radius: 24px;
    box-shadow: none;
    overflow: hidden;
}
.checkout-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 38%);
    pointer-events: none;
}
.checkout-card-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 900;
    letter-spacing: .01em;
    margin-bottom: 1.2rem;
}
.checkout-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    text-align: left;
}
.checkout-image-wrap {
    position: relative;
    border-radius: 20px;
    display: block;
}
.checkout-image-glow {
    position: absolute;
    inset: 12% -8% -6% 12%;
    background: radial-gradient(circle, rgba(210,13,18,.3) 0%, rgba(210,13,18,0) 66%);
    filter: blur(24px);
    pointer-events: none;
}
.checkout-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(210,13,18,.16);
    filter: contrast(1.1) saturate(1.06);
    transform: none;
}
.checkout-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .65rem;
    text-align: left;
}
.checkout-list li {
    color: #e4e4e4;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 1.7rem;
    position: relative;
}
.checkout-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
    filter: drop-shadow(0 0 6px rgba(210,13,18,.4));
}
.checkout-price-box {
    background: #020d20;
    border: 1px solid rgba(210,13,18,.35);
    border-radius: 18px;
    padding: 1.2rem 1rem;
    box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 0 18px rgba(210,13,18,.12);
}
.checkout-price-note {
    display: block;
    color: #f7c5c7;
    font-size: .82rem;
    margin-bottom: .45rem;
}
.checkout-price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    margin-bottom: .25rem;
}
.checkout-old-price {
    color: #a3a3a3;
    text-decoration: line-through;
    font-weight: 700;
    font-size: .95rem;
}
.checkout-promo-badge {
    background: linear-gradient(135deg, #ef252b 0%, #d20d12 100%);
    color: #fff;
    border-radius: 999px;
    padding: .2rem .65rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .05em;
}
.checkout-main-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, #dfff00 0%, #a8ff00 55%, #72d900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(168,255,0,.32));
}
.checkout-main-price-international {
    background: linear-gradient(135deg, #dfff00 0%, #a8ff00 55%, #72d900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(168,255,0,.32));
}
.checkout-installments {
    margin-top: .3rem;
    color: #ddd;
    font-weight: 600;
}
.checkout-form-box {
    background: #E6E6E6;
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    color: #151515;
    box-shadow: none;
    padding: 0 !important;
    position: relative;
}
.checkout-local-preloader {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(1px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1c1c1c;
    font-weight: 700;
}
.checkout-form-inner {
    background: #fff;
    margin: 10px;
    border-radius: 16px;
    padding: .75rem;
}
.checkout-form-box .form-label,
.checkout-form-box .text-white,
.checkout-form-box .text-light-custom,
.checkout-form-box .checkout-microcopy,
.checkout-form-box .checkout-proof span,
.checkout-form-box .checkout-guarantee {
    color: #1c1c1c !important;
}

.mp-card-issuer-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
}

.checkout-form-box .nav-tabs {
    border-bottom: 1px solid #d4dbe6;
    flex-wrap: nowrap;
}

.checkout-form-box .nav-tabs .nav-link {
    margin-bottom: -1px;
    color: #b8bec8 !important;
    font-size: .8rem;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    white-space: nowrap;
}

.checkout-form-box .nav-tabs .nav-link:hover,
.checkout-form-box .nav-tabs .nav-link:focus {
    color: #d20d12 !important;
    background-color: #fff;
    border-color: #d4dbe6 #d4dbe6 #d4dbe6;
    isolation: isolate;
}

.checkout-form-box .nav-tabs .nav-item.show .nav-link,
.checkout-form-box .nav-tabs .nav-link.active {
    color: #d20d12 !important;
    background-color: #fff;
    border-color: #d4dbe6 #d4dbe6 #fff;
}

.checkout-section .form-control,
.checkout-section .form-select {
    background: #f8f8f8;
    border: 1px solid #d8d8d8;
    color: #171717;
    border-radius: 12px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    line-height: 1.3;
}
.checkout-section .form-control::placeholder {
    color: #8b8b8b;
}
.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
    border-color: rgba(210,13,18,.75);
    box-shadow: 0 0 0 .2rem rgba(210,13,18,.16), 0 0 14px rgba(210,13,18,.1);
    background: #fff;
    color: #171717;
}
.checkout-section .form-control.is-invalid,
.checkout-section .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff;
}
.checkout-section .form-control.is-invalid:focus,
.checkout-section .form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.checkout-section .invalid-feedback {
    color: #dc3545;
    font-size: .875em;
    margin-top: .25rem;
}
.checkout-current-price {
    color: #f38b8e !important;
}
.checkout-payment-brand {
    padding-bottom: .5rem;
}
.checkout-payment-brand-logo {
    max-width: 180px;
    filter: saturate(1.02) contrast(1.02);
}
.checkout-microcopy {
    color: #d8d8d8;
    font-size: .93rem;
}
.checkout-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem .75rem;
    margin-bottom: .15rem;
}
.checkout-proof span {
    background: #071d3a;
    border: 1px solid #143455;
    border-radius: 999px;
    color: #ececec;
    padding: .38rem .72rem;
    font-size: .8rem;
}
.checkout-guarantee {
    color: #f2f2f2;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
}
.checkout-guarantee i {
    color: var(--primary);
    margin-right: .35rem;
    filter: drop-shadow(0 0 6px rgba(210,13,18,.36));
}
.checkout-post-proof {
    padding-top: .25rem;
}
.checkout-post-proof .checkout-proof span {
    background: #071d3a;
    border: 1px solid #183a5c;
    color: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0,0,0,.26);
}
.checkout-post-proof .checkout-guarantee {
    color: #f5f5f5;
}
.checkout-post-proof .checkout-guarantee i {
    color: var(--primary);
}

/* ============================================================
   SECTION #BENEFICIOS — PREMIUM REFACTOR
   ============================================================ */
.benef-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 95% 10%, rgba(210,13,18,.12) 0%, transparent 34%),
        radial-gradient(ellipse at 5%  85%, rgba(210,13,18,.10) 0%, transparent 28%),
        linear-gradient(180deg, #061b38 0%, #03142d 100%);
}
.benef-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,  rgba(255,255,255,.018) 0px, rgba(255,255,255,.018) 1px, transparent 1px, transparent 44px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0px, rgba(255,255,255,.018) 1px, transparent 1px, transparent 44px);
    pointer-events: none;
    z-index: 0;
}
.benef-section .container { position: relative; z-index: 1; }
/* Subtítulo --*/
.benef-subtitle {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--primary);
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}
.benef-desc {
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 2rem;
}
/* Imagem --*/
.benef-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}
.benef-img-glow {
    position: absolute;
    inset: 12% -4% -4% 12%;
    background: radial-gradient(circle, rgba(210,13,18,.28) 0%, rgba(210,13,18,0) 65%);
    filter: blur(26px);
    opacity: .85;
    pointer-events: none;
}
.benef-img {
    position: relative;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(210,13,18,.1);
    filter: contrast(1.1) saturate(1.06);
    transform: scale(1.03);
    transition: transform .6s ease;
}
.benef-img-wrap:hover .benef-img { transform: scale(1.055); }
/* Lista --*/
.benef-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.benef-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}
.benef-check {
    flex: 0 0 auto;
    margin-top: .15rem;
    color: var(--primary);
    font-size: .9rem;
    filter: drop-shadow(0 0 4px rgba(210,13,18,.45));
}
/* Card comparativo --*/
.benef-compare-card {
    position: relative;
    background: #061b38;
    border: 1px solid #143455;
    border-radius: 22px;
    padding: 2rem 1.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(210,13,18,.07);
}
.benef-compare-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.035) 0%, transparent 40%);
    border-radius: inherit;
    pointer-events: none;
}
.benef-compare-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 110px;
    background: radial-gradient(ellipse, rgba(210,13,18,.2) 0%, transparent 70%);
    filter: blur(22px);
    pointer-events: none;
}
.benef-compare-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.6rem;
}
/* Barras --*/
.benef-bar-item {
    margin-bottom: 1.35rem;
}
.benef-bar-item:last-of-type { margin-bottom: 0; }
.benef-bar-label {
    font-size: .9rem;
    color: #999;
    font-weight: 600;
}
.benef-bar-label--highlight {
    color: var(--primary) !important;
    font-weight: 800;
    letter-spacing: .02em;
}
.benef-bar-value {
    font-size: .85rem;
    color: #777;
    font-weight: 600;
}
.benef-bar-value--highlight {
    color: var(--primary) !important;
    font-weight: 800;
}
.benef-bar-track {
    height: 10px;
    background: #0a2647;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.4);
}
.benef-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width .9s cubic-bezier(.22,1,.36,1);
}
.benef-bar-danger  { background: linear-gradient(90deg, #555 0%, #244563 100%); }
.benef-bar-warning { background: linear-gradient(90deg, #6b2735 0%, #481927 100%); }
.benef-bar-primary { background: linear-gradient(90deg, #ef252b 0%, #d20d12 100%); box-shadow: 0 0 12px rgba(210,13,18,.4); }
.benef-bar-featured .benef-bar-track {
    border: 1px solid rgba(210,13,18,.3);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.4), 0 0 8px rgba(210,13,18,.1);
}
/* Destaque de economia --*/
.benef-saving {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #102e50;
    gap: .15rem;
}
.benef-saving-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: #888;
    text-transform: uppercase;
}
.benef-saving-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #f36a6e 0%, #d20d12 50%, #8f080c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(210,13,18,.35));
}
/* CTA --*/
.benef-cta-copy {
    font-size: 1.08rem;
    color: #f3f3f3;
    letter-spacing: .01em;
    margin-bottom: 1.25rem;
}
/* Mobile --*/
@media (max-width: 768px) {
    .checkout-section {
        padding: 5rem 0;
    }
    .checkout-subtitle {
        font-size: 1rem;
        max-width: none;
        margin-bottom: 1.7rem;
    }
    .checkout-card {
        padding: 1.3rem !important;
        border-radius: 18px;
    }
    .checkout-card-title {
        font-size: 1.35rem;
    }
    .checkout-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .checkout-image {
        width: 100%;
    }
    .checkout-main-price {
        font-size: 2.2rem;
    }
    .checkout-section .btn-kart-premium {
        width: 100%;
        border-radius: 18px;
    }
    .checkout-proof span {
        width: 100%;
    }
    .faq-section {
        padding: 5rem 0;
    }
    .faq-subtitle {
        font-size: 1rem;
        max-width: none;
    }
    .faq-accordion .accordion-button {
        min-height: 82px;
        padding: 1rem;
        font-size: .98rem;
    }
    .faq-accordion .accordion-body {
        padding: 1rem;
        font-size: .96rem;
    }
    .faq-section .btn-kart-premium {
        width: 100%;
        border-radius: 18px;
    }
    .galeria-section {
        padding: 5rem 0;
    }
    .galeria-subtitle {
        font-size: 1rem;
        max-width: none;
    }
    .galeria-frame {
        border-radius: 18px;
        padding: 6px;
    }
    .galeria-inner {
        border-radius: 14px;
    }
    .galeria-item {
        height: clamp(280px, 70vw, 420px);
    }
    .galeria-caption {
        left: .7rem;
        right: .7rem;
        bottom: .7rem;
        padding: .65rem .7rem;
    }
    .galeria-caption strong {
        font-size: .8rem;
    }
    .galeria-caption span {
        font-size: .72rem;
    }
    .galeria-control.carousel-control-prev {
        left: .45rem;
    }
    .galeria-control.carousel-control-next {
        right: .45rem;
    }
    .galeria-control-btn {
        width: 42px;
        height: 42px;
        font-size: .95rem;
    }
    .galeria-section .btn-kart-premium {
        width: 100%;
        border-radius: 18px;
    }
    .depo-section {
        padding: 5rem 0;
    }
    .depo-subtitle {
        font-size: 1rem;
        max-width: none;
    }
    .depo-card {
        padding: 1.5rem 1.15rem;
        border-radius: 18px;
    }
    .depo-avatar {
        width: 82px;
        height: 82px;
    }
    .depo-text {
        font-size: .95rem;
        line-height: 1.6;
    }
    .depo-proof {
        gap: .6rem;
    }
    .depo-proof span {
        width: 100%;
    }
    .benef-section { padding: 5rem 0; }
    .benef-desc { max-width: none; }
    .benef-subtitle { font-size: clamp(1.5rem, 7vw, 2rem); }
    .benef-saving-number { font-size: 3.5rem; }
}

/* ============================================================
   SECTION #PROJETO — PREMIUM REFACTOR
   ============================================================ */
.projeto-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 8% 30%, rgba(210,13,18,.13) 0%, transparent 36%),
        radial-gradient(ellipse at 90% 70%, rgba(210,13,18,.10) 0%, transparent 32%),
        linear-gradient(180deg, #03142d 0%, #061b38 100%);
}
.projeto-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0px, rgba(255,255,255,.022) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0px, rgba(255,255,255,.022) 1px, transparent 1px, transparent 40px);
    pointer-events: none;
    z-index: 0;
}
.projeto-section .container {
    position: relative;
    z-index: 1;
}
.projeto-subtitle {
    max-width: 38rem;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #bbb;
    letter-spacing: .01em;
}
/* Cards */
.projeto-card {
    position: relative;
    background: #061b38;
    border: 1px solid #102e50;
    border-radius: 22px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}
.projeto-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 40%);
    border-radius: inherit;
    pointer-events: none;
}
.projeto-card-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 120px;
    background: radial-gradient(ellipse, rgba(210,13,18,.22) 0%, rgba(210,13,18,0) 70%);
    filter: blur(18px);
    opacity: 0;
    transition: opacity .35s ease, bottom .35s ease;
    pointer-events: none;
    border-radius: 50%;
}
.projeto-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(210,13,18,.45);
    box-shadow: 0 24px 50px rgba(0,0,0,.45), 0 0 28px rgba(210,13,18,.12);
}
.projeto-card:hover .projeto-card-glow {
    opacity: 1;
    bottom: -20px;
}
/* Ícones */
.projeto-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    border: 1px solid rgba(210,13,18,.35);
    background: rgba(210,13,18,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.projeto-card:hover .projeto-icon-wrap {
    background: rgba(210,13,18,.14);
    border-color: rgba(210,13,18,.7);
    box-shadow: 0 0 22px rgba(210,13,18,.22);
}
.projeto-icon {
    font-size: 1.85rem;
    color: var(--primary);
    transition: transform .3s ease;
}
.projeto-card:hover .projeto-icon {
    transform: scale(1.12);
}
/* Títulos */
.projeto-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: .9rem;
    line-height: 1.3;
    text-transform: uppercase;
}
/* Texto */
.projeto-card-text {
    font-size: .97rem;
    line-height: 1.65;
    color: #999;
    margin-bottom: 0;
}
/* CTA */
.projeto-cta-copy {
    font-size: 1.1rem;
    color: #f3f3f3;
    letter-spacing: .01em;
    margin-bottom: 1.25rem;
}
/* Mobile */
@media (max-width: 768px) {
    .projeto-section {
        padding: 5rem 0;
    }
    .projeto-subtitle {
        font-size: 1rem;
        max-width: none;
    }
    .projeto-card {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }
    .btn-kart-premium {
        width: 100%;
        border-radius: 18px;
    }
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
}

.avatar-option {
    border: 2px solid transparent;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 4px;
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease;
}

.avatar-option:hover {
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.avatar-option.active {
    border-color: var(--primary);
}

.avatar-option img {
    width: 100%;
    height: 100%;
    display: block;
}

.modal-backdrop {
    z-index: 1050 !important;
}

#avatarModal {
    z-index: 1060 !important;
}
