/* assets/css/main.css - Design Limpo, Autêntico e Comercial (Sem Clichês de IA) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    --bg-main: #0c0e12;
    --bg-card: #141821;
    --bg-card-hover: #1b212e;
    --bg-input: #090b0e;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 200, 83, 0.4);

    --primary-green: #00c853;
    --primary-green-hover: #00b048;
    --accent-blue: #0284c7;
    --accent-amber: #f59e0b;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-code: 'Space Grotesk', monospace;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-heading);
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background-color: var(--bg-main);
}

/* Video Background */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 14, 18, 0.7) 0%, rgba(12, 14, 18, 0.95) 80%, #0c0e12 100%);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header & Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 14, 18, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.brand-logo img {
    height: 36px;
    object-fit: contain;
}

.brand-badge {
    background: var(--primary-green);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-header-cta {
    background: var(--primary-green);
    color: #000 !important;
    font-weight: 700 !important;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-header-cta:hover {
    background: var(--primary-green-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-pill-tag {
    color: var(--primary-green);
    font-weight: 800;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* Activation & Downloader Box */
.activation-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px auto 0 auto;
    max-width: 860px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.activation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.activation-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activation-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.code-wrapper {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.code-number {
    font-family: var(--font-code);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-green);
}

.btn-copy-action {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy-action:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-green);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp-large:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-playstore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 12px;
    font-weight: 600;
}

.btn-playstore-link:hover {
    color: #fff;
}

/* Sections General */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Content Showcase Grid (Banners/Posters) */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

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

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.showcase-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.showcase-body {
    padding: 20px;
}

.showcase-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.showcase-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.showcase-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Devices Section */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
}

.device-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
}

.device-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.device-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Plans & Pricing Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.plan-card.popular {
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #000;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.plan-price-val {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
}

.plan-price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.plan-features-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
}

/* FAQ Accordion */
.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--primary-green);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

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

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

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.float-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary-green);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.float-whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .activation-grid {
        grid-template-columns: 1fr;
    }
    .hero-headline {
        font-size: 2.1rem;
    }
    .nav-links {
        display: none;
    }
}
