/* Presell IA Generator - Estilos Frontend */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.presell-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.presell-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.presell-header h1 {
    margin: 0;
    font-size: 28px;
}

.presell-body {
    padding: 30px;
}

.presell-content {
    color: #555;
    line-height: 1.8;
}

.presell-content h2 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.presell-content h3 {
    color: #444;
    margin-top: 20px;
    margin-bottom: 15px;
}

.presell-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.presell-content li {
    margin-bottom: 8px;
}

.presell-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.presell-cta p {
    margin: 0 0 15px 0;
}

.presell-cta a {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.presell-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .presell-header {
        padding: 20px;
    }
    
    .presell-header h1 {
        font-size: 24px;
    }
    
    .presell-body {
        padding: 20px;
    }
    
    .presell-cta {
        padding: 20px;
    }
}
