/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.highlight {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Header */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #dc2626;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #dc2626;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e5e5e5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 3rem 0;
}

.hero-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
    border-color: #ffffff;
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(220, 38, 38, 0.8); }
    100% { box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4); }
}

/* Sections */
section {
    padding: 80px 0;
}

.problema {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.problema-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problema-text {
    font-size: 1.1rem;
}

.problema-list {
    list-style: none;
    margin: 2rem 0;
}

.problema-list li {
    padding: 1rem 0;
    border-left: 4px solid #dc2626;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0 10px 10px 0;
}

.destaque {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
}

.full-width {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

/* Autoridade */
.autoridade {
    background: #000000;
}

.autoridade-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.especialista {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.especialista-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #dc2626;
}

.especialista-info h3 {
    color: #dc2626;
    font-size: 1.5rem;
}

.especialista-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e5e5e5;
    border-left: 4px solid #dc2626;
    padding-left: 2rem;
    margin: 2rem 0;
    text-align: left;
}

/* Custo */
.custo {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.custo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custo-grafico {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.custo-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 15px;
    border: 2px solid #dc2626;
}

.stat-item h3 {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

/* Método */
.metodo {
    background: #000000;
}

.metodo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.metodo-comparativo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.metodo-explicacao {
    font-size: 1.2rem;
}

.metodo-explicacao h3 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Programa */
.programa {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.programa-timeline {
    width: 100%;
    height: auto;
    margin-bottom: 4rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.modulos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.modulo {
    background: rgba(220, 38, 38, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #dc2626;
    transition: transform 0.3s ease;
}

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

.modulo h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.modulo ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modulo li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.modulo li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.resultado {
    background: #dc2626;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
}

/* Benefícios */
.beneficios {
    background: #000000;
    text-align: center;
}

.beneficios-lista {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

/* Bônus */
.bonus {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    text-align: center;
}

.bonus-lista {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

/* Oferta */
.oferta {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    text-align: center;
}

.oferta-content {
    max-width: 600px;
    margin: 0 auto;
}

.preco-original {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.riscado {
    text-decoration: line-through;
    color: #ffcccc;
}

.preco-atual {
    margin-bottom: 2rem;
}

.preco-grande {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.preco-parcelado {
    font-size: 1.2rem;
    color: #ffcccc;
}

.garantia {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #ffffff;
}

.garantia h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.urgencia {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffff00;
    animation: blink 1.5s infinite;
}

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

/* Depoimentos */
.depoimentos {
    background: #000000;
}

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

.depoimento {
    background: rgba(220, 38, 38, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #dc2626;
    text-align: center;
}

.depoimento-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #dc2626;
}

.depoimento blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e5e5e5;
}

.depoimento cite {
    color: #dc2626;
    font-weight: 700;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e5e5e5;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #dc2626;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problema-content,
    .custo-content,
    .metodo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .especialista {
        flex-direction: column;
        text-align: center;
    }
    
    .modulos {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .preco-grande {
        font-size: 3rem;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modulo,
    .depoimento {
        padding: 1.5rem;
    }
}


/* Mockups Section */
.mockups {
    background: #111;
    padding: 5rem 0;
}

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.mockup-item {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mockup-item:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
}

.mockup-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.mockup-item h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mockup-item p {
    color: #ccc;
    font-size: 1rem;
}

/* Responsive para mockups */
@media (max-width: 768px) {
    .mockups-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mockup-item {
        padding: 1.5rem;
    }
    
    .mockup-image {
        max-width: 200px;
    }
}


/* Método Cérebro */
.metodo-cerebro {
    margin-top: 3rem;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #dc2626;
}

.metodo-cerebro h3 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cerebro-pontos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ponto-cerebro {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.ponto-cerebro h4 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.ponto-cerebro p {
    color: #ccc;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: #111;
    padding: 5rem 0;
}

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

.faq-item {
    background: #1a1a1a;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.faq-item h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Programa Completo */
.programa-completo {
    background: #000;
    padding: 5rem 0;
}

.programa-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #dc2626;
}

.programa-left h3,
.programa-right h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.modulos-lista {
    space-y: 1.5rem;
}

.modulo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #000;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.modulo-item.bonus {
    border: 2px solid #28a745;
}

.modulo-numero {
    background: #dc2626;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.modulo-item.bonus .modulo-numero {
    background: #28a745;
}

.modulo-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.modulo-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.dispositivos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.dispositivo-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.dispositivo-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.valor-total {
    background: #dc2626;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.valor-original {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.valor-hoje {
    color: #ffff00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.valor-final {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
}

.gratis-hoje {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-left: 1rem;
    font-size: 0.9rem;
}

/* Botão Verde */
.cta-button.green {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: 2px solid #28a745;
}

.cta-button.green:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .programa-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cerebro-pontos {
        grid-template-columns: 1fr;
    }
    
    .dispositivos-grid {
        grid-template-columns: 1fr;
    }
}

