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

:root {
    --bg-dark: #0d0d0d;
    --bg-card: #141414;
    --text-primary: #fafafa;
    --text-secondary: #a6a6a6;
    --primary-color: #a855f7;
    --cta-color: #10b981;
    --cta-dark: #059669;
    --flame-color: #fb923c;
    --destructive: #ef4444;
    --border-color: #262626;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}

.neon-sign-container {
    position: relative;
    text-align: center;
}

.neon-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 80px var(--primary-color);
    animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Hero Section */
.hero-section {
    padding: 64px 0;
}

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

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flame-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-badge .icon {
    width: 24px;
    height: 24px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.875rem);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 32px;
}

.highlight {
    color: var(--cta-color);
    font-weight: 700;
}

.btn-cta {
    background-color: var(--cta-color);
    color: var(--bg-dark);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 32px;
    border: 2px solid var(--cta-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.btn-cta:hover {
    background-color: #0ea471;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

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

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.4));
}

/* Objection Section */
.objection-section {
    padding: 96px 0;
    background-color: rgba(20, 20, 20, 0.3);
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto 48px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.objection-content {
    text-align: center;
    margin: 48px 0;
}

.objection-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.arrow-bounce {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 640px;
    height: 500px;
    margin: 48px auto;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(166, 166, 166, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 4px;
    background-color: var(--primary-color);
}

.objection-reveal {
    text-align: center;
    margin: 48px 0;
}

.reveal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.metas-container {
    margin: 32px 0;
}

.metas-image {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 16px;
    display: block;
    border-radius: 8px;
}

.metas-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reveal-text {
    font-size: 1.125rem;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 32px;
}

.pattern-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 48px auto;
}

@media (min-width: 768px) {
    .pattern-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-item {
    display: flex;
    gap: 12px;
    text-align: left;
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--cta-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 96px 0;
    background-color: rgba(20, 20, 20, 0.3);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 96px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-dark);
    margin-bottom: 16px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.special-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(251, 146, 60, 0.3));
    border: 2px solid var(--flame-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.flame-container {
    width: 64px;
    height: 64px;
    color: var(--flame-color);
}

.flame-icon {
    width: 100%;
    height: 100%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.special-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--destructive);
    text-align: center;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.flame-row {
    display: flex;
    gap: 8px;
    color: var(--flame-color);
}

.small-flame {
    width: 24px;
    height: 24px;
}

/* Pricing Section */
.pricing-section {
    padding: 96px 0;
}

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

.flame-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flame-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.flame-badge svg {
    width: 24px;
    height: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.gold-card {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-flame {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    color: var(--flame-color);
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.gold-title {
    color: var(--primary-color);
}

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

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--cta-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.features-scroll {
    max-height: 384px;
    overflow-y: auto;
    margin-bottom: 32px;
}

.features-scroll::-webkit-scrollbar {
    width: 8px;
}

.features-scroll::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 4px;
}

.features-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.pricing-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cta-color);
}

.urgency-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--destructive);
    font-weight: 700;
    margin-top: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 96px 0;
    background-color: rgba(20, 20, 20, 0.3);
}

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

.stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--cta-color);
}

.stars svg {
    width: 24px;
    height: 24px;
}

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

.testimonial-carousel {
    max-width: 768px;
    height: 400px;
    background-color: rgba(38, 38, 38, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 96px 0;
}

.faq-container {
    max-width: 768px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-line;
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Mobile */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .neon-text {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .hero-section {
        padding: 32px 0;
    }
    
    .hero-grid {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .objection-section,
    .benefits-section,
    .content-section,
    .pricing-section,
    .testimonials-section,
    .faq-section {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .carousel-container {
        height: 350px;
        margin: 32px auto;
    }
    
    .reveal-title {
        font-size: 1.5rem;
    }
    
    .metas-text {
        font-size: 1.5rem;
    }
    
    .pattern-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefits-grid,
    .categories-grid {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .old-price {
        font-size: 1.25rem;
    }
    
    .special-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.875rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .neon-text {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .new-price {
        font-size: 2rem;
    }
}

/* Sales Notifications */
.sales-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 340px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(168, 85, 247, 0.3);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--flame-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-notification 2s infinite;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

@keyframes pulse-notification {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(168, 85, 247, 0);
    }
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.notification-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.notification-package {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsivo para notificações */
@media (max-width: 480px) {
    .sales-notification {
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
    }
}
