/* =========================================
   DataZap Comercial - CSS Premium (Dark Mode)
   ========================================= */

:root {
    /* Paleta de Cores */
    --bg-dark: #0a0a0c;
    --bg-card: rgba(20, 20, 25, 0.7);
    --bg-card-hover: rgba(30, 30, 40, 0.9);
    
    --primary-green: #25D366; /* Verde WhatsApp */
    --primary-hover: #1ebd5a;
    --accent-gold: #F5B041;
    --accent-blue: #3498DB;
    --accent-danger: #E74C3C;
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Tipografia */
    --font-main: 'Inter', sans-serif;
    
    /* Efeitos */
    --transition: all 0.3s ease;
    --glow-green: 0 0 20px rgba(37, 211, 102, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

/* =========================================
   Utilitários & Componentes
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-left { text-align: left; }
.text-danger { color: var(--accent-danger); }
.text-warning { color: var(--accent-gold); }
.text-info { color: var(--accent-blue); }
.text-green { color: var(--primary-green); }
.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--accent-blue); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #fff;
    box-shadow: var(--glow-green);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.full-width {
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 48px;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 400;
}

.logo i {
    color: var(--primary-green);
    font-size: 2rem;
}

/* =========================================
   Hero Section (A Promessa)
   ========================================= */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, rgba(10,10,12,0) 70%);
    z-index: -1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text .highlight {
    color: var(--accent-gold);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 16px;
}

/* Glass Card Mockup */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-card);
}

.mockup-card {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    font-weight: 600;
}

.logo-wpp {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stat-row strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.glow-effect {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

/* =========================================
   Pain Section (O Problema)
   ========================================= */
.pain-section {
    padding: 100px 0;
    background: #0f0f13;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pain-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
}

.pain-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.icon-box.danger { background: rgba(231, 76, 60, 0.1); color: var(--accent-danger); }
.icon-box.warning { background: rgba(245, 176, 65, 0.1); color: var(--accent-gold); }
.icon-box.info { background: rgba(52, 152, 219, 0.1); color: var(--accent-blue); }

.pain-card h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

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

/* =========================================
   Solution Section (A Solução)
   ========================================= */
.solution-section {
    padding: 120px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Circle Animation for Visual */
.tech-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
}

.center-core {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    box-shadow: var(--glow-green);
    animation: reverse-spin 20s linear infinite;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: reverse-spin 20s linear infinite;
}

.node.top { top: -25px; left: 50%; transform: translateX(-50%); }
.node.left { top: 50%; left: -25px; transform: translateY(-50%); }
.node.right { top: 50%; right: -25px; transform: translateY(-50%); }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes reverse-spin { 100% { transform: rotate(-360deg); } }

/* =========================================
   Features Section (O Ouro)
   ========================================= */
.features-section {
    padding: 100px 0;
    background: #0f0f13;
}

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

.feature-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

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

/* =========================================
   Trust Section (B2B Trust)
   ========================================= */
.trust-section {
    padding: 100px 0;
    position: relative;
}

.trust-wrapper {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.trust-content p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 50%;
}

.badge-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   Pricing Section (Oferta)
   ========================================= */
.pricing-section {
    padding: 100px 0 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.premium {
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.05) 0%, var(--bg-card) 100%);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37,211,102,0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.card-header p {
    color: var(--text-muted);
}

.card-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.card-features ul {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.card-features li i {
    margin-top: 4px;
}

.card-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

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

.footer-legal {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.footer-legal p {
    margin-bottom: 4px;
}

/* =========================================
   Responsividade
   ========================================= */
@media (max-width: 992px) {
    .hero-content, .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-top: 120px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .cta-group {
        justify-content: center;
    }

    .section-title.text-left {
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }
    
    .tech-circle {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .pain-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.premium {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
    }
}
