body,
html {
    overflow-x: hidden
}

#countdown,
h2 {
    font-weight: 900
}

.header,
.urgency-bar {
    left: 0;
    position: relative
}

.btn-header,
.urgency-bar,
body,
h2 {
    color: var(--light-text)
}

.btn,
.hero,
.urgency-bar,
h2 {
    text-align: center
}

.floating-cta,
.header,
.step-item,
.urgency-bar {
    position: relative
}

.card,
.faq-answer,
.faq-item {
    overflow: hidden
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #B8860B;
    --accent-color: #FFD700;
    --dark-bg: #000000;
    --light-text: #FFFFFF;
    --dark-text: #000000;
    --header-bg: rgba(0, 0, 0, 0.95);
    --urgency-bg: #8B0000;
    --section-bg: #0F0F0F;
    --highlight-yellow: #D4AF37;
    --header-height: 60px;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --text-muted: #CCCCCC;
    
    --gradient-primary: linear-gradient(135deg, #D4AF37, #B8860B);
    --gradient-accent: linear-gradient(135deg, #8B0000, #A52A2A);
    --gradient-neon: linear-gradient(45deg, #D4AF37, #FFD700, #B8860B, #DAA520);
    --gradient-dark: linear-gradient(135deg, #1A1A1A, #000000);
    
    --shadow-primary: 0 0 15px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
    --shadow-accent: 0 0 15px rgba(139, 0, 0, 0.3), 0 0 30px rgba(139, 0, 0, 0.1);
    --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    --shadow-dark: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

/* scroll-behavior removido para performance */

body {
    font-family: 'Poppins', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    line-height: 1.5;
    font-size: 16px;
    color: var(--light-text);
    overflow-x: hidden;
    font-weight: 500
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: -1
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px
}

h2 {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: 40px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase
}

h2 .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.9), 0 0 40px rgba(212, 175, 55, 0.6);
    /* Animação removida para performance */
}

section {
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.urgency-bar {
    background: linear-gradient(90deg, #8B0000, #A52A2A, #8B0000);
    padding: 8px 15px;
    font-weight: 700;
    font-size: clamp(.75rem, 2.5vw, .9rem);
    top: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.6), 0 0 30px rgba(165, 42, 42, 0.4);
    border-bottom: 1px solid rgba(165, 42, 42, 0.4);
    /* Animação removida para performance */
    text-transform: uppercase;
    letter-spacing: 0.5px
}

/* Animação removida para performance */

#countdown,
.viewers {
    background-color: rgba(0, 0, 0, .2);
    padding: 1px 4px;
    border-radius: 2px
}

.urgency-bar span {
    margin: 1px 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5)
}

.viewers {
    display: inline-flex;
    align-items: center
}

.viewers i {
    margin-right: 3px;
    color: var(--highlight-yellow);
    font-size: 0.9em
}

.price-old,
.scarcity-info i {
    margin-right: 8px
}

.header {
    background: rgba(0, 0, 0, 0.95);
    /* backdrop-filter removido para performance */
    padding: 15px 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 4px 20px rgba(0, 0, 0, 0.8)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    height: 45px
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s, box-shadow .3s;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    -webkit-appearance: none;
    appearance: none;
    text-transform: uppercase
}

.price-old,
.value-old {
    text-decoration: line-through
}

.btn-header {
    background: var(--gradient-primary);
    font-size: clamp(.85rem, 2.8vw, 1rem);
    padding: 14px 28px;
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
    border: 2px solid rgba(212, 175, 55, 0.6);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
    /* Animação removida para performance */
    text-transform: uppercase;
    letter-spacing: 1px
}

/* Animação removida para performance */

.btn-cta {
    background: linear-gradient(135deg, #00FF88, #00CC66, #00AA44);
    color: #000000;
    font-size: clamp(1.3rem, 5vw, 1.5rem);
    padding: 22px 45px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6), 0 0 50px rgba(0, 204, 102, 0.4);
    border: 3px solid rgba(0, 255, 136, 0.8);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Animação removida para performance */
    position: relative;
    overflow: hidden
}

/* Animação removida para performance */

.btn:active {
    transform: scale(.97)
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4)
}

.btn-header:hover {
    box-shadow: var(--shadow-primary), 0 10px 25px rgba(0, 212, 255, 0.4)
}

.btn-cta:hover {
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.8), 0 0 70px rgba(0, 204, 102, 0.6), 0 15px 40px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px) scale(1.05);
}

/* Animação removida para performance */

/* Classes de animação removidas para performance */

.hero {
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    padding: 60px 0;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden
}



/* Media query removido para performance */

/* ::before removido para performance */



/* Animação removida para performance */

.headline {
    font-size: clamp(2.5rem, 9vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--light-text);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.1;
    letter-spacing: -0.8px;
    text-transform: uppercase
}

.headline .highlight {
    color: var(--primary-color);
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.15));
    padding: 0 5px;
    border-radius: 4px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.9), 0 0 30px rgba(212, 175, 55, 0.5);
    animation: neon-flicker 3s ease-in-out infinite alternate
}

.subheadline {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5
}

.cta-block {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), var(--shadow-primary);
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden
}

/* ::before removido para performance */

/* Animação removida para performance */

.bonus-item .value-tag,
.highlight-price {
    background-color: var(--highlight-yellow)
}

.price-info {
    font-size: clamp(1rem, 3.2vw, 1.1rem);
    color: rgba(255, 255, 255, .9)
}

.price-old {
    opacity: .8;
    font-size: 1.1em
}

.highlight-price {
    color: var(--dark-text);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFF00, #FFD700);
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.9), 0 0 30px rgba(255, 255, 0, 0.6);
    animation: neon-flicker 1.5s ease-in-out infinite alternate
}

.price-current {
    font-size: clamp(3rem, 12vw, 3.8rem);
    font-weight: 900;
    color: var(--light-text);
    margin: 8px 0;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.9), 0 0 50px rgba(212, 175, 55, 0.7), 3px 3px 7px rgba(0, 0, 0, 0.4);
    /* Animação removida para performance */
}

.price-gold {
    color: #D4AF37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.4);
    font-weight: 900;
    display: inline-block;
}

.price-current-final {
    margin: 0px 0px;
    margin-top: -2rem !important;
}

.price-emphasis {
    font-size: .5em;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 5px
}

.payment-info {
    font-size: clamp(.85rem, 3vw, .95rem);
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 20px
}

.guarantee-seal {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, .15);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2)
}

.guarantee-seal i {
    font-size: clamp(2.2rem, 7vw, 2.5rem);
    color: var(--highlight-yellow);
    filter: drop-shadow(0 0 5px var(--highlight-yellow))
}

.guarantee-seal span {
    font-size: clamp(.85rem, 3vw, .95rem);
    color: rgba(255, 255, 255, .9);
    text-align: left;
    line-height: 1.3
}

.scarcity-info {
    margin-top: 15px;
    font-size: clamp(.9rem, 3.2vw, 1rem);
    font-weight: 700;
    color: var(--highlight-yellow);
    background-color: rgba(0, 0, 0, .2);
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block
}

.faq,
.how-it-works,
.value-stacking {
    background: 
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    position: relative
}

/* ::before removido para performance */

.section-subheadline {
    text-align: center;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.5
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, .25);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    border-left: 6px solid var(--primary-color);
    transition: transform .2s, box-shadow .2s
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3)
}

.floating-cta.visible,
.sales-notification.show {
    opacity: 1;
    transform: translateY(0)
}

.value-item i {
    font-size: clamp(1.8rem, 6vw, 2rem);
    color: var(--primary-color);
    width: 45px;
    text-align: center;
    flex-shrink: 0
}

.value-item h3 {
    font-size: clamp(1.05rem, 3.8vw, 1.15rem);
    margin-bottom: 5px;
    color: var(--light-text)
}

.value-item p {
    font-size: clamp(.9rem, 3.1vw, .95rem);
    color: rgba(255, 255, 255, .75)
}

.value-tag {
    margin-left: auto;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: clamp(.8rem, 2.8vw, .9rem);
    white-space: nowrap
}

.bonus-item {
    border-left-color: var(--highlight-yellow)
}

.bonus-item i {
    color: var(--highlight-yellow)
}

.total-value {
    text-align: center;
    margin-top: 30px;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: rgba(255, 255, 255, .8)
}

.value-old {
    opacity: .7
}

.final-price-summary {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    font-weight: 700;
    color: var(--light-text)
}

.final-price {
    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: 900;
    text-shadow: 0 0 10px var(--accent-color)
}

.small-margin {
    margin-top: 10px !important
}

.social-proof,
.target-audience {
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1))
}

.audience-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.05));
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    /* backdrop-filter removido para performance */
    transition: all 0.3s ease
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary), 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-color)
}

.audience-item h4 {
    font-size: clamp(1.15rem, 4vw, 1.3rem);
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4)
}

.audience-item h4 .highlight {
    background-color: rgba(255, 165, 0, .2);
    padding: 2px 4px;
    border-radius: 3px
}

.audience-item p {
    font-size: clamp(.95rem, 3.4vw, 1.05rem);
    color: rgba(255, 255, 255, .85)
}

.step-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -15px;
    width: 2px;
    background-color: rgba(255, 107, 0, .3);
    z-index: -1
}

.step-number {
    background: var(--gradient-primary);
    color: var(--dark-text);
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    font-weight: 900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
    border: 2px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: step-glow 2s ease-in-out infinite alternate
}

/* Animação removida para performance */

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none
}

.step-item h3 {
    font-size: clamp(1.15rem, 4vw, 1.3rem);
    margin-bottom: 8px;
    color: var(--light-text)
}

.step-item p,
.testimonial p {
    font-size: clamp(.95rem, 3.4vw, 1.05rem)
}

.step-item p {
    color: rgba(255, 255, 255, .8)
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px
}

.testimonial {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0.03;
    pointer-events: none
}

.stars {
    color: var(--highlight-yellow);
    font-size: 1.1rem;
    margin-bottom: 10px
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .95);
    line-height: 1.5
}

.verified {
    font-size: .8rem;
    color: #00e600;
    font-weight: 700;
    margin-left: 5px;
    opacity: .9
}

.disclaimer,
.floating-cta {
    margin-left: auto;
    margin-right: auto
}

.verified i {
    margin-right: 3px
}

.testimonial span:not(.verified) {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: clamp(.85rem, 3vw, .95rem);
    display: block;
    margin-top: 10px
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    transition: all 0.3s ease
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4), 0 0 15px rgba(212, 175, 55, 0.3)
}

.faq-question {
    background-color: transparent;
    color: var(--light-text);
    border: none;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .2s
}

.faq-question i,
.final-cta,
.floating-cta,
.footer {
    text-align: center
}

.faq-question:hover {
    background-color: rgba(255, 107, 0, .1)
}

.faq-question i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4)
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform .3s;
    margin-left: 15px;
    color: var(--primary-color)
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg)
}

.faq-answer {
    background-color: rgba(0, 0, 0, .15);
    padding: 0 20px;
    max-height: 0;
    transition: max-height .4s, padding .4s
}

.faq-answer p {
    padding: 20px 0;
    color: rgba(255, 255, 255, .85);
    font-size: clamp(.95rem, 3.4vw, 1rem)
}

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

.final-cta {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    border-top: 3px solid var(--primary-color);
    border-bottom: none;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    pointer-events: none;
    animation: final-glow 4s ease-in-out infinite alternate
}

/* Animação removida para performance */

.final-cta h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    color: var(--highlight-yellow);
    text-shadow: 0 0 10px var(--highlight-yellow)
}

.final-cta h2 .highlight {
    color: var(--light-text);
    background-color: rgba(255, 215, 0, .2)
}

.final-cta p {
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .95)
}

.final-cta .cta-block {
    max-width: 500px;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    /* backdrop-filter removido para performance */
    box-shadow: var(--shadow-primary), 0 25px 60px rgba(0, 0, 0, 0.9)
}

.final-cta .price-info {
    font-size: clamp(1.1rem, 3.8vw, 1.2rem)
}

.final-cta .price-current {
    font-size: clamp(3.2rem, 13vw, 4rem)
}

.final-cta .payment-info {
    font-size: clamp(.9rem, 3.2vw, 1rem)
}

.final-guarantee {
    margin-top: 30px;
    background-color: rgba(0, 0, 0, .25)
}

.secure-payment-icons {
    margin-top: 20px;
    color: rgba(255, 255, 255, .7)
}

.secure-payment-icons span {
    display: block;
    margin-bottom: 10px;
    font-size: .9rem
}

.secure-payment-icons i {
    font-size: 1.8rem;
    margin: 0 8px;
    opacity: .8
}

.final-scarcity {
    margin-top: 20px;
    background-color: rgba(255, 0, 0, .2);
    color: #fdd;
    border: 1px solid var(--urgency-bg)
}

.final-scarcity i {
    color: #fdd
}

.footer {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    color: rgba(255, 255, 255, 0.5);
    padding: 50px 0 25px;
    font-size: .85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.01) 0%, transparent 40%);
    pointer-events: none
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    opacity: .8
}

.footer p {
    margin-bottom: 8px
}

.footer a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s
}

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

.disclaimer {
    font-size: .75rem;
    margin-top: 20px;
    opacity: .4;
    max-width: 500px
}

.floating-cta,
.sales-notification {
    opacity: 0;
    transform: translateY(20px)
}

.floating-cta {
    bottom: 20px;
    left: 4%;
    right: 4%;
    width: 92%;
    max-width: 450px;
    z-index: 999;
    background: linear-gradient(135deg, #00FF88, #00CC66, #00AA44);
    color: #000000;
    padding: 18px 25px;
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6), 0 0 50px rgba(0, 204, 102, 0.4), 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.8);
    border-radius: 50px;
    text-decoration: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.floating-cta.visible {
    visibility: visible
}

.sales-notification {
    position: fixed;
    bottom: 95px;
    left: 10px;
    right: 10px;
    margin: 0 auto;
    max-width: 350px;
    background-color: rgba(0, 0, 0, .85);
    backdrop-filter: blur(5px);
    color: var(--light-text);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: .9rem;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    transition: opacity .5s, transform .5s
}

.sales-notification i {
    color: var(--accent-color);
    font-size: 1.2rem
}

.sales-notification strong {
    color: var(--secondary-color)
}

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

.card {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1)
}

/* ::before removido para performance */

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    border-color: var(--primary-color)
}

/* hover ::before removido para performance */

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0
}

.card h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin: 20px 20px 8px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4)
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: .95em;
    line-height: 1.6;
    margin: 0 20px 20px;
    flex-grow: 1
}

/* @media (max-width:720px) {
    html{
        font-size: 90%;
    }
} */

@media (max-width:420px) {
    .content-item,
    .step-item,
    .value-item {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
    .content-item,
    .value-item {
        align-items: center
    }
    .content-item i,
    .value-item i {
        width: auto;
        margin-bottom: 5px
    }
    .value-tag {
        margin-left: 0;
        margin-top: 10px
    }
    .header .btn-header,
    .step-item::after {
        display: none
    }
    .guarantee-seal {
        flex-direction: column;
        text-align: center
    }
    .sales-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px)
    }
    .header .container {
        justify-content: center
    }
    .cta-block {
        padding: 20px
    }
    .price-info {
        font-size: clamp(1.1rem, 3.5vw, 1.2rem)
    }
    .price-current {
        font-size: clamp(2.8rem, 11vw, 3.5rem);
        margin: 5px 0
    }
    .final-cta .price-current {
        font-size: clamp(3rem, 12vw, 3.8rem)
    }
    .payment-info {
        font-size: clamp(.95rem, 3.2vw, 1.05rem);
        margin-bottom: 15px
    }
    .btn-cta {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        padding: 15px 25px;
        margin-top: 15px
    }
    .guarantee-seal span {
        font-size: clamp(.9rem, 3.2vw, 1rem)
    }
    .scarcity-info {
        font-size: clamp(.95rem, 3.4vw, 1.05rem);
        padding: 6px 10px
    }
    .hero .cta-block {
        padding: 25px 15px;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
            linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .4)
    }
    .hero .price-info {
        font-size: clamp(1.2rem, 4.5vw, 1.4rem);
        color: rgba(255, 255, 255, .95)
    }
    .hero .price-current {
        font-size: clamp(3.5rem, 15vw, 4.5rem);
        margin: 8px 0;
        color: #fff;
        text-shadow: 0 0 15px rgba(255, 255, 255, .7)
    }
    
    /* Manter cor dourada para o preço em resoluções menores */
    .hero .price-current .price-gold {
        color: #D4AF37 !important;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.4) !important;
    }
    .hero .payment-info {
        font-size: clamp(1.05rem, 4vw, 1.2rem);
        margin-bottom: 20px;
        color: rgba(255, 255, 255, .9);
        font-weight: 500
    }
    .hero .btn-cta {
        font-size: clamp(1.3rem, 5.5vw, 1.5rem);
        padding: 18px 25px;
        margin-top: 0;
        background: linear-gradient(45deg, #0f0, #0c0);
        color: #030;
        box-shadow: 0 6px 15px rgba(0, 255, 0, .5);
        border: 2px solid rgba(255, 255, 255, .5)
    }
    .hero .guarantee-seal {
        margin-top: 25px;
        padding: 12px;
        background-color: rgba(0, 0, 0, .2);
        border-radius: 8px
    }
    .hero .guarantee-seal span {
        font-size: clamp(1rem, 3.8vw, 1.1rem);
        line-height: 1.4
    }
    .hero .scarcity-info {
        font-size: clamp(1rem, 3.8vw, 1.1rem);
        padding: 10px 12px;
        margin-top: 15px;
        background-color: rgba(255, 0, 0, .15);
        border: 1px solid rgba(255, 0, 0, .5);
        color: #fff
    }
    .hero .scarcity-info i {
        color: #fdd
    }
}

/* Estilos para páginas legais */
.legal-content {
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    padding: 60px 0;
}

.content-block {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    /* backdrop-filter removido para performance */
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary), 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-color);
}

.content-block h2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
}

.content-block h2 .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.9), 0 0 40px rgba(212, 175, 55, 0.6);
    /* Animação removida para performance */;
}

.content-block p {
    font-size: clamp(0.95rem, 3.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-block ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-block li {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.5;
}

.content-block strong {
    color: var(--primary-color);
    font-weight: 700;
}

.back-button-container {
    text-align: center;
    margin: 40px 0;
}

.btn-back {
    background: var(--gradient-primary);
    color: var(--dark-text);
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    padding: 15px 30px;
    box-shadow: var(--shadow-primary);
    border: 2px solid rgba(212, 175, 55, 0.6);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
    /* Animação removida para performance */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-primary), 0 10px 25px rgba(0, 212, 255, 0.4);
    color: var(--dark-text);
    text-decoration: none;
}

/* DESABILITAR TODOS OS HOVERS EM MOBILE (até 728px) */
@media (max-width: 728px) {
    /* Remover todos os hovers que causam lag no touch */
    .btn:hover,
    .btn-header:hover,
    .btn-cta:hover,
    .card:hover,
    .audience-item:hover,
    .value-item:hover,
    .faq-item:hover,
    .content-block:hover {
        transform: none !important;
        box-shadow: none !important;
        border-color: inherit !important;
        border-width: inherit !important;
    }
    
    /* Remover hover de elementos específicos */
    .card:hover::before {
        opacity: 0 !important;
    }
    
    .btn:active {
        transform: none !important;
    }
    
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .btn-header:hover {
        box-shadow: none !important;
    }
    
    .btn-cta:hover {
        box-shadow: none !important;
        transform: none !important;
    }
    
    .card:hover {
        transform: none !important;
        box-shadow: inherit !important;
        border-color: inherit !important;
    }
    
    .audience-item:hover {
        transform: none !important;
        box-shadow: inherit !important;
        border-color: inherit !important;
    }
    
    .value-item:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    
    .faq-item:hover {
        border-color: inherit !important;
        box-shadow: none !important;
    }
    
    .faq-question:hover {
        background-color: transparent !important;
    }
    
    .content-block:hover {
        transform: none !important;
        box-shadow: inherit !important;
        border-color: inherit !important;
    }
    
    .footer a:hover {
        color: inherit !important;
    }
    
    .btn-back:hover {
        transform: none !important;
        box-shadow: inherit !important;
        color: inherit !important;
        text-decoration: none !important;
    }
}

@media (max-width:600px) {
    .card-grid {
        grid-template-columns: 1fr;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px
    }
    .card h3 {
        font-size: 1.3em
    }
    .card p {
        font-size: .9em
    }
    .card img {
        object-fit: contain
    }
    body {
        font-size: 15px
    }
    .container,
    .header .container {
        padding: 0 10px
    }
    section {
        padding: 30px 0
    }
    h2 {
        margin-bottom: 20px;
        font-size: clamp(1.6rem, 5.5vw, 1.9rem)
    }
    .section-subheadline {
        margin-bottom: 25px;
        font-size: clamp(1rem, 3.5vw, 1.1rem)
    }
    .urgency-bar {
        padding: 5px 8px;
        font-size: clamp(.7rem, 2vw, .8rem);
        justify-content: center
    }
    .logo {
        height: 40px
    }
    .btn-header {
        padding: 8px 15px
    }
    .hero {
        padding: 40px 0
    }
    .headline {
        font-size: clamp(1.8rem, 6.5vw, 2.2rem);
        margin-bottom: 15px
    }
    .subheadline {
        margin-bottom: 25px
    }
    .audience-item,
    .cta-block,
    .testimonial {
        padding: 20px
    }
    .price-current {
        font-size: clamp(2.8rem, 11vw, 3.5rem)
    }
    .btn-cta {
        padding: 15px 30px;
        font-size: clamp(1.1rem, 4vw, 1.25rem)
    }
    .step-item {
        gap: 15px;
        margin-bottom: 20px
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: clamp(1.4rem, 4.5vw, 1.7rem)
    }
    .faq-question {
        padding: 15px;
        font-size: clamp(1rem, 3.5vw, 1.1rem)
    }
    .final-cta {
        padding-bottom: 100px
    }
    .footer {
        padding: 30px 0 15px
    }
}