:root {
    --zapdos-yellow: #FFCC00;
    --zapdos-dark: #050505; /* Fundo principal quase 100% preto */
    --zapdos-card-dark: #111111; /* Cor dos cards escuros */
    --zapdos-light: #F5F5F7;
    --zapdos-white: #FFFFFF;
    
    --shadow-soft-3d: 0 10px 30px -10px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.05), inset 0 -2px 5px rgba(0,0,0,0.5);
    --shadow-soft-3d-dark: 0 10px 30px -10px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.05), inset 0 -2px 5px rgba(0,0,0,0.8);
    --shadow-button-3d: 0 4px 14px 0 rgba(255, 204, 0, 0.39), inset 0 2px 4px 0 rgba(255,255,255,0.5), inset 0 -2px 4px 0 rgba(0,0,0,0.1);
}

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

body {
    background-color: var(--zapdos-dark);
    color: var(--zapdos-white);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.orb-1 { top: -10%; left: -10%; width: 60%; height: 60%; background: rgba(255,204,0,0.15); filter: blur(140px); }
.orb-2 { top: 20%; right: -20%; width: 50%; height: 50%; background: rgba(255,204,0,0.1); filter: blur(150px); }
.orb-3 { bottom: -10%; right: -10%; width: 40%; height: 60%; background: rgba(251,146,60,0.1); filter: blur(150px); }

/* Typography & Utilities */
.relative-z10 { position: relative; z-index: 10; }
.text-yellow { color: var(--zapdos-yellow); }
.text-white { color: var(--zapdos-white); }
.text-muted { color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.text-white-muted { color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }
.flex-between { display: flex; flex-direction: column; justify-content: space-between; }
.flex-align-center { display: flex; align-items: center; }
.gap-3 { gap: 0.75rem; }

/* Badge de Desenvolvimento */
.dev-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 204, 0, 0.15);
    color: var(--zapdos-yellow);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
    letter-spacing: 0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    text-decoration: none;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn-primary {
    background-color: var(--zapdos-yellow);
    color: var(--zapdos-dark);
    box-shadow: var(--shadow-button-3d);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(255,204,0,0.6); }

.btn-secondary {
    background-color: rgba(255,255,255,0.05);
    color: var(--zapdos-white);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,204,0,0.5);
    box-shadow: var(--shadow-soft-3d);
}
.btn-secondary:hover { border-color: var(--zapdos-yellow); background-color: rgba(255,204,0,0.1); }

.btn-dark {
    background-color: var(--zapdos-card-dark);
    color: var(--zapdos-white);
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.2); }

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; box-shadow: none; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.125rem; }
.btn-xl { padding: 1.5rem 3.5rem; font-size: 1.25rem; box-shadow: 0 0 40px rgba(255,204,0,0.2); }

/* Header & Logo */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 72rem;
    z-index: 50;
}
.header-content {
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(24px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.08);
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.6rem; 
    font-weight: 700; 
    font-size: 1.15rem;
    background: var(--zapdos-yellow);
    color: var(--zapdos-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
}
.logo-icon { width: 1.25rem; height: 1.25rem; background: var(--zapdos-dark); border-radius: 50%; }
.nav-links { display: none; gap: 2rem; font-weight: 500; font-size: 0.875rem; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s; }
.nav-links a:hover { color: var(--zapdos-yellow); }

/* Main Container - Ajuste base */
.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 7rem 1.25rem 4rem; /* Reduzido para mobile */
    display: flex;
    flex-direction: column;
    gap: 4.5rem; /* Reduzido para mobile */
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-content h1 { font-size: 2.75rem; font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.7); font-weight: 500; max-width: 42rem; margin-top: 1rem; line-height: 1.6; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; width: 100%; }
.hero-actions .btn-lg { width: 100%; }

.highlight-wrapper { position: relative; display: inline-block; padding: 0 0.5rem; margin-top: 0.5rem; }
.highlight-text { position: relative; z-index: 10; color: var(--zapdos-dark); }
.highlight-bg {
    position: absolute;
    inset: 0;
    background: var(--zapdos-yellow);
    border-radius: 16px;
    transform: rotate(-2deg);
    z-index: 0;
}

/* Bento Box & Cards */
.section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em;}
.section-header h2 span { color: var(--zapdos-yellow); }
.section-header p { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 3rem; }

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: auto;
}

.card {
    border-radius: 32px;
    padding: 2.5rem;
    transition: all 0.5s ease;
}
.card:hover { transform: translateY(-8px); }

/* Ajustes dos Cards para o Dark Mode */
.card-light { background: rgba(30,30,30,0.6); backdrop-filter: blur(20px); color: var(--zapdos-white); box-shadow: var(--shadow-soft-3d); border: 1px solid rgba(255,255,255,0.08); }
.card-dark { background: rgba(17,17,17,0.85); backdrop-filter: blur(20px); color: var(--zapdos-white); box-shadow: var(--shadow-soft-3d-dark); border: 1px solid rgba(255,255,255,0.05); }
.card-yellow { background: var(--zapdos-yellow); color: var(--zapdos-dark); box-shadow: 0 15px 40px -10px rgba(255,204,0,0.3); border: 1px solid #FDE047; }
.card-yellow p { color: rgba(17,17,17,0.8); font-weight: 500; }

.card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.card p { line-height: 1.6; }

/* Card Internals */
.icon-box { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-box svg { width: 1.5rem; height: 1.5rem; }
.icon-yellow { background: rgba(255,204,0,0.1); border: 1px solid rgba(255,204,0,0.3); color: var(--zapdos-yellow); }
.icon-circle { width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--zapdos-card-dark); color: var(--zapdos-yellow); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3); transition: transform 0.3s; }
.group:hover .icon-circle { transform: scale(1.1); }
.icon-circle svg { width: 1.5rem; height: 1.5rem; }
.pill-icon { width: 0.5rem; height: 2rem; background: var(--zapdos-yellow); border-radius: 9999px; display: block; flex-shrink: 0; }
.icon-square { width: 5rem; height: 5rem; border-radius: 1rem; background: rgba(17,17,17,0.8); border: 1px solid rgba(255,204,0,0.2); box-shadow: var(--shadow-soft-3d-dark); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.icon-square svg { width: 2rem; height: 2rem; color: var(--zapdos-yellow); }
.group:hover .icon-square { transform: translateY(-8px); }
.border-hover { border: 2px solid transparent; transition: border-color 0.3s; }
.border-hover:hover { border-color: rgba(255,204,0,0.5); }

/* Card 1 Animations */
.bg-glow { position: absolute; right: -20%; bottom: -20%; width: 400px; height: 400px; background: rgba(255,204,0,0.1); border-radius: 50%; filter: blur(60px); transition: background 0.7s; }
.group:hover .bg-glow { background: rgba(255,204,0,0.2); }
.bg-shape { position: absolute; right: 2rem; bottom: 2rem; width: 8rem; height: 8rem; border-radius: 1.5rem; background: linear-gradient(to bottom right, var(--zapdos-yellow), #FB923C); box-shadow: 0 0 40px rgba(255,204,0,0.2); transition: all 0.5s; opacity: 1; }
.rotate-12 { transform: rotate(12deg); }
.group:hover .bg-shape { transform: rotate(6deg) scale(1.1); }

/* Card 4 Mockup */
.mockup-ui { width: 100%; max-width: 18rem; height: 12rem; border-radius: 24px; background: rgba(255,255,255,0.03); backdrop-filter: blur(12px); box-shadow: 0 0 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; transform: rotate(-3deg); transition: transform 0.3s; margin-top: 2rem; }
.group:hover .mockup-ui { transform: rotate(0); border-color: rgba(255,204,0,0.3); }
.mockup-bar { height: 2rem; background: rgba(255,255,255,0.1); border-radius: 0.75rem; }
.w-3-4 { width: 75%; }
.mockup-btn { width: 100%; height: 3rem; background: var(--zapdos-yellow); border-radius: 0.75rem; box-shadow: 0 0 15px rgba(255,204,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--zapdos-dark); }
.mockup-btn svg { width: 1.25rem; height: 1.25rem; }

/* Audience Section */
.audience-header { text-align: center; margin-bottom: 3rem; }
.audience-header h2 { font-size: 2.25rem; font-weight: 700; }
.highlight-bg-thin { position: absolute; bottom: 4px; left: 0; width: 100%; height: 12px; background: rgba(255,204,0,0.4); transform: rotate(-1deg); z-index: 0; }
.audience-cards { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: center; }
.audience-card { width: 100%; min-height: 300px; display: flex; flex-direction: column; }
.number-badge { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; margin-bottom: 2rem; flex-shrink: 0; }
.shadow-glow { box-shadow: 0 0 15px rgba(255,204,0,0.2); }

/* Footer CTA */
.footer-cta { padding: 2rem 0 3rem; }
.cta-box { width: 100%; border-radius: 32px; background: var(--zapdos-card-dark); padding: 3rem 1.5rem; text-align: center; box-shadow: var(--shadow-soft-3d-dark); border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
.cta-gradient-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,204,0,0.1) 0%, transparent 70%); }
.cta-glow-line { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, var(--zapdos-yellow), transparent); opacity: 0.3; }
.cta-box h2 { font-size: 2.25rem; font-weight: 700; color: var(--zapdos-white); line-height: 1.1; letter-spacing: -0.02em; max-width: 56rem; }
.cta-box h2 span { color: var(--zapdos-yellow); }

/* Floating WhatsApp Base & Mobile (Botão redondo) */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 4px 25px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; fill: currentColor; }
.whatsapp-text { display: none; font-weight: 600; }

/* Animações e Delays (Stagger Effect) */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hide-mobile { display: none; }
    .logo-text-desktop { display: none; }
    .mockup-ui { transform: rotate(0); }
}

/* Tablet (768px até 1023px) */
@media (min-width: 768px) {
    .container { padding: 9rem 2rem 5rem; gap: 6rem; }
    .logo-text-mobile { display: none; }
    .nav-links { display: flex; }
    
    .hero-content h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-actions { flex-direction: row; width: auto; }
    .hero-actions .btn-lg { width: auto; }
    
    .section-header h2 { font-size: 2.75rem; }
    .section-header p { font-size: 1.125rem; }
    
    /* Transição elegante de 2 colunas no Tablet */
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2 { grid-column: span 2; }
    
    .audience-header h2 { font-size: 2.75rem; }
    .audience-header { margin-bottom: 5rem; }
    
    .cta-box { padding: 5rem 3rem; border-radius: 40px; }
    .cta-box h2 { font-size: 3.5rem; }
    
    /* WhatsApp esticado com texto no Tablet/Desktop */
    .whatsapp-btn {
        width: auto;
        height: auto;
        padding: 0.875rem 1.25rem;
        border-radius: 9999px;
        gap: 0.75rem;
    }
    .whatsapp-text { display: block; }
}

/* Desktop (1024px em diante) */
@media (min-width: 1024px) {
    .container { padding: 11rem 1.5rem 6rem; gap: 8rem; }
    .hero-content { align-items: center; text-align: center; }
    .hero-content h1 { font-size: 5rem; }
    .hero-actions { justify-content: center; }
    .section-header h2 { font-size: 3rem; }
    .card h3 { font-size: 1.875rem; }
    
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 320px;
    }
    
    .flex-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
    .mockup-ui { margin-right: 2rem; margin-top: 0; transform: rotate(-3deg); max-width: 18rem; }
    
    .audience-cards { flex-direction: row; gap: 2rem; margin: 0 -2rem; }
    .audience-card { width: 24rem; height: 420px; transition: all 0.5s ease; border: 1px solid rgba(255,255,255,0.05); }
    
    .card-left { transform: rotate(-6deg); z-index: 10; }
    .card-left:hover { transform: rotate(0); z-index: 40; border-color: rgba(255,204,0,0.3); }
    
    .card-center { width: 28rem; height: 460px; z-index: 20; transform: scale(1.05); display: flex; flex-direction: column; justify-content: space-between; }
    .card-center:hover { transform: scale(1.1); z-index: 40; }
    
    .card-right { transform: rotate(6deg); z-index: 10; }
    .card-right:hover { transform: rotate(0); z-index: 40; border-color: rgba(255,204,0,0.3); }
    
    .cta-box { padding: 6rem; border-radius: 48px; }
    .cta-box h2 { font-size: 4.5rem; }
}
