/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --primary-color: #CC2827;
    --secondary-color: #0A0A0A;
    --text-color: #FFFFFF;
    --accent-color: #FF5252;
    --dark-bg: #121212;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

span {
    color: var(--primary-color);
}

/* Background Lights */
.background-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(204, 40, 39, 0.15) 0%, transparent 25%), 
                radial-gradient(circle at 80% 70%, rgba(204, 40, 39, 0.15) 0%, transparent 25%);
    z-index: -1;
}

/* Hero Section - Enhanced Persuasive Version */
.hero-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
    border-bottom: 3px solid var(--primary-color);
}

.limited-offer {
    background: rgba(204,40,39,0.8);
    color: white;
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.limited-offer span {
    background: white;
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 5px;
}

.countdown {
    display: inline-block;
    margin-left: 15px;
    background: #000;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.countdown span {
    background: none;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-section h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-section h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.hero-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-section h2 .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.author {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.author span {
    font-weight: 700;
    color: var(--primary-color);
}

.author::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.header-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 30px;
}

.exclusive-badge {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px dashed var(--primary-color);
    border-radius: 5px;
    background: rgba(204,40,39,0.1);
}

.warning-box {
    background: rgba(204, 40, 39, 0.15);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: left;
    border-radius: 0 8px 8px 0;
}

.warning-box i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.warning-box strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.warning-box p {
    margin: 0;
    line-height: 1.6;
}

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

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

.benefits li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 5px;
    transition: all 0.3s;
}

.benefits li:hover {
    background: rgba(204,40,39,0.1);
    transform: translateX(5px);
}

.benefits i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.3rem;
}

.benefits strong {
    color: #fff;
}

.social-proof {
    margin-top: 50px;
    text-align: left;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(204,40,39,0.3);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: rgba(204,40,39,0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial p {
    position: relative;
    z-index: 1;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.stars {
    width: 100px;
    margin-bottom: 10px;
}

.book-cover-container {
    position: relative;
    min-width: 320px;
    margin: 20px auto;
}

.book-cover {
    position: relative;
    display: inline-block;
}

.cover-image {
    width: 100%;
    max-width: 320px;
    border: 8px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(204, 40, 39, 0.4);
    transition: transform 0.3s;
    border-radius: 5px;
}

.cover-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 5px;
    transform: rotate(10deg);
    animation: pulse 2s infinite;
    z-index: 2;
}

.seal {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #111;
    color: white;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    z-index: 2;
}

.seal span {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.cta-button.pulse {
    display: block;
    margin-top: 40px;
    animation: pulse 2s infinite;
    font-size: 1.4rem;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    max-width: 320px;
}

.cta-button.pulse span {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 400;
    opacity: 0.9;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204,40,39,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(204,40,39,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,40,39,0); }
}

/* Countdown Section */
.countdown-section {
    background-color: rgba(204, 40, 39, 0.2);
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
    border-top: 1px solid rgba(204, 40, 39, 0.5);
    border-bottom: 1px solid rgba(204, 40, 39, 0.5);
}

.countdown-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    background-color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 5px;
    min-width: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: var(--primary-color);
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e03131;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 40, 39, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

.limited-offer {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.limited-offer i {
    color: var(--primary-color);
}

/* Efeitos Especiais */
@keyframes red-pulse {
    0% { text-shadow: 0 0 5px rgba(204, 40, 39, 0.5); }
    50% { text-shadow: 0 0 20px rgba(204, 40, 39, 0.8); }
    100% { text-shadow: 0 0 5px rgba(204, 40, 39, 0.5); }
}

@keyframes glitch {
    0% { text-shadow: -2px -2px 0 #CC2827, 2px 2px 0 #0A0A0A; }
    25% { text-shadow: 2px -2px 0 #CC2827, -2px 2px 0 #0A0A0A; }
    50% { text-shadow: -2px 2px 0 #CC2827, 2px -2px 0 #0A0A0A; }
    75% { text-shadow: 2px 2px 0 #CC2827, -2px -2px 0 #0A0A0A; }
    100% { text-shadow: -2px -2px 0 #CC2827, 2px 2px 0 #0A0A0A; }
}

@keyframes blood-drip {
    0% { background-position: 0 0; }
    100% { background-position: 0 100vh; }
}

/* Estilos da Seção */
.content-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: #0A0A0A;
    overflow: hidden;
    border-top: 1px solid #CC2827;
    border-bottom: 1px solid #CC2827;
}

.blood-drips-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,0 Q50,20 70,0 T90,20 L85,100 Q50,80 15,100 L10,20 Q30,10 30,0" fill="rgba(204,40,39,0.03)"/></svg>');
    animation: blood-drip 60s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

.container {
    position: relative;
    z-index: 2;
}

.content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    animation: red-pulse 3s infinite;
}

.red-glitch {
    color: #CC2827;
    animation: glitch 0.5s infinite;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.prohibited {
    color: #CC2827;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(204, 40, 39, 0.5);
    position: relative;
    display: inline-block;
}

.prohibited::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #CC2827;
    transform: rotate(-5deg);
    opacity: 0.7;
}

.highlight {
    color: #CC2827;
    font-weight: bold;
}

/* Grid de Conteúdo */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.content-item {
    background: linear-gradient(145deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s;
    border: 1px solid rgba(204, 40, 39, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.content-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(204, 40, 39, 0.2);
    border: 1px solid rgba(204, 40, 39, 0.7);
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 40, 39, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.content-item:hover::before {
    opacity: 1;
}

.secret-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #CC2827;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.content-icon {
    font-size: 3rem;
    color: #CC2827;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.content-item:hover .content-icon {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(204, 40, 39, 0.7);
}

.content-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #CCC;
    margin-bottom: 20px;
}

.reveal-text {
    color: #CC2827;
    font-weight: bold;
    position: relative;
}

.reveal-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CC2827;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.content-item:hover .reveal-text::after {
    transform: scaleX(1);
    transform-origin: left;
}

.content-hover {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 5px;
    margin-top: 15px;
}

.content-hover p {
    padding: 15px;
    margin: 0;
    font-size: 0.9rem;
    color: #EEE;
}

.content-item:hover .content-hover {
    max-height: 100px;
}

/* Aviso Final */
.content-warning {
    margin-top: 60px;
    padding: 15px;
    background: rgba(204, 40, 39, 0.1);
    border: 1px solid #CC2827;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    animation: red-pulse 3s infinite;
}

.content-warning i {
    color: #CC2827;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-item h3 {
        min-height: auto;
    }
}

/* Bonuses Section - Enhanced Persuasive Version */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(30,5,5,0.95) 100%);
    text-align: center;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.bonuses-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonuses-section h2 span {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204,40,39,0.5);
}

.bonus-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: 600;
    line-height: 1.5;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.bonus-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(204, 40, 39, 0.5);
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.bonus-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(204,40,39,0.2);
    border-color: var(--primary-color);
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.bonus-number {
    position: absolute;
    top: -18px;
    left: 25px;
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(204,40,39,0.5);
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 15px;
    color: #fff;
    line-height: 1.4;
}

.bonus-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.bonus-total {
    background: rgba(0,0,0,0.5);
    padding: 25px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.bonus-total p {
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
}

.bonus-total span {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.bonus-warning {
    background: rgba(204, 40, 39, 0.15);
    padding: 25px;
    margin: 50px 0 40px;
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-radius: 0 8px 8px 0;
}

.bonus-warning i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bonus-warning p {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 8px 0;
    line-height: 1.5;
}

.bonus-warning p:last-child {
    color: var(--primary-color);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
    margin-top: 30px;
    font-size: 1.3rem;
    padding: 20px 40px;
    position: relative;
}

.cta-button.pulse span {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 400;
    opacity: 0.8;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204,40,39,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(204,40,39,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,40,39,0); }
}
/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-header h4 {
    font-size: 1.1rem;
}

.stars {
    color: var(--primary-color);
    margin-top: 5px;
}

.testimonial-item p {
    font-style: italic;
    line-height: 1.6;
}

/* Author Section */
.author-section {
    padding: 60px 0;
    background-color: rgba(10, 10, 10, 0.7);
}

.author-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.author-image {
    flex: 1;
    min-width: 300px;
}

.author-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.author-text {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.author-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.author-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-badge {
    flex: 1;
    min-width: 200px;
}

.guarantee-badge img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.guarantee-text {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.guarantee-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.guarantee-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Efeitos Base */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(204, 40, 39, 0.5); }
    50% { box-shadow: 0 0 20px rgba(204, 40, 39, 0.8); }
    100% { box-shadow: 0 0 5px rgba(204, 40, 39, 0.5); }
}

@keyframes underline {
    0% { background-size: 0% 3px; }
    100% { background-size: 100% 3px; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Estilos da Seção */
.cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: #0A0A0A;
    border-top: 3px solid #CC2827;
    border-bottom: 3px solid #CC2827;
    overflow: hidden;
}

.red-glare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(204, 40, 39, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.urgency-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 40, 39, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 3s infinite;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #CC2827;
    text-transform: uppercase;
}

.underline-animate {
    background-image: linear-gradient(#CC2827, #CC2827);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 3px;
    animation: underline 2s forwards;
    padding-bottom: 5px;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.highlight-text {
    color: #CC2827;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(204, 40, 39, 0.5);
}

/* Countdown Timer */
.countdown-box {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid #CC2827;
    border-radius: 5px;
    padding: 15px;
    display: inline-block;
    margin: 20px 0;
}

.countdown-header {
    font-size: 1.2rem;
    color: #CC2827;
    margin-bottom: 10px;
    font-weight: bold;
}

.countdown-timer {
    font-size: 2rem;
    font-family: monospace;
    color: white;
    font-weight: bold;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    margin: 30px 0;
    border: 2px solid #CC2827;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

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

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.old-price span {
    color: #CC2827;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #CC2827;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(204, 40, 39, 0.7);
}

.new-price span {
    color: #CC2827;
}

.installments {
    font-size: 1.3rem;
    color: #CCC;
}

/* Botão CTA */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #CC2827, #990000);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: 30px 0;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(204, 40, 39, 0.5);
}

.heartbeat {
    animation: heartbeat 1.5s infinite;
}

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

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

.btn-text {
    display: block;
    margin-bottom: 5px;
}

.btn-badge {
    display: block;
    font-size: 0.8rem;
    background: white;
    color: #CC2827;
    padding: 3px 10px;
    border-radius: 20px;
    animation: blink 1.5s infinite;
}

/* Selos de Segurança */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 5px;
    border: 1px solid #333;
}

.glowing {
    animation: glow 2s infinite;
}

.badge-item i {
    color: #CC2827;
    font-size: 1.5rem;
}

/* Prova Social */
.social-proof {
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 1.1rem;
}

.proof-item i {
    color: #CC2827;
    font-size: 1.5rem;
}

.blink {
    animation: blink 1s infinite;
}

/* Aviso Final */
.final-warning {
    margin-top: 40px;
    padding: 15px;
    background: rgba(204, 40, 39, 0.1);
    border-left: 4px solid #CC2827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-warning i {
    color: #CC2827;
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: var(--dark-bg);
    font-size: 0.9rem;
    opacity: 0.7;
}

footer p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 40, 39, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(204, 40, 39, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 40, 39, 0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header h2 {
        font-size: 1.2rem;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .header-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 10px 15px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .content-section h2, 
    .bonuses-section h2, 
    .testimonials-section h2, 
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.persuasive-section {
    position: relative;
    background-color: #0A0A0A;
    color: white;
    padding: 4rem 2rem;
    overflow: hidden;
    border-top: 3px solid #CC2827;
    border-bottom: 3px solid #CC2827;
}

.red-lights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(204, 40, 39, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(204, 40, 39, 0.4) 0%, transparent 45%),
                radial-gradient(circle at 50% 20%, rgba(204, 40, 39, 0.2) 0%, transparent 35%);
    animation: pulse 8s infinite alternate;
}

.persuasive-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.persuasive-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #CC2827;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(204, 40, 39, 0.5);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
    background: rgba(204, 40, 39, 0.2);
    padding: 1rem;
    border-left: 3px solid #CC2827;
}

.persuasive-bullets {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.bullet-item {
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(10, 10, 10, 0.7);
    border-left: 2px solid #CC2827;
    transition: all 0.3s ease;
}

.bullet-item:hover {
    background: rgba(204, 40, 39, 0.1);
    transform: translateX(5px);
}

.bullet-icon {
    color: #CC2827;
    margin-right: 10px;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(to bottom, #CC2827, #990000);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: 2rem 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 40, 39, 0.4);
}

.cta-button:hover {
    background: linear-gradient(to bottom, #990000, #660000);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 40, 39, 0.6);
}

.warning-text {
    font-size: 0.9rem;
    color: #CC2827;
    font-style: italic;
    margin-top: 1rem;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .persuasive-content h2 {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

/* Estilos Corrigidos para o CTA */
.cta-button-fixed {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, #cc2827 0%, #a02020 100%);
    color: white !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(204, 40, 39, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    position: fixed !important; /* Força posição fixa */
    right: 20px !important; /* Força posição à direita */
    bottom: 20px !important; /* Força posição inferior */
    z-index: 1000 !important; /* Garante que fique acima de outros elementos */
}

.heartbeat {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.btn-text {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
/* Centraliza TODOS os botões mantendo outros estilos */
button, 
a[class*="button"], 
[class*="button"]:not(.no-center) {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  text-align: center !important;
}

/* Exceção para botões fixos (como CTAs flutuantes) */
.cta-button-fixed,
.button-fixed {
  margin-left: initial !important;
  margin-right: initial !important;
  float: initial !important;
}