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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* HEADER URGÊNCIA */
.urgencia-header {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: bold;
}

.countdown {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.urgencia-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.badge-urgencia {
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(230,126,34,0.4);
    border: 2px solid #f39c12;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight-red {
    color: #ff4444;
    text-shadow: 2px 2px 4px rgba(255,68,68,0.5);
}

.highlight-blue {
    color: #00bfff;
    text-shadow: 2px 2px 4px rgba(0,191,255,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* VIDEO SECTION */
.video-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
    z-index: 10;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255,0,0,0.6);
}

.play-icon {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-overlay {
    color: white;
    text-align: left;
    max-width: 400px;
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00bfff;
}

.video-overlay ul {
    list-style: none;
    padding: 0;
}

.video-overlay li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-warning {
    text-align: center;
    margin-top: 20px;
    background: rgba(255,0,0,0.1);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff4444;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 40px;
}

.btn-primary, .btn-comprar, .btn-final {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255,0,0,0.3);
    margin: 10px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover, .btn-comprar:hover, .btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.5);
    background: linear-gradient(45deg, #ff2222, #ff6666);
}

.btn-comprar {
    font-size: 1.4rem;
    padding: 25px 50px;
    animation: pulse-button 3s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 5px 20px rgba(255,0,0,0.3); }
    50% { box-shadow: 0 8px 30px rgba(255,0,0,0.6); }
    100% { box-shadow: 0 5px 20px rgba(255,0,0,0.3); }
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* PROBLEMA SECTION */
.problema {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.problema-title {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff4444;
}

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

.problema-card {
    background: rgba(255,68,68,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff4444;
    transition: transform 0.3s ease;
}

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

.problema-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problema-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff4444;
}

.problema-destaque {
    background: rgba(255,0,0,0.2);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #ff0000;
    max-width: 800px;
    margin: 0 auto;
}

.problema-destaque h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff4444;
}

/* SOLUÇÃO SECTION */
.solucao {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.solucao-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

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

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

.beneficio-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

/* TESTEMUNHOS SECTION */
.testemunhos {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.testemunhos-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

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

.testemunho-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
    border: 2px solid #e9ecef;
}

.testemunho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.testemunho-avatar {
    font-size: 2rem;
    margin-right: 15px;
}

.testemunho-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testemunho-info span {
    color: #666;
    font-size: 0.9rem;
}

.testemunho-nota {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: auto;
}

.testemunho-stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* MÉTODO SECTION */
.metodo {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 80px 0;
}

.metodo-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}

.metodo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.metodo-lado h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f39c12;
    text-align: center;
}

.competencias-list, .estrutura-list {
    space-y: 20px;
}

.competencia-item, .estrutura-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.competencia-item:hover, .estrutura-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.2);
}

.competencia-numero, .estrutura-numero {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.competencia-info h4, .estrutura-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.competencia-info p, .estrutura-info p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.estrutura-destaque {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* GARANTIA SECTION */
.garantia {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.garantia-content {
    max-width: 800px;
    margin: 0 auto;
}

.garantia-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.garantia h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.garantia-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.garantia-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid rgba(255,255,255,0.3);
}

.garantia-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.garantia-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.garantia-badge {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
}

/* OFERTA SECTION */
.oferta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.oferta-title {
    font-size: 3rem;
    margin-bottom: 50px;
}

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

.preco-container {
    margin-bottom: 40px;
}

.preco-original {
    margin-bottom: 10px;
}

.preco-riscado {
    font-size: 2rem;
    text-decoration: line-through;
    color: #bdc3c7;
}

.preco-atual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.preco-valor {
    font-size: 4rem;
    font-weight: 900;
    color: #f39c12;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.desconto-badge {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

.parcelamento {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
}

.stat-numero {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f39c12;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
}

.urgencia-final {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* SELOS DE GARANTIA E PAGAMENTO */
.selos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.selo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.selo-icon {
    font-size: 1.5rem;
}

.selo-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.selo-text strong {
    color: #f39c12;
}

/* BANDEIRAS DE CARTÃO */
.bandeiras-cartao {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.bandeira {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #f39c12;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bonus-container {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: left;
}

.bonus-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #f39c12;
}

.bonus-list {
    display: grid;
    gap: 10px;
}

.bonus-item {
    font-size: 1.1rem;
    padding: 10px 0;
}

/* FAQ SECTION */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-destaque {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f39c12;
}

.cta-garantia {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f39c12;
}

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

.footer-badge {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problema-title, .oferta-title, .metodo-title {
        font-size: 2.2rem;
    }
    
    .metodo-content {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .preco-valor {
        font-size: 3rem;
    }
    
    .btn-comprar {
        font-size: 1.2rem;
        padding: 20px 30px;
    }
    
    .countdown-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .testemunhos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-primary, .btn-comprar, .btn-final {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

