:root {
    --primary: #E65A15;
    --primary-hover: #CC4E10;
    --primary-light: #F58634;
    --primary-subtle: #FFF7ED;
    --primary-gradient: linear-gradient(135deg, #E65A15 0%, #F58634 100%);
    --accent: #26C884;
    --accent-subtle: #E8F8F0;
    --dark: #0F172A;
    --dark-muted: #1E293B;
    --text: #334155;
    --text-muted: #64748B;
    --bg-page: #FFFFFF;
    --bg-soft: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(230, 90, 21, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background-color: var(--bg-page);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(230, 90, 21, 0.2);
}

.brand-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-title span {
    color: var(--primary);
}

.brand-by {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(230, 90, 21, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 90, 21, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-subtle);
}

.btn-dark {
    background: var(--dark);
    color: #ffffff;
}

.btn-dark:hover {
    background: var(--dark-muted);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 70px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(245, 134, 52, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(38, 200, 132, 0.06) 0%, transparent 45%),
                #FFFFFF;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--primary-subtle);
    border: 1px solid rgba(230, 90, 21, 0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.badge-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.store-badge svg {
    width: 28px;
    height: 28px;
}

.store-badge-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-badge-main {
    font-size: 16px;
    font-weight: 700;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--accent);
}

/* HERO MOCKUP */
.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 310px;
    height: 640px;
    background: #000000;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(230, 90, 21, 0.22),
                0 15px 35px rgba(0, 0, 0, 0.12),
                inset 0 0 0 2px #334155;
    position: relative;
    border: 4px solid #1E293B;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: #ffffff;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite alternate;
}

.card-top {
    top: 60px;
    left: -40px;
}

.card-bottom {
    bottom: 80px;
    right: -30px;
    animation-delay: 2s;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.floating-icon.orange {
    background: var(--primary-subtle);
}

.floating-icon.green {
    background: var(--accent-subtle);
}

.floating-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.floating-desc {
    font-size: 12px;
    color: var(--text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* SECTION HEADERS */
.section {
    padding: 90px 0;
}

.section-soft {
    background-color: var(--bg-soft);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PROBLEMA VS SOLUCAO */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.compare-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.compare-bad {
    background: #FFF1F2;
    border: 1px solid #FFE4E6;
}

.compare-good {
    background: #FFFFFF;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.compare-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.compare-bad .compare-icon { background: #FFE4E6; }
.compare-good .compare-icon { background: var(--primary-subtle); }

.compare-title {
    font-size: 20px;
    font-weight: 800;
}

.compare-bad .compare-title { color: #BE123C; }
.compare-good .compare-title { color: var(--primary); }

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text);
}

.compare-bad li svg { color: #E11D48; min-width: 20px; margin-top: 2px; }
.compare-good li svg { color: var(--accent); min-width: 20px; margin-top: 2px; }

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 90, 21, 0.3);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* APP SHOWCASE GALLERY */
.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.gallery-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(230, 90, 21, 0.16);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.price-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.pricing-features svg {
    color: var(--accent);
    min-width: 18px;
}

/* FAQ ACCORDION */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary);
}

/* BANNER FINAL CTA */
.cta-banner {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(230, 90, 21, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner-desc {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: #94A3B8;
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .brand-title {
    color: #ffffff;
}

.footer-desc {
    margin: 16px 0 24px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .trust-row { justify-content: center; }
    .hero-mockup-wrapper { margin-top: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .gallery-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 36px; }
    .compare-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .gallery-row { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================================================
   PIX BANCO INTER & CHECKOUT MODAL STYLES
   ========================================================================== */
.pricing-pix-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-pix-price {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1px dashed #cbd5e1;
    text-align: left;
}

.pricing-pix-price-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-pix-price-val {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 2px;
}

.pricing-pix-price-val small {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-pix {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.btn-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.pricing-or-store {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

.pricing-or-store a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* MODAL OVERLAY */
#pix-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pix-modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    animation: modalScaleIn 0.25s ease-out;
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.pix-modal-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 24px;
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pix-modal-header-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px;
}

.pix-modal-header-text p {
    font-size: 13px;
    color: #d1fae5;
    margin: 0;
}

.pix-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pix-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.pix-modal-body {
    padding: 28px;
    max-height: 80vh;
    overflow-y: auto;
}

.pix-step {
    display: none;
}

.pix-step.active {
    display: block;
}

.pix-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.pix-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pix-summary-row.total {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    border-top: 1px dashed #cbd5e1;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0;
}

.pix-summary-discount {
    color: #059669;
    font-weight: 700;
}

.pix-feedback-box {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 18px;
    display: none;
}

.pix-feedback-box.found {
    display: block;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.pix-feedback-box.new-user {
    display: block;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.pix-qrcode-wrapper {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 20px;
}

.pix-qrcode-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    background: #fff;
    padding: 8px;
}

.pix-status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #d97706;
    margin-top: 12px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulseAnim 1.5s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pix-copia-cola-box {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.pix-copia-cola-input {
    flex: 1;
    font-family: monospace;
    font-size: 12px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    color: #334155;
    outline: none;
}

.btn-copy {
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: #0f172a;
}

.pix-success-wrap {
    text-align: center;
    padding: 20px 10px;
}

.pix-success-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.pix-success-title {
    font-size: 22px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 8px;
}

.pix-success-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- CHECKOUT PIX: MODERN FORM INPUTS, ACTIVE PLAN CARD & VOUCHER STYLES --- */

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-field-group {
    margin-bottom: 18px;
    position: relative;
}

.modern-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.modern-field-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    display: inline-block;
    flex-shrink: 0;
}

.label-dot.green {
    background: #10b981;
}

.modern-field-badge {
    font-size: 11px;
    font-weight: 700;
    color: #047857;
    background: #d1fae5;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #a7f3d0;
}

.coupon-tag-hint {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 4px;
}

/* BOOTSTRAP 5 INPUT GROUP CONTAINERS */
.modern-input-wrapper,
.coupon-input-box {
    display: flex !important;
    align-items: stretch !important;
    position: relative !important;
    width: 100% !important;
    height: 48px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.modern-input-wrapper:hover,
.coupon-input-box:hover {
    border-color: #94a3b8 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.modern-input-wrapper:focus-within {
    border-color: #059669 !important;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.18) !important;
}

.coupon-input-box:focus-within {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18) !important;
}

/* BOOTSTRAP 5 input-group-text (ADDONS) */
.modern-input-icon,
.coupon-ticket-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border-right: 1.5px solid #e2e8f0 !important;
    padding: 0 14px !important;
    color: #475569 !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.modern-input-wrapper:focus-within .modern-input-icon {
    background: #ecfdf5 !important;
    color: #059669 !important;
    border-right-color: #a7f3d0 !important;
}

.coupon-input-box:focus-within .coupon-ticket-icon {
    background: #eff6ff !important;
    color: #2563eb !important;
    border-right-color: #bfdbfe !important;
}

/* BOOTSTRAP 5 form-control (INPUT FIELDS) */
.modern-input {
    flex: 1 1 auto !important;
    height: 100% !important;
    border: none !important;
    background: #ffffff !important;
    padding: 0 14px !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    outline: none !important;
    font-family: inherit !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.modern-input::placeholder {
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

.modern-input-status {
    padding-right: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
}

/* COUPON INPUT & DOCKED BUTTON */
.coupon-input {
    flex: 1 1 auto !important;
    height: 100% !important;
    border: none !important;
    background: #ffffff !important;
    padding: 0 14px !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #1e293b !important;
    outline: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.coupon-input::placeholder {
    font-family: inherit !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
}

.btn-coupon-apply {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-left: 1.5px solid #e2e8f0 !important;
    padding: 0 20px !important;
    height: 100% !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.btn-coupon-apply:hover {
    background: #1e293b !important;
    color: #ffffff !important;
}

.btn-coupon-apply:active {
    background: #020617 !important;
}

.coupon-input-box:focus-within .btn-coupon-apply {
    border-left-color: #bfdbfe !important;
}

/* HINT TEXT */
.modern-field-hint {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    color: #64748b !important;
    margin-top: 6px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

.modern-field-hint svg {
    flex-shrink: 0 !important;
    color: #94a3b8 !important;
}

/* CARD DE PLANO VIGENTE / DETECTADO */
.pix-active-plan-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f7fee7 100%) !important;
    border: 1.5px solid #86efac !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08) !important;
    animation: modalSlideIn 0.3s ease !important;
}

.active-plan-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.active-plan-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #065f46 !important;
    background: #d1fae5 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    border: 1px solid #a7f3d0 !important;
}

.active-plan-status-pill {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #059669 !important;
    background: #ffffff !important;
    border: 1px solid #10b981 !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
}

.active-plan-title {
    font-size: 16.5px !important;
    font-weight: 800 !important;
    color: #064e3b !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.active-plan-dates-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid #a7f3d0 !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    margin-bottom: 12px !important;
}

.date-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.date-label {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.date-value {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.date-value.highlight {
    color: #059669 !important;
}

.cumulative-extension-box {
    background: #ffffff !important;
    border: 1.5px dashed #059669 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
}

.cumulative-header {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12.5px !important;
    color: #047857 !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
}

.cumulative-text {
    font-size: 12px !important;
    color: #334155 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.new-date-tag {
    background: #dcfce7 !important;
    color: #166534 !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    border: 1px solid #86efac !important;
}

/* CARD DE CUPOM APLICADO */
.coupon-applied-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #f0fdf4 !important;
    border: 1.5px solid #86efac !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    margin-top: 10px !important;
    animation: modalSlideIn 0.2s ease !important;
}

.coupon-applied-info {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.coupon-applied-badge {
    font-family: ui-monospace, monospace !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #15803d !important;
    letter-spacing: 0.5px !important;
}

.coupon-applied-value {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #166534 !important;
    background: #dcfce7 !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    border: 1px solid #bbf7d0 !important;
}

.btn-remove-coupon {
    background: rgba(239, 68, 68, 0.1) !important;
    border: none !important;
    color: #dc2626 !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
}

.btn-remove-coupon:hover {
    background: #dc2626 !important;
    color: #ffffff !important;
}

.coupon-feedback-msg {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    animation: modalSlideIn 0.2s ease !important;
}


