/* Sales Page Stylesheet */
:root {
    --bg-dark: #07050d;
    --bg-card: rgba(19, 15, 36, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #a855f7;
    --primary-glow: rgba(168, 85, 247, 0.4);
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
    background: linear-gradient(135deg, #fbbf24 30%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Header */
.vendas-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(7, 5, 13, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

.cta-button i {
    animation: move-right 1s infinite alternate;
}

@keyframes move-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(6px); }
}

.badge-headline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Hero Mockup Frame */
.hero-mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.hero-mockup img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.hero-mockup:hover img {
    transform: scale(1.05);
}

.hero-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 5, 13, 0.8) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(19, 15, 36, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Showcase Grid */
.showcase-section {
    padding: 100px 0;
}

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

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.showcase-image {
    height: 220px;
    background: linear-gradient(135deg, #1e1b4b, #3b0764);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    position: relative;
}

.showcase-image i {
    width: 64px;
    height: 64px;
}

.showcase-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.showcase-content {
    padding: 24px;
}

.showcase-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, rgba(0,0,0,0) 80%);
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(19, 15, 36, 0.8);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: #000;
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.pricing-card .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-card .current-price-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-white);
    margin: 12px 0;
}

.pricing-card .price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-card .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #34d399;
    font-size: 0.9rem;
    margin-top: 24px;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-answer {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

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

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

.faq-question i {
    transition: transform 0.3s ease;
}

/* Footer */
.vendas-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #040308;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        direction: ltr !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .badge-headline {
        margin: 0 auto 20px auto;
    }
}
