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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subheadline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

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

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

.badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

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

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

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Resultados Section */
.resultados {
    background: #f8f9fa;
}

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

.resultado-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resultado-card:hover {
    transform: translateY(-10px);
}

.resultado-card img {
    width: 100%;
    height: auto;
}

/* História Section */
.historia {
    background: white;
}

.historia-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Aprender Section */
.aprender {
    background: #f8f9fa;
}

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

.aprender-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.aprender-card:hover {
    transform: translateY(-10px);
}

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

.aprender-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.aprender-card p {
    color: #666;
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    background: white;
}

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

.depoimento-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    position: relative;
}

.depoimento-card::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.depoimento-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
}

.autor {
    font-weight: 700;
    color: #2c3e50;
    padding-left: 30px;
}

.autor span {
    font-weight: 400;
    color: #666;
    font-size: 0.9rem;
}

/* Diferente Section */
.diferente {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.diferente h2 {
    color: white;
}

.diferente p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Bônus Section */
.bonus {
    background: #f8f9fa;
}

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

.bonus-card {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Oferta Section */
.oferta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.oferta h2 {
    color: white;
}

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

.preco-antigo {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.preco-atual {
    font-size: 4rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
}

.parcelamento {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.urgencia {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    margin: 30px 0;
    display: inline-block;
    animation: pulse 2s infinite;
}

.btn-comprar {
    display: inline-block;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    margin: 30px 0;
    text-transform: uppercase;
}

.btn-comprar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.6);
}

.garantias-finais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.garantia-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.garantia-item i {
    font-size: 1.2rem;
    color: #FFD700;
}

/* Garantia Section */
.garantia {
    background: #27ae60;
    color: white;
    text-align: center;
}

.garantia h2 {
    color: white;
}

.garantia p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.disclaimer {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .aprender-grid,
    .depoimentos-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .garantias-finais {
        grid-template-columns: 1fr;
    }
    
    .preco-atual {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-comprar {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

