:root {
    --bg-main: #07090e;
    --bg-subtle: #0d111a;
    --bg-card: #111726;
    --bg-card-hover: #172033;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(59, 130, 246, 0.35);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-accent: #60a5fa;
    --purple-accent: #64748b;
    --purple-light: #94a3b8;
    --blue-deep: #1d4ed8;
    --purple-deep: #475569;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 45%, #94a3b8 70%, #64748b 100%);
    --blue-gradient: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    --purple-gradient: linear-gradient(135deg, #3b82f6 0%, #64748b 100%);
    --green-accent: #3b82f6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 9, 14, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-btn-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.nav-btn-highlight:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.6);
}

.nav-link-muted {
    font-size: 13px;
    color: #64748b !important;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

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

/* SELETOR INTERNACIONAL DE IDIOMAS */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-code {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #111726;
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 12px;
    padding: 6px;
    min-width: 175px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.15);
    display: none;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
}

.lang-dropdown.show {
    display: flex;
    animation: dropdownFade 0.2s ease;
}

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

.lang-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: #e2e8f0;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s;
    width: 100%;
}

.lang-opt:hover {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
}

.lang-opt .opt-flag {
    font-size: 16px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 110px 0 170px;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: 
        linear-gradient(180deg, 
            rgba(7, 9, 14, 0.72) 0%, 
            rgba(7, 9, 14, 0.35) 28%, 
            rgba(7, 9, 14, 0.28) 60%, 
            rgba(7, 9, 14, 0.82) 86%, 
            #07090e 100%
        ),
        radial-gradient(ellipse at 50% 40%, 
            rgba(7, 9, 14, 0.45) 0%, 
            transparent 75%
        ),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 30px 20px;
    background: radial-gradient(ellipse at center, rgba(7, 9, 14, 0.78) 0%, rgba(7, 9, 14, 0.45) 55%, transparent 80%);
    border-radius: 28px;
}

.hero-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 420px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: 9999px;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
    color: #ffffff;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.95));
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 45%, #94a3b8 70%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.9));
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #f1f5f9;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* DOWNLOAD CARD & BUTTONS */
.download-card {
    background: rgba(17, 23, 38, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px 32px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 99, 235, 0.1);
    text-align: left;
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.download-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.downloads-counter-badge {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.2);
}

.download-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.dl-btn {
    display: flex;
    flex-direction: column;
    background: #0f1523;
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 18px 18px 20px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.dl-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.dl-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
}

.dl-card-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

/* Botão Windows */
.dl-btn-windows {
    border-color: rgba(59, 130, 246, 0.3);
}
.dl-btn-windows:hover {
    border-color: #3b82f6;
    background: #141c30;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}
.dl-btn-windows .dl-btn-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

/* Botão Android */
.dl-btn-android {
    border-color: rgba(59, 130, 246, 0.3);
}
.dl-btn-android:hover {
    border-color: #3b82f6;
    background: #102126;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}
.dl-btn-android .dl-btn-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

/* Botão Pacote Completo (Amarelo Dourado Escuro) */
.dl-btn-bundle {
    border-color: rgba(37, 99, 235, 0.3);
}
.dl-btn-bundle:hover {
    border-color: #3b82f6;
    background: #0f1426;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}
.dl-btn-bundle .dl-btn-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.dl-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.dl-btn-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.dl-btn-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 700;
}

.dl-btn-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    word-break: break-word;
    line-height: 1.35;
}

.dl-btn-meta {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    word-break: break-word;
}

.dl-badge {
    position: static;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.dl-badge-green {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.35);
}

.dl-badge-gold,
.dl-badge-purple,
.dl-badge-orange {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.35);
}

.download-hint {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* FEATURES SECTION */
.features-section {
    padding: 90px 0;
    background: #0a0e17;
    border-top: 1px solid var(--border-color);
}

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

.section-tag {
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    margin: 6px 0 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #111726;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 34px 30px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 22px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    font-size: 34px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* STEPS SECTION */
.steps-section {
    padding: 90px 0;
    background: #07090e;
    border-top: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: #111726;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, border-color 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.step-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA / WHATSAPP SECTION */
.cta-section {
    padding: 85px 0;
    background: #0a0e17;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(124, 58, 237, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(37, 99, 235, 0.2);
    color: white;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-text p {
    color: #e2e8f0;
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #22c55e;
    color: white !important;
    font-weight: 800;
    padding: 15px 26px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transition: transform 0.2s, background 0.2s;
    font-size: 15px;
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    padding: 15px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* FAQ PAGE */
.page-header {
    text-align: center;
    padding: 75px 0 40px;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.18) 0%, rgba(37, 99, 235, 0.12) 60%, transparent 80%);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.faq-content-section {
    padding: 40px 0 90px;
    background: #07090e;
}

.faq-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #111726;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.faq-question {
    font-size: 18px;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 10px;
}

.faq-answer {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.support-sidebar-card {
    background: #111726;
    border: 1.5px solid rgba(37, 99, 235, 0.35);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 24px rgba(37, 99, 235, 0.18);
}

.support-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

.support-sidebar-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.support-sidebar-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 22px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.support-details {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-color);
    background: #04060a;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: #93c5fd;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-title { font-size: 38px; }
    .cta-box { flex-direction: column; text-align: center; }
    .faq-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .nav-links { gap: 16px; font-size: 13px; }
}

/* ═════════════════════════════════════════════════════════════════
   SEÇÃO DO FORMULÁRIO DE SUPORTE (LANDING PAGE)
   ═════════════════════════════════════════════════════════════════ */
.support-form-section {
    padding: 70px 0 90px;
    position: relative;
}

.support-card-box {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.85), rgba(11, 15, 25, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 20px;
    padding: 42px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(12px);
}

.support-header {
    text-align: center;
    margin-bottom: 32px;
}

.support-header .section-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.support-header .section-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.support-header .section-desc {
    color: #94a3b8;
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 680px) {
    .form-grid { grid-template-columns: 1fr; }
    .support-card-box { padding: 24px; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
}

.form-input {
    background: #090d16;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: #0e1422;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #111827;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-submit-ticket {
    flex: 1;
    min-width: 220px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-submit-ticket:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.55);
}

.ticket-alert {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeInAlert 0.3s ease;
}

.ticket-alert.success {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

.ticket-alert.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

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

/* ==========================================================================
   SEÇÃO DE PLANOS & PREÇOS (ASAAS GATEWAY)
   ========================================================================== */
.pricing-section {
    padding: 90px 0;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background: rgba(17, 23, 38, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.18) 0%, rgba(17, 23, 38, 0.95) 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.35);
}

.pricing-badge-wrapper {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.pricing-badge-popular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b0f19;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.45);
    line-height: 1;
    pointer-events: none;
}

.pricing-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pricing-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    min-height: 40px;
}

.pricing-price-box {
    margin: 24px 0 20px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

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

.pricing-features {
    list-style: none;
    margin: 16px 0 28px;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.btn-buy-plan {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-buy-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-buy-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    color: #60a5fa;
}

.btn-buy-featured {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
}

.btn-buy-featured:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.6);
}

.pricing-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   MODAL DE CHECKOUT & PIX ASAAS
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.checkout-modal {
    background: #0f1626;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 6px;
}

.btn-gateway-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-gateway-opt:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.08);
    color: var(--text-main);
}

.btn-gateway-opt.active {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    color: #ffffff;
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.3);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.modal-title-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-plan-badge {
    font-size: 12px;
    color: #60a5fa;
    font-weight: 600;
}

.btn-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.2s;
}

.btn-modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 24px;
}

/* Step 1: Form */
.checkout-step {
    display: none;
}

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

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Step 2: PIX Screen */
.pix-screen {
    text-align: center;
}

.pix-price-tag {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pix-price-tag strong {
    font-size: 24px;
    color: #10b981;
    font-family: var(--font-heading);
}

.pix-qrcode-box {
    width: 210px;
    height: 210px;
    margin: 0 auto 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pix-qrcode-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-copy-box {
    margin-top: 14px;
}

.pix-copy-input-group {
    display: flex;
    gap: 8px;
}

.pix-copy-input-group input {
    font-family: monospace;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.4);
}

.pix-polling-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #93c5fd;
    font-size: 13px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    padding: 10px;
    border-radius: 10px;
}

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

@keyframes pulseAnim {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.mock-test-btn {
    margin-top: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px dashed #f59e0b;
    color: #fbbf24;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.mock-test-btn:hover {
    background: rgba(245, 158, 11, 0.25);
}

/* Step 3: Success Screen */
.success-screen {
    text-align: center;
    padding: 10px 0;
}

.success-icon-anim {
    font-size: 52px;
    margin-bottom: 12px;
}

.success-screen h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #10b981;
    margin-bottom: 6px;
}

.success-screen p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.license-key-reveal-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px dashed #10b981;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.license-key-reveal-box span {
    display: block;
    font-size: 12px;
    color: #6ee7b7;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.license-key-reveal-box code {
    font-family: monospace;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.activation-instructions {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 14px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.activation-instructions ol {
    margin-left: 18px;
    margin-top: 6px;
}

.activation-instructions li {
    margin-bottom: 4px;
}
