
:root {
    --primary-color: #ff9f1c; 
    --bg-dark: #000000;
    --card-bg: #111111;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background: var(--bg-dark); color: var(--text-white); overflow-x: hidden; }

/* Esconder barra de rolagem mas manter funcionalidade */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Sections */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 50px; color: #fff; text-transform: uppercase; }

/* Header */
.main-header {
    background: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
}

.header-logo i {
    color: var(--primary-color);
    font-size: 12px;
}

.header-cta {
    background: var(--primary-color);
    color: #000;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.header-cta:hover {
    transform: scale(1.05);
}

/* Banner */
.urgency-banner { background: var(--primary-color); padding: 12px 0; text-align: center; position: sticky; top: 0; z-index: 100; }
.urgency-text { color: #000; font-size: 14px; font-weight: 800; letter-spacing: 1px; }

/* Hero Enhancement */
.urgency-badge {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.hero-price-container {
    margin: 40px 0 20px;
    display: flex;
    justify-content: center;
}

.price-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 159, 28, 0.3);
    padding: 25px 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 159, 28, 0.1);
    position: relative;
    overflow: hidden;
}

.price-strip::before {
    display: none;
}

.price-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price-main-display {
    display: flex;
    align-items: center;
    gap: 25px;
}

.old-price {
    font-size: 20px;
    color: #555;
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.current-price .currency {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    margin-right: 5px;
    color: #888;
}

.current-price .amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
}

.current-price .cents {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
}

.price-tagline {
    margin-top: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .price-strip {
        padding: 20px 30px;
    }
    .current-price .amount {
        font-size: 56px;
    }
    .price-main-display {
        gap: 15px;
    }
}

.price-badge {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    margin-top: 10px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image-spacer {
    height: 50px;
}

.pulse {
    animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,159,28,0.3); }
    50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(255,159,28,0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,159,28,0.3); }
}

/* Hero */
.hero { text-align: center; padding-top: 60px; }
.hero-title { font-size: 36px; font-weight: 900; line-height: 1.2; margin-bottom: 30px; }
.highlight-badge { background: var(--primary-color); color: #000; padding: 0 10px; border-radius: 4px; }
.hero-highlights-box { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.highlight-box-item { background: #111; border: 1px solid #222; padding: 20px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 250px; text-align: center; }
.highlight-box-item i { color: var(--primary-color); font-size: 28px; }
.highlight-box-content { display: flex; flex-direction: column; align-items: center; }
.highlight-box-content strong { display: block; color: var(--primary-color); font-size: 14px; margin-bottom: 4px; }
.highlight-box-content span { font-size: 12px; color: var(--text-gray); }
.highlight-yellow { background-color: var(--primary-color); color: #000; padding: 2px 8px; border-radius: 4px; font-weight: 800; }
.hero-subtitle { font-size: 18px; color: var(--text-gray); max-width: 800px; margin: 30px auto 40px; line-height: 1.6; }
.video-wrapper { max-width: 800px; margin: 0 auto 40px; border: 2px solid #222; border-radius: 15px; overflow: hidden; background: #000; box-shadow: 0 0 30px rgba(255,159,28,0.1); }
.hero-mockup-img { width: 100%; display: block; }

/* Buttons */
.cta-button { background: var(--primary-color); color: #000; border: none; padding: 20px 40px; font-size: 18px; font-weight: 900; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; transition: 0.3s; text-transform: uppercase; box-shadow: 0 4px 15px rgba(255,159,28,0.3); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,159,28,0.5); }

/* Grid */
.benefits-grid, .bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.benefit-card.featured-benefit { border: 2px solid var(--primary-color); background: rgba(255,159,28,0.05); }
.benefit-card, .bonus-card { background: #111; border: 1px solid #222; padding: 40px; border-radius: 15px; text-align: center; }
.benefit-icon, .bonus-badge { background: var(--primary-color); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: #000; }
.bonus-badge { width: auto; height: auto; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 800; }
.benefit-card h3, .bonus-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 20px; }
.benefit-card p, .bonus-card p { color: var(--text-gray); font-size: 14px; }

/* Pricing */
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.pricing-card { background: #111; border: 1px solid #222; padding: 40px 30px; border-radius: 20px; text-align: center; width: 350px; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border: 2px solid var(--primary-color); transform: scale(1.05); }
.featured-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #000; padding: 5px 15px; border-radius: 20px; font-weight: 800; font-size: 12px; }
.price-main { 
    color: var(--primary-color); 
    margin: 20px 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
}

.price-main .currency {
    font-size: 20px;
    margin-bottom: 15px;
    color: #888;
    font-weight: 600;
}

.price-main .amount {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}
.price-features { list-style: none; padding: 0; margin: 0 0 30px 0; text-align: left; flex-grow: 1; }
.price-features li { padding: 10px 0; border-bottom: 1px solid #222; font-size: 14px; color: #ccc; }
.price-features li i { color: var(--primary-color); margin-right: 10px; }
.price-features li.disabled { color: #555; text-decoration: line-through; }
.price-features li.disabled i { color: #555; }

/* Destaque nos Bônus */
.bonus-highlight-card {
    background: rgba(255, 159, 28, 0.1);
    border: 1px dashed var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.bonus-highlight-card h4 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.bonus-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-highlight-card ul li {
    font-size: 12px;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    padding: 0;
}

.bonus-highlight-card ul li i {
    color: #ffde00;
    font-size: 10px;
}

/* Pop-up de Upgrade Premium */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.popup-card {
    background: #111;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 159, 28, 0.2);
}

.popup-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
}

.popup-price {
    margin-bottom: 25px;
}

.popup-old-price {
    text-decoration: line-through;
    color: #555;
    font-size: 18px;
    margin-right: 10px;
}

.popup-new-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.popup-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-benefits li i.fa-check-circle {
    color: var(--primary-color);
}

.popup-bonus-item {
    display: flex;
    align-items: flex-start;
}

.popup-bonus-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-bonus-content i {
    color: #ffde00;
}

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

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 14px;
}

.popup-btn-accept {
    background: var(--primary-color);
    color: #000;
}

.popup-btn-accept:hover {
    transform: scale(1.05);
}

.popup-btn-decline {
    color: #555;
    font-size: 12px;
}

.popup-btn-decline:hover {
    color: #888;
}

/* FAQ Section */
.faq {
    background: #050505;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq .section-title {
    margin-bottom: 60px;
}

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

.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,159,28,0.1);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.faq-question h3 i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.faq-question .arrow {
    font-size: 14px;
    color: var(--primary-color);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, rgba(255, 159, 28, 0.03), transparent);
}

.faq-answer p {
    padding: 0 0 25px 40px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active {
    border-color: var(--primary-color);
    background: #151515;
}

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

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

/* Testimonials - Minimalist & Compact */
.testimonials {
    background: #000;
    padding: 60px 0;
}

.testimonials .section-title {
    margin-bottom: 40px;
    font-size: 24px;
}

.testimonials-slider {
    overflow: hidden;
    padding: 10px 0;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    min-width: 300px;
    max-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
}

.testimonial-card::before {
    display: none;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
}

.testimonial-user strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-user span {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .pricing-card.featured { transform: scale(1); }
    .highlight-box-item { min-width: 100%; }
}

/* Features Highlights Section */
.features-highlights {
    padding: 80px 0;
    background-color: #000;
}

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

.feature-card-new {
    background: #111;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

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

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon-circle i {
    font-size: 30px;
    color: #000;
}

.feature-card-new h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card-new p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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