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

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0C0A0A;
    color: #fff;
    overflow-x: hidden;
}

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

/* Animação de Pulsar */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Barra de Notificação */
.notification-bar {
    background-color: #ff0000;
    color: white;
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.notification-bar i {
    margin-right: 5px;
}

.timer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(12, 10, 10, 0.9), rgba(12, 10, 10, 0.9));
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(12, 10, 10, 0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.hero h1 span {
    color: #ff0000;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

.cta-box {
    background-color: rgba(20, 20, 20, 0.8);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    margin: 30px auto 0;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.price-box {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2rem;
}

.current-price {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 5px 0;
}

.installment {
    color: #ccc;
    font-size: 1rem;
}

.cta-button {
    display: block;
    background: linear-gradient(to right, #2a8613, #2a8613);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: none;
    width: 100%;
    cursor: pointer;
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.secure-checkout img {
    height: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-image-container {
        margin: 20px auto;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px;
    }
}
/* Seção de Problema - Versão Aprimorada */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff0000;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, rgba(12, 10, 10, 0) 60%);
    z-index: 0;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

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

.problem-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(50, 50, 50, 0.1) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-item:hover {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9) 0%, rgba(70, 70, 70, 0.2) 100%);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
}

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

.problem-item .icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.problem-item:hover .icon {
    transform: rotate(10deg) scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.problem-item p {
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.problem-item:hover p {
    color: #fff;
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(to right, rgba(20, 20, 20, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    border-left: 5px solid #ff0000;
    padding: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.highlight-box:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.highlight-box::after {
    content: 'ALERTA';
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.highlight-box p {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
}

.highlight-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlight-box li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-box li:hover {
    background-color: rgba(255, 0, 0, 0.2);
    transform: translateX(5px);
}

.highlight-box li i {
    color: #ff0000;
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Seção de Solução - Versão Aprimorada */
.solution-section {
    padding: 100px 0;
    background: url('images/diagonal-pattern.png') #0C0A0A;
    background-size: 300px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(255, 0, 0, 0.25) 0%, rgba(12, 10, 10, 0) 50%);
    z-index: 0;
    animation: move-gradient 15s infinite alternate;
}

@keyframes move-gradient {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(-20px, -20px); }
}

.solution-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.solution-section h2 span {
    background: linear-gradient(to right, #ff0000 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.solution-section h2 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #ff0000 50%, transparent 100%);
}

.solution-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-text {
    flex: 1;
}

.solution-text p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.solution-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
}

.solution-text strong {
    color: #ff0000;
    font-weight: 700;
    position: relative;
}

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

.solution-text strong:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.solution-image {
    flex: 1;
    text-align: center;
    perspective: 1000px;
}

.solution-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 0, 0, 0.3);
}

.solution-image:hover img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.6);
}

.benefits-box {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.benefits-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    z-index: -1;
}

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

.benefits-box h3 {
    color: #ff0000;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.benefits-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #ff0000 50%, transparent 100%);
}

.benefits-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefits-box li {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-box li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.benefits-box li:hover {
    background-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.benefits-box li:hover::before {
    width: 100%;
    opacity: 0.1;
}

.benefits-box li i {
    color: #ff0000;
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 25px;
    transition: all 0.3s ease;
}

.benefits-box li:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Responsividade para as seções aprimoradas */
@media (max-width: 992px) {
    .solution-content {
        flex-direction: column;
    }
    
    .solution-image {
        margin-top: 40px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .problem-section h2,
    .solution-section h2 {
        font-size: 2.2rem;
    }
    
    .highlight-box ul,
    .benefits-box ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .problem-section h2,
    .solution-section h2 {
        font-size: 1.8rem;
    }
    
    .problem-item {
        padding: 20px 15px;
    }
    
    .highlight-box p,
    .benefits-box h3 {
        font-size: 1.1rem;
    }
}
/* Seção de Depoimentos - Versão Premium */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
    border-bottom: 3px solid #ff0000;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, 
                rgba(255, 0, 0, 0.2) 0%, 
                rgba(17, 17, 17, 0) 50%);
    z-index: 0;
    animation: move-gradient 15s infinite alternate;
}

@keyframes move-gradient {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(-20px, -20px); }
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,0,0,0.3);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.testimonial {
    display: none;
    background: linear-gradient(145deg, 
                rgba(30,30,30,0.9) 0%, 
                rgba(50,50,50,0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                rgba(255,0,0,0.1) 0%, 
                rgba(255,0,0,0) 50%,
                rgba(255,0,0,0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    display: block;
    animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9) rotateY(-10deg); }
    to { opacity: 1; transform: scale(1) rotateY(0); }
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid #ff0000;
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.testimonial:hover .testimonial-content img {
    transform: scale(1.05);
    filter: grayscale(0%);
    box-shadow: 0 15px 40px rgba(255,0,0,0.5);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255,0,0,0.3);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p::before {
    top: -20px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -40px;
    right: 0;
}

.author {
    font-weight: 800;
    color: #ff0000;
    font-size: 1.3rem;
    display: inline-block;
    position: relative;
    padding: 0 30px;
}

.author::before,
.author::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, 
                transparent 0%, 
                #ff0000 50%, 
                transparent 100%);
}

.author::before {
    left: 0;
}

.author::after {
    right: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,0,0,0.3);
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
                rgba(255,0,0,0.8) 0%, 
                rgba(200,0,0,0.8) 100%);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dot.active, .dot:hover {
    border-color: rgba(255,0,0,0.6);
}

.dot.active::before, .dot:hover::before {
    transform: scale(1);
}

/* Efeito de Selo de Verificação */
.testimonial-content::after {
    content: '✓ VERIFICADO';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Efeito de Destaque no Hover */
.testimonial:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(255,0,0,0.4);
    border-color: rgba(255, 0, 0, 0.7);
}

.testimonial:hover::before {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-section h2 {
        font-size: 2.4rem;
    }
    
    .testimonial-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .testimonial-content img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .author {
        font-size: 1.1rem;
    }
}
/* Seção de Conteúdo - Versão Premium */
.content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, 
                rgba(255, 0, 0, 0.25) 0%, 
                rgba(12, 10, 10, 0) 50%);
    z-index: 0;
    animation: move-gradient 15s infinite alternate;
}

@keyframes move-gradient {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(-20px, -20px); }
}

.content-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,0,0,0.3);
}

.content-section h2 span {
    position: relative;
    display: inline-block;
}

.content-section h2 span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #ff0000 50%, transparent 100%);
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.module {
    background: linear-gradient(145deg, 
                rgba(30,30,30,0.9) 0%, 
                rgba(50,50,50,0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                rgba(255,0,0,0.1) 0%, 
                rgba(255,0,0,0) 50%,
                rgba(255,0,0,0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.module:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(255,0,0,0.4);
    border-color: rgba(255, 0, 0, 0.7);
}

.module:hover::before {
    opacity: 1;
}

.module h3 {
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 10px;
}

.module h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ff0000 0%, transparent 100%);
}

.module h3 i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.module:hover h3 i {
    transform: rotate(10deg) scale(1.1);
    text-shadow: 0 0 15px rgba(255,0,0,0.5);
}

.module ul {
    list-style: none;
}

.module li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.module li::before {
    content: '✓';
    color: #ff0000;
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.module:hover li::before {
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.module:hover li {
    transform: translateX(5px);
}

.bonus-section {
    background: linear-gradient(145deg, 
                rgba(30,30,30,0.9) 0%, 
                rgba(50,50,50,0.9) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    border: 2px dashed rgba(255, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(255,0,0,0.2);
    overflow: hidden;
}

.bonus-section::before {

    position: absolute;
    top: -15px;
    right: 30px;
    background: #ff0000;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
    z-index: 2;
}

.bonus-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
                rgba(255,0,0,0.1) 0%, 
                transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    z-index: -1;
}

.bonus-section h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    position: relative;
}

.bonus-section h3 i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.bonus-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #ff0000 50%, transparent 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bonus-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #ff0000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.bonus-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,0,0,0.3);
    border-left: 5px solid #ff6b6b;
}

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

.bonus-item h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-left: 35px;
}

.bonus-item h4::before {
    content: '🎁';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.bonus-item p {
    color: #ccc;
    line-height: 1.7;
    padding-left: 35px;
}

/* Responsividade */
@media (max-width: 992px) {
    .content-section h2 {
        font-size: 2.4rem;
    }
    
    .modules-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 80px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .bonus-section {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .module {
        padding: 25px;
    }
    
    .bonus-item h4 {
        font-size: 1.1rem;
    }
}
/* Seção de Garantia */
.guarantee-section {
    padding: 60px 0;
    background-color: #111;
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, rgba(17, 17, 17, 0) 70%);
    z-index: 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.guarantee-box img {
    width: 150px;
}

.guarantee-text h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.guarantee-text p {
    line-height: 1.6;
}

/* Seção de Oferta Final - Máxima Conversão */
.final-offer {
    padding: 100px 0;
    background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
    border-bottom: 3px solid #ff0000;
}

.final-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, 
                rgba(255, 0, 0, 0.3) 0%, 
                rgba(12, 10, 10, 0) 60%);
    z-index: 0;
    animation: pulse-glow 8s infinite alternate;
}

.final-offer::after {
    content: 'OFERTA POR TEMPO LIMITADO';
    position: absolute;
    top: 20px;
    right: 0;
    background: #ff0000;
    color: white;
    padding: 10px 30px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
    transform: rotate(15deg);
    z-index: 2;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

.final-offer h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,0,0,0.3);
    animation: textGlow 2s infinite alternate;
}

.final-offer h2 span {
    position: relative;
    display: inline-block;
    animation: bounce 1s infinite alternate;
}

.offer-container {
    background: linear-gradient(145deg, 
                rgba(30,30,30,0.95) 0%, 
                rgba(50,50,50,0.95) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 3px solid #ff0000;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(255,0,0,0.3);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    overflow: hidden;
}

.offer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stamp.png') no-repeat 95% 5%/100px;
    opacity: 0.8;
    z-index: -1;
}

.offer-container:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(255,0,0,0.5);
}

.offer-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.package {
    flex: 2;
    position: relative;
}

.package::before {
    content: 'GARANTIDO';
    position: absolute;
    top: -15px;
    left: -15px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
    transform: rotate(-15deg);
    z-index: 3;
}

.package h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.package h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #ff0000 50%, transparent 100%);
}

.package ul {
    list-style: none;
}

.package li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff0000 0%, #ff6b6b 100%);
    transition: width 0.3s ease;
}

.package li:hover {
    background: rgba(255,0,0,0.1);
    transform: translateX(10px);
}

.package li:hover::before {
    width: 100%;
    opacity: 0.1;
}

.package li i {
    color: #ff0000;
    font-size: 1.3rem;
    min-width: 25px;
    transition: all 0.3s ease;
}

.package li:hover i {
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.price-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.price-box-large {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    padding: 30px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border: 2px dashed rgba(255,0,0,0.5);
}

.price-box-large::before {
    content: 'MENOR PREÇO DO ANO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: white;
    padding: 3px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    white-space: nowrap;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff0000;
    transform: translateY(-50%);
}

.current-price {
    color: #ff0000;
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0;
    line-height: 1;
    text-shadow: 0 5px 20px rgba(255,0,0,0.3);
    position: relative;
    display: inline-block;
}

.current-price::before {

    font-size: 2rem;
    position: absolute;
    top: 10px;
    left: -30px;
}

.current-price::after {
    content: 'ECONÔMIA DE 67%';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.installment {
    color: #ccc;
    font-size: 1.3rem;
    margin-top: 20px;
    font-weight: 500;
}

.installment strong {
    color: #fff;
    font-weight: 700;
}

.cta-button {
    display: block;
    background: linear-gradient(to right, 
                #4A9E34 0%, 
                #4A9E34 50%, 
                #4A9E34 100%);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 25px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.5s ease;
    font-size: 1.5rem;
    border: none;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(255,0,0,0.5);
    letter-spacing: 1px;
}

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

.cta-button:hover {
    background-position: 100% center;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px #4A9E34;
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1rem;
    color: #ccc;
    margin-top: 20px;
}

.secure-checkout img {
    height: 30px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.warning-box {
    background: linear-gradient(145deg, 
                rgba(30,30,30,0.9) 0%, 
                rgba(50,50,50,0.9) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid #ff0000;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.warning-box::before {
    content: '⚠️ ATENÇÃO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: white;
    padding: 5px 30px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(255,0,0,0.3);
    z-index: 2;
}

.warning-box:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(255,0,0,0.3);
}

.warning-box h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.warning-box p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.warning-box p::before {
    content: '•';
    color: #ff0000;
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}

.warning-box strong {
    color: #ff0000;
    font-weight: 700;
    position: relative;
}

.warning-box strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
}

/* Responsividade */
@media (max-width: 992px) {
    .offer-content {
        flex-direction: column;
    }
    
    .price-container {
        margin-top: 40px;
    }
    
    .final-offer h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .final-offer {
        padding: 80px 0;
    }
    
    .final-offer h2 {
        font-size: 2rem;
    }
    
    .offer-container {
        padding: 40px;
    }
    
    .current-price {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .final-offer h2 {
        font-size: 1.8rem;
    }
    
    .offer-container {
        padding: 30px 20px;
    }
    
    .package li {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.3rem;
        padding: 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #111;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, rgba(17, 17, 17, 0) 70%);
    z-index: 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(30, 30, 30, 0.8);
}

.faq-answer p {
    padding: 20px;
    line-height: 1.6;
}

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

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

/* Rodapé */
footer {
    background-color: #0C0A0A;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-disclaimer p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-disclaimer p:first-child {
    margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button a {
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .solution-content {
        flex-direction: column;
    }
    
    .offer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .notification-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .problem-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .price-box-large .current-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-button a span {
        display: none;
    }
    
    .whatsapp-button a {
        padding: 15px;
    }
}

/* Estilos da Seção do Relógio */
.reconquest-clock-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #0C0A0A 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
    border-bottom: 3px solid #ff0000;
}

.reconquest-clock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/clock-bg-pattern.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

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

.text-gradient {
    background: linear-gradient(to right, #ff0000 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,0,0,0.3);
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Container do Relógio */
.clock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Relógio Analógico */
.analog-clock {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 10px solid #ff0000;
    box-shadow: 0 0 0 10px rgba(255,0,0,0.3),
                0 0 50px rgba(255,0,0,0.5),
                inset 0 0 30px rgba(0,0,0,0.8);
    position: relative;
}

.clock-face {
    width: 100%;
    height: 100%;
    position: relative;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hour-hand {
    width: 8px;
    height: 60px;
    margin-left: -4px;
    background: linear-gradient(to top, #fff 0%, #ff0000 100%);
}

.min-hand {
    width: 6px;
    height: 90px;
    margin-left: -3px;
    background: linear-gradient(to top, #fff 0%, #ff0000 100%);
}

.second-hand {
    width: 3px;
    height: 100px;
    margin-left: -1.5px;
    background: #ff0000;
    z-index: 10;
}

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255,0,0,0.8);
    z-index: 11;
}

.damage-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--damage);
    background: linear-gradient(to top, rgba(255,0,0,0.6) 0%, transparent 100%);
    border-radius: 0 0 125px 125px;
    transition: height 1s ease;
}

/* Relógio Digital */
.digital-clock {
    display: flex;
    gap: 20px;
    background: rgba(0,0,0,0.7);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,0,0,0.5);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.time-segment {
    text-align: center;
}

.time-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
    line-height: 1;
    margin-bottom: 5px;
    min-width: 80px;
}

.time-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
}

/* Lista de Danos */
.damage-list {
    max-width: 800px;
    margin: 0 auto 50px;
    background: rgba(20,20,20,0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,0,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.damage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(255,0,0,0.3);
}

.damage-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.damage-icon {
    font-size: 2.5rem;
    color: #ff0000;
    min-width: 60px;
    text-align: center;
}

.damage-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.damage-content p {
    color: #ccc;
    line-height: 1.6;
}

.damage-content strong {
    color: #ff0000;
    font-weight: 700;
}

/* CTA Urgente */
.urgent-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.urgent-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.urgent-cta p strong {
    color: #ff0000;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #4A9E34 0%, #4A9E34 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,0,0,0.5);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px #4A9E34;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.guarantee-badge img {
    height: 50px;
}

.guarantee-badge span {
    color: #ccc;
    font-size: 0.9rem;
    max-width: 300px;
    text-align: left;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .clock-container {
        gap: 30px;
    }
    
    .analog-clock {
        width: 200px;
        height: 200px;
    }
    
    .digital-clock {
        padding: 20px;
    }
    
    .time-value {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .damage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .digital-clock {
        gap: 10px;
    }
    
    .time-value {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .urgent-cta p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Estilos da Seção de Especialistas */
.experts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, 
                rgba(255, 0, 0, 0.2) 0%, 
                rgba(12, 10, 10, 0) 60%);
    z-index: 0;
    animation: pulse-glow 8s infinite alternate;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

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

.text-gradient {
    background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,0,0,0.3);
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expert-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff0000;
}

.expert-card.featured {
    border: 2px solid #ff0000;
    box-shadow: 0 10px 40px rgba(255,0,0,0.3);
}

.expert-card.featured::before {
    content: '';
    position: absolute;
    top: -15px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: url('images/ribbon.png') no-repeat;
    background-size: contain;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.featured-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 0px solid transparent;
    border-top: 5px solid #b30000;
}

/* Cabeçalho do Especialista */
.expert-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.expert-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff0000;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.expert-credentials h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.expert-credentials p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.expert-credentials span {
    color: #ff6b6b;
    font-size: 0.8rem;
    font-style: italic;
}

.expert-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.expert-badge i {
    font-size: 0.9rem;
}

/* Citação do Especialista */
.expert-quote {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 3px solid #ff0000;
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(255, 0, 0, 0.2);
    font-family: serif;
    line-height: 1;
}

.expert-quote p {
    color: #fff;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.expert-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: #ffcc00;
}

.expert-rating span {
    color: #ccc;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Estatísticas */
.expert-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px dashed rgba(255,0,0,0.3);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
}

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

/* Vídeo do Especialista */
.expert-video {
    margin-top: 20px;
}

.video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 25px;
    margin-left: 5px;
}

/* Livros do Especialista */
.expert-books {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.expert-books img {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid rgba(255,0,0,0.5);
    transition: all 0.3s ease;
}

.expert-books img:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

.more-books {
    width: 50px;
    height: 70px;
    background: rgba(255,0,0,0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px dashed rgba(255,0,0,0.5);
}

/* CTA Especial */
.cta-experts {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.cta-experts p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-experts p strong {
    color: #ff0000;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #ff0000 0%, #ff3333 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,0,0,0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 20px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,0,0,0.7);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.secure-badge img {
    height: 25px;
}

/* Responsividade */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-card.featured::before {
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .expert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .expert-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .expert-badge {
        top: -5px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* CSS */
.expert-section-v1 {
  padding: 80px 0;
  background: linear-gradient(135deg, #0C0A0A 0%, #1a1818 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
}

.expert-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(255, 0, 0, 0.15) 0%, rgba(12, 10, 10, 0) 60%);
  z-index: 0;
  animation: pulse-glow 8s infinite alternate;
}

.expert-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.expert-image {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.expert-image img {
  width: 100%;
  border-radius: 15px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.expert-image:hover img {
  transform: scale(1.02);
  border-color: rgba(255, 0, 0, 0.3);
}

.expert-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  white-space: nowrap;
}

.expert-info {
  flex: 1;
}

.expert-section-v1 h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(to right, #fff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.expert-title {
  color: #ff6b6b;
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}

.expert-description p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.expert-description strong {
  color: #ff6b6b;
  font-weight: 700;
}

.expert-highlight {
  background: rgba(255, 0, 0, 0.1);
  border-left: 3px solid #ff0000;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 0 10px 10px 0;
}

.expert-highlight i {
  font-size: 2rem;
  color: #ff0000;
  min-width: 40px;
}

.expert-highlight p {
  margin: 0;
  color: #fff;
}

.expert-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ff0000;
  transform: translateY(-3px);
}

.social-proof span {
  color: #aaa;
  font-size: 0.9rem;
}

@keyframes pulse-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

/* Responsividade */
@media (max-width: 992px) {
  .expert-content {
    flex-direction: column;
  }
  
  .expert-image {
    max-width: 100%;
  }
  
  .expert-section-v1 h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .expert-title {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .expert-section-v1 h2 {
    font-size: 1.8rem;
  }
  
  .expert-cta {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* CSS */
.expert-section-v2 {
  padding: 100px 0;
  background: linear-gradient(135deg, #0C0A0A 0%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.expert-section-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/dna-pattern.png') center/cover;
  opacity: 0.03;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h2 span {
  background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.3rem;
  color: #ff6b6b;
  letter-spacing: 2px;
}

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

.expert-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.main-card {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 0, 0, 0.05);
  border: 2px solid rgba(255, 0, 0, 0.3);
  position: relative;
}

@media (min-width: 992px) {
  .main-card {
    grid-column: span 1;
  }
}

.card-icon {
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 20px;
}

.expert-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.expert-card p {
  color: #ccc;
  line-height: 1.7;
}

.expert-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 0, 0, 0.3);
  margin-bottom: 20px;
  position: relative;
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff0000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.expert-quote {
  margin-top: 20px;
}

.expert-quote p {
  font-style: italic;
  color: #fff;
  position: relative;
  padding: 0 20px;
}

.expert-quote p::before,
.expert-quote p::after {
  content: '"';
  font-size: 2rem;
  color: rgba(255, 0, 0, 0.3);
  position: absolute;
}

.expert-quote p::before {
  top: -15px;
  left: 0;
}

.expert-quote p::after {
  bottom: -25px;
  right: 0;
}

.expert-name {
  color: #ff6b6b;
  font-weight: 700;
  margin-top: 25px;
  font-size: 1.1rem;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 10px;
  border-left: 3px solid #ff0000;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff0000;
  margin-bottom: 5px;
}

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

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

.expert-cta p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 30px;
}

.expert-cta p strong {
  color: #ff0000;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translateY(-5px) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
  100% { transform: translateY(-5px) scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .expert-grid {
    grid-template-columns: 1fr;
  }
  
  .main-card {
    order: -1;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .expert-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Estilos da Seção de Compras Recentes */
.recent-purchases {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    animation: pulse 2s infinite alternate;
}

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

.purchase-header h3 {
    color: #ff0000;
    margin: 0;
    font-size: 1.3rem;
}

.purchase-header i {
    color: #ff0000;
    font-size: 1.5rem;
}

.purchase-notifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purchase-alert {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff0000;
    padding: 12px 15px;
    border-radius: 5px;
    position: relative;
}

.purchase-badge {
    background: #ff0000;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    position: absolute;
    top: -10px;
    left: 10px;
}

.purchase-alert p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
}

.purchase-time {
    color: #ccc;
    font-size: 0.85rem;
}

.purchase-countdown {
    margin-top: 20px;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.purchase-countdown p {
    margin: 0 0 10px 0;
    color: #ff6b6b;
    font-weight: bold;
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.countdown-timer span {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

/* Animação de pulsação para chamar atenção */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.1); }
    100% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
}
/* Evita scroll lateral e garante layout estável */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* Garante que todos os elementos respeitem o tamanho do container */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Previne zoom no mobile em inputs */
input, textarea, select, button {
  font-size: 16px;
}
#notificacao-compra {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
/* Altera APENAS os botões para verde (com animação de pulsar) */
.cta-button, 
.hero .cta-button,
.final-offer .cta-button,
.solution-section .cta-button,
.problem-section .cta-button,
.content-section .cta-button,
.testimonials-section .cta-button,
.reconquest-clock-section .cta-button,
.experts-section .cta-button,
.expert-section-v1 .cta-button,
.expert-section-v2 .cta-button,
.whatsapp-button a {
    background: linear-gradient(to right, #2a8613, #2a8613) !important;
    box-shadow: 0 10px 30px rgba(42, 134, 19, 0.5) !important;
    animation: pulse 2s infinite !important;
}

/* Efeito hover dos botões */
.cta-button:hover,
.hero .cta-button:hover,
.final-offer .cta-button:hover,
.solution-section .cta-button:hover,
.problem-section .cta-button:hover,
.content-section .cta-button:hover,
.testimonials-section .cta-button:hover,
.reconquest-clock-section .cta-button:hover,
.experts-section .cta-button:hover,
.expert-section-v1 .cta-button:hover,
.expert-section-v2 .cta-button:hover,
.whatsapp-button a:hover {
    background: linear-gradient(to right, #2a8613, #2a8613) !important;
    box-shadow: 0 15px 40px rgba(42, 134, 19, 0.7) !important;
    transform: translateY(-3px) !important;
}

/* Animação de pulsar */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}