/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Properties */
:root {
    --primary-blue: #00d4ff;
    --secondary-blue: #0099cc;
    --primary-red: #ff0066;
    --secondary-red: #cc0052;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    --gradient-neon: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-red: 0 0 30px rgba(255, 0, 102, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 102, 0.05) 50%, transparent 70%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--neon-cyan), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--neon-pink), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--neon-green), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: 0 0 20px var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-secondary:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-neon);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2);
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* Gospel Section */
.gospel-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(255, 0, 102, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.gospel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Carousel Section */
.carousel-section {
    padding: 120px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.carousel-container {
    margin-top: 60px;
}

.carousel-row {
    margin-bottom: 30px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.carousel-top .carousel-track {
    animation-name: scrollRight;
}

.carousel-bottom .carousel-track {
    animation-name: scrollLeft;
}

.carousel-third .carousel-track {
    animation-name: scrollRight;
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.carousel-item {
    flex-shrink: 0;
    width: 253px;
    height: 316px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Carousel Hint */
.carousel-hint {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Transform CTA Section */
.transform-cta {
    padding: 150px 0 100px 0;
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 102, 0.15) 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 102, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.transform-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 255, 0.03) 100px
        );
    pointer-events: none;
}

.transform-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.transform-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0066 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    letter-spacing: 1px;
}

.transform-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.transform-highlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.transform-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-preview {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-preview:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 255, 255, 0.3);
}

.transform-features {
    text-align: left;
}

.features-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-item {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.transform-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #ff0066 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.transform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.transform-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(255, 0, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.transform-btn:hover::before {
    left: 100%;
}

.transform-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    width: 100%;
    max-width: 100%;
}

.testimonial img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial {
        max-width: 100%;
    }
    
    /* Gospel Section Responsive */
    .gospel-section {
        padding: 80px 0;
    }
    
    .gospel-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    /* Carousel Section Responsive */
.carousel-section {
    padding: 80px 0;
}

.carousel-item {
    width: 200px;
    height: 250px;
}

.carousel-track {
    gap: 15px;
}



.carousel-hint {
    bottom: -40px;
    font-size: 12px;
    padding: 6px 12px;
}
    
    /* Transform CTA Section Responsive */
    .transform-cta {
        padding: 60px 0;
    }
    
    .transform-content h2 {
        font-size: 2rem;
    }
    
    .transform-content p {
        font-size: 1rem;
    }
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats Cards */
.bonus-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 600;
}

/* Niches Showcase */
.niches-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.niche-demo {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.niche-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.niche-demo:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}

.niche-demo:hover::before {
    opacity: 1;
}

.niche-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.niche-demo h3 {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.niche-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.preview-item {
    background: rgba(0, 255, 255, 0.1);
    color: #cccccc;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50px;
}

.preview-item:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
    transform: scale(1.05);
}

.niche-count {
    color: var(--neon-pink);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 0, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Final Section */
.bonus-final {
    margin-top: 80px;
}

.final-highlight {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.final-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

.final-highlight > * {
    position: relative;
    z-index: 1;
}

.final-highlight h3 {
    color: var(--neon-cyan);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-highlight p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(0, 255, 255, 0.2);
    color: #cccccc;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bonus Carousel Section */
.bonus-carousel-section {
    margin: 80px 0;
    text-align: center;
    position: relative;
}

.carousel-title {
    color: var(--neon-cyan);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 20px;
}

.bonus-carousel-container:last-of-type {
    margin-bottom: 0;
}

.bonus-carousel-container::before,
.bonus-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.bonus-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.bonus-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.bonus-carousel-track {
    display: flex;
    gap: 20px;
    width: calc(200% + 40px);
}

.bonus-carousel-top .bonus-carousel-track {
    animation: slideRightToLeft 30s linear infinite;
}

.bonus-carousel-bottom .bonus-carousel-track {
    animation: slideLeftToRight 30s linear infinite;
}

.bonus-carousel-item {
    flex-shrink: 0;
    width: 339px;
    height: 343px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.bonus-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.bonus-carousel-item:hover {
    border-color: var(--neon-cyan);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.bonus-carousel-item:hover::before {
    opacity: 1;
}

.bonus-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.bonus-carousel-item:hover img {
    transform: scale(1.1);
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.bonus-carousel-container:hover .bonus-carousel-track {
    animation-play-state: paused;
}

/* Bonus Packs Section */
.bonus-packs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 255, 0.03));
    position: relative;
}

.bonus-packs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.packs-title {
    color: var(--neon-cyan);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.packs-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pack-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pack-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-image {
    width: 100%;
    height: 249px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-image img {
    width: 200px;
    height: 249px;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.pack-card:hover .pack-image img {
    transform: scale(1.1);
}

.pack-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.pack-name {
    color: var(--neon-cyan);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-count {
    color: var(--neon-pink);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pack-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pack-btn {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pack-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
}

.pack-btn:hover::before {
    left: 100%;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%),
        radial-gradient(circle at center, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
}

.cta-highlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-mobile {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.cta-text {
    text-align: left;
}

.cta-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.cta-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.cta-text li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #cccccc;
}

.cta-final {
    background: var(--gradient-neon);
    color: var(--dark-bg);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cta-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .carousel-item {
        width: 200px;
        height: 250px;
    }
    
    /* Bonus Section Responsive */
    .bonus-stats {
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-card {
        min-width: 150px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    /* Transform CTA Responsive */
    .transform-cta {
        padding: 120px 0 80px 0;
    }
    
    .niches-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .niche-demo {
        padding: 25px;
    }
    
    .niche-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .niche-demo h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .niche-preview {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .preview-item {
        padding: 10px 8px;
        font-size: 0.85rem;
        min-height: 45px;
    }
    
    .niche-count {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .bonus-final {
        margin-top: 60px;
    }
    
    .final-highlight {
        padding: 30px 20px;
    }
    
    .final-highlight h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .final-highlight p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .final-features {
        gap: 15px;
    }
    
    .feature-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    /* Bonus Carousel Responsive */
    .bonus-carousel-section {
        margin: 60px 0;
    }
    
    .carousel-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .bonus-carousel-container {
        padding: 20px 0;
        margin: 0 -20px;
    }
    
    .bonus-carousel-container::before,
    .bonus-carousel-container::after {
        width: 50px;
    }
    
    .bonus-carousel-item {
        width: 280px;
        height: 284px;
    }
    
    .bonus-carousel-track {
         gap: 15px;
         animation-duration: 25s;
     }
     
     /* Bonus Packs Responsive */
     .bonus-packs-section {
         padding: 60px 0;
     }
     
     .packs-title {
         font-size: 2rem;
         margin-bottom: 15px;
     }
     
     .packs-subtitle {
         font-size: 1rem;
         margin-bottom: 40px;
         padding: 0 20px;
     }
     
     .packs-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         padding: 0 20px;
     }
     
     .pack-card {
         border-radius: 15px;
     }
     
     .pack-image {
         height: 200px;
     }
     
     .pack-image img {
         width: 160px;
         height: 200px;
     }
     
     .pack-content {
         padding: 20px;
     }
     
     .pack-name {
         font-size: 1.2rem;
     }
     
     .pack-count {
         font-size: 1rem;
     }
     
     .pack-description {
         font-size: 0.9rem;
         margin-bottom: 15px;
     }
     
     .pack-btn {
         padding: 10px 20px;
         font-size: 0.8rem;
     }
     
     /* Transform CTA Responsive */
     .transform-cta {
         padding: 60px 0;
     }
     
     .transform-title {
         font-size: 2rem;
         margin-bottom: 15px;
     }
     
     .transform-subtitle {
         font-size: 1.1rem;
         margin-bottom: 40px;
         padding: 0 20px;
     }
     
     .transform-highlight {
         grid-template-columns: 1fr;
         gap: 40px;
         padding: 30px 20px;
         margin: 0 20px;
     }
     
     .transform-mobile {
         order: 2;
     }
     
     .transform-features {
         order: 1;
         text-align: center;
     }
     
     .mobile-preview {
         max-width: 220px;
     }
     
     .features-title {
         font-size: 1.4rem;
         margin-bottom: 20px;
     }
     
     .feature-item {
         font-size: 1rem;
         margin-bottom: 12px;
         text-align: left;
     }
     
     .transform-btn {
         padding: 15px 30px;
         font-size: 1rem;
         width: 100%;
         max-width: 300px;
     }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Extra small screens adjustments */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .carousel-item {
        width: 180px;
        height: 220px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .pricing-card {
        margin: 0 10px;
    }
    
    .countdown-item {
        padding: 8px 12px;
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
}

/* ===== NOVA SEÇÃO DE PREÇOS - LIMPA E SEM SOBREPOSIÇÕES ===== */

/* Container Principal */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Header da Seção */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff0066, #ff3385);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 0, 102, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

.pricing-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Grid de Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Cards de Preço */
.price-card {
    background: rgba(15, 20, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    overflow: visible;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Mensal */
.price-card.monthly {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.monthly:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

/* Card Vitalício - Destaque */
.price-card.lifetime {
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(145deg, 
        rgba(0, 212, 255, 0.05), 
        rgba(15, 20, 35, 0.98));
    box-shadow: 
        0 15px 50px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(0, 212, 255, 0.1);
}

.price-card.lifetime:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.25),
        0 0 40px rgba(0, 212, 255, 0.15);
}

/* Tag Popular - SEM SOBREPOSIÇÃO */
.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0066, #ff3385);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
    z-index: 10;
}

/* Header do Card */
.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 10px; /* Espaço para a tag popular */
}

.plan-type {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-type.lifetime-type {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 10px rgba(0, 212, 255, 0.3);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.plan-desc {
    color: #a8a8a8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Seção de Preços */
.price-section {
    text-align: center;
    margin-bottom: 25px;
}

.discount-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    color: #666;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #ff0066, #ff3385);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 0, 102, 0.3);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin: 15px 0;
}

.currency {
    font-size: 1.2rem;
    color: #00d4ff;
    font-weight: 600;
}

.amount {
    font-size: 2.8rem;
    color: #00d4ff;
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.period {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    margin-left: 5px;
}

.billing-info {
    color: #a8a8a8;
    font-size: 0.8rem;
    margin: 10px 0 0 0;
}

/* Caixa de Economia */
.savings-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.label {
    font-size: 0.8rem;
    color: #a8a8a8;
    display: flex;
    justify-content: space-between;
}

.label.highlight {
    color: #00d4ff;
    font-weight: 600;
}

.savings {
    color: #00ff88;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    padding: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Lista de Recursos */
.features-list {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.feature .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature.included .icon {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: white;
}

.feature.excluded .icon {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
}

.feature .text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 500;
}

.feature.excluded .text {
    color: #666;
}

/* Botões CTA */
.cta-button {
    width: 100%;
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.monthly-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.monthly-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.lifetime-btn {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.lifetime-btn:hover {
    background: linear-gradient(135deg, #00e6ff, #00b3e6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Badges de Segurança */
.security-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.security-badge .icon {
    font-size: 1.1rem;
}

.security-badge .text {
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Alerta de Urgência */
.urgency-box {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.15), rgba(255, 51, 133, 0.15));
    border: 2px solid rgba(255, 0, 102, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.urgency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgency-content {
    text-align: center;
}

.urgency-title {
    color: #ff0066;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.urgency-text {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 500px;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .popular-tag {
        top: -12px;
        padding: 6px 16px;
        font-size: 0.7rem;
    }
    
    .amount {
        font-size: 2.4rem;
    }
    
    .security-section {
        gap: 15px;
        margin: 30px 0 25px;
    }
    
    .security-badge {
        padding: 8px 15px;
    }
    
    .urgency-box {
        padding: 15px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        padding: 0 10px;
        gap: 20px;
        max-width: 400px;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .security-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin: 0 10px;
    }
}

/* ===== MEGA BONUS SECTION ===== */
.mega-bonus-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mega-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mega-bonus-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.mega-bonus-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mega-bonus-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.bonus-item:hover::before {
    left: 100%;
}

.bonus-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.bonus-item.featured {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.bonus-item.featured:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.bonus-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-value {
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-total {
    text-align: center;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.total-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
    min-width: 400px;
}

.total-label {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 10px;
}

.total-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.total-included {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 1.2rem;
    color: #a0aec0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text strong {
    color: #ff6b35;
    font-weight: 700;
}

.bonus-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.mega-bonus-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mega-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

/* Responsividade */
@media (max-width: 768px) {
    .mega-bonus-section {
        padding: 60px 0;
    }
    
    .mega-bonus-title {
        font-size: 2.5rem;
    }
    
    .mega-bonus-subtitle {
        font-size: 1.1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-item {
        padding: 25px;
    }
    
    .total-box {
        min-width: auto;
        padding: 30px 20px;
    }
    
    .total-value {
        font-size: 2.5rem;
    }
    
    .bonus-highlight {
        padding: 30px 20px;
    }
    
    .highlight-title {
        font-size: 1.6rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mega-bonus-title {
        font-size: 2rem;
    }
    
    .bonus-grid {
        gap: 15px;
    }
    
    .bonus-item {
        padding: 20px;
    }
    
    .bonus-icon {
        font-size: 2.5rem;
    }
    
    .mega-bonus-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

/* Special Offer Page Styles */
.special-offer-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.special-offer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.offer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.offer-badge.urgent {
    background: linear-gradient(45deg, #ff0040, #ff4081);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.countdown-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.countdown-title {
    color: #ff4081;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-unit {
    background: linear-gradient(45deg, var(--primary-blue), var(--neon-cyan));
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
}

.time-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: bold;
}

.price-comparison {
    margin: 40px 0;
}

.old-price {
    margin-bottom: 15px;
}

.old-price .price-value {
    font-size: 2rem;
    color: #888;
    text-decoration: line-through;
    font-family: 'Orbitron', monospace;
}

.new-price {
    position: relative;
}

.new-price .price-value {
    font-size: 4rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #ff4081;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    transform: rotate(15deg);
}

.offer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 212, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.highlight-item .icon {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: bold;
}

.highlight-item .text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.urgency-alert {
    background: linear-gradient(45deg, #ff0040, #ff4081);
    border-radius: 15px;
    padding: 25px;
    margin: 40px auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 64, 129, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 64, 129, 0.8); }
}

.alert-icon {
    font-size: 2rem;
}

.alert-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.4;
}

.mega-cta-btn {
    background: linear-gradient(45deg, var(--primary-blue), var(--neon-cyan));
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 40px 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.mega-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mega-cta-btn:hover::before {
    left: 100%;
}

.mega-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.security-item .icon {
    font-size: 1.2rem;
}

.bonus-preview {
    padding: 80px 0;
    background: var(--darker-bg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-item h3 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.bonus-item p {
    color: #ccc;
    line-height: 1.6;
}

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-countdown {
    font-size: 1.3rem;
    color: #ff4081;
    margin-bottom: 30px;
    font-weight: 600;
}

.countdown-inline {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 900;
}

.final-cta-btn {
    background: linear-gradient(45deg, #ff0040, #ff4081);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.4);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.6);
}

/* Responsive para Página de Oferta */
@media (max-width: 768px) {
    .offer-title {
        font-size: 2.5rem;
    }
    
    .new-price .price-value {
        font-size: 3rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .mega-cta-btn {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .offer-highlights {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .urgency-alert {
        flex-direction: column;
        text-align: center;
    }
}